diff --git a/ESP32-IDF_Mesh/internal_communication/build/.bin_timestamp b/ESP32-IDF_Mesh/internal_communication/build/.bin_timestamp new file mode 100644 index 000000000..60c79d737 --- /dev/null +++ b/ESP32-IDF_Mesh/internal_communication/build/.bin_timestamp @@ -0,0 +1 @@ +d48078b582aa4c9dc10e4d827c2e77b4 /home/abobkov/MyProjects/ESP-Nodes/ESP32-IDF_Mesh/internal_communication/build/internal_communication.bin diff --git a/ESP32-IDF_Mesh/internal_communication/build/.ninja_deps b/ESP32-IDF_Mesh/internal_communication/build/.ninja_deps index e09347d52..062b63fbf 100644 Binary files a/ESP32-IDF_Mesh/internal_communication/build/.ninja_deps and b/ESP32-IDF_Mesh/internal_communication/build/.ninja_deps differ diff --git a/ESP32-IDF_Mesh/internal_communication/build/.ninja_lock b/ESP32-IDF_Mesh/internal_communication/build/.ninja_lock deleted file mode 100644 index e69de29bb..000000000 diff --git a/ESP32-IDF_Mesh/internal_communication/build/.ninja_log b/ESP32-IDF_Mesh/internal_communication/build/.ninja_log index 17e0a9912..b4d55bbf9 100644 --- a/ESP32-IDF_Mesh/internal_communication/build/.ninja_log +++ b/ESP32-IDF_Mesh/internal_communication/build/.ninja_log @@ -949,3 +949,11 @@ 218550 218640 1735004856997787068 bootloader-prefix/src/bootloader-stamp/bootloader-done 81d9c59286063575 218550 218640 1735004856997787068 /home/abobkov/MyProjects/ESP-Nodes/ESP32-IDF_Mesh/internal_communication/build/CMakeFiles/bootloader-complete 81d9c59286063575 218550 218640 1735004856997787068 /home/abobkov/MyProjects/ESP-Nodes/ESP32-IDF_Mesh/internal_communication/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 81d9c59286063575 +209524 230842 1735004869097363734 esp-idf/esp_system/ld/sections.ld d18d2c24d7227261 +209524 230842 1735004869097363734 /home/abobkov/MyProjects/ESP-Nodes/ESP32-IDF_Mesh/internal_communication/build/esp-idf/esp_system/ld/sections.ld d18d2c24d7227261 +230842 230891 1735004869203359754 CMakeFiles/internal_communication.elf.dir/project_elf_src_esp32.c.obj b4a0ded42e7386f4 +230891 236983 1735004869252357914 internal_communication.elf 5b6a534cdc009aa +236983 237374 1735004875733107231 .bin_timestamp 4231202274cbcd7b +236983 237374 1735004875733107231 /home/abobkov/MyProjects/ESP-Nodes/ESP32-IDF_Mesh/internal_communication/build/.bin_timestamp 4231202274cbcd7b +237375 237485 1735004875736107112 esp-idf/esptool_py/CMakeFiles/app_check_size 55b258e50b04d495 +237375 237485 1735004875736107112 /home/abobkov/MyProjects/ESP-Nodes/ESP32-IDF_Mesh/internal_communication/build/esp-idf/esptool_py/CMakeFiles/app_check_size 55b258e50b04d495 diff --git a/ESP32-IDF_Mesh/internal_communication/build/CMakeFiles/internal_communication.elf.dir/project_elf_src_esp32.c.obj b/ESP32-IDF_Mesh/internal_communication/build/CMakeFiles/internal_communication.elf.dir/project_elf_src_esp32.c.obj new file mode 100644 index 000000000..534e39a7e Binary files /dev/null and b/ESP32-IDF_Mesh/internal_communication/build/CMakeFiles/internal_communication.elf.dir/project_elf_src_esp32.c.obj differ diff --git a/ESP32-IDF_Mesh/internal_communication/build/esp-idf/esp_system/ld/sections.ld b/ESP32-IDF_Mesh/internal_communication/build/esp-idf/esp_system/ld/sections.ld new file mode 100644 index 000000000..9f02d111c --- /dev/null +++ b/ESP32-IDF_Mesh/internal_communication/build/esp-idf/esp_system/ld/sections.ld @@ -0,0 +1,648 @@ +/* Automatically generated file; DO NOT EDIT */ +/* Espressif IoT Development Framework Linker Script */ +/* Generated from: /home/abobkov/MyProjects/ESP-Nodes/ESP32-IDF_Mesh/internal_communication/build/esp-idf/esp_system/ld/sections.ld.in */ + +/* + * SPDX-FileCopyrightText: 2021 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: Apache-2.0 + */ +/* + * Automatically generated file. DO NOT EDIT. + * Espressif IoT Development Framework (ESP-IDF) 5.2.3 Configuration Header + */ + +/* List of deprecated options */ +/* Default entry point: */ +ENTRY(call_start_cpu0); +SECTIONS +{ + /* RTC fast memory holds RTC wake stub code, + including from any source file named rtc_wake_stub*.c + */ + .rtc.text : + { + . = ALIGN(4); + *(.rtc.literal .rtc.text .rtc.text.*) + *rtc_wake_stub*.*(.literal .text .literal.* .text.*) + _rtc_text_end = ABSOLUTE(.); + } > rtc_iram_seg + /* + This section is required to skip rtc.text area because rtc_iram_seg and + rtc_data_seg are reflect the same address space on different buses. + */ + .rtc.dummy : + { + _rtc_dummy_start = ABSOLUTE(.); + _rtc_fast_start = ABSOLUTE(.); + . = SIZEOF(.rtc.text); + _rtc_dummy_end = ABSOLUTE(.); + } > rtc_data_seg + /* This section located in RTC FAST Memory area. + It holds data marked with RTC_FAST_ATTR attribute. + See the file "esp_attr.h" for more information. + */ + .rtc.force_fast : + { + . = ALIGN(4); + _rtc_force_fast_start = ABSOLUTE(.); + _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_ESP32_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_ESP32_RTCDATA_IN_FAST_MEM option. + */ + .rtc_noinit (NOLOAD): + { + . = ALIGN(4); + _rtc_noinit_start = ABSOLUTE(.); + *(.rtc_noinit .rtc_noinit.*) + . = ALIGN(4) ; + _rtc_noinit_end = ABSOLUTE(.); + } > rtc_data_location + /* This section located in RTC SLOW Memory area. + It holds data marked with RTC_SLOW_ATTR attribute. + See the file "esp_attr.h" for more information. + */ + .rtc.force_slow : + { + . = ALIGN(4); + _rtc_force_slow_start = ABSOLUTE(.); + *(.rtc.force_slow .rtc.force_slow.*) + . = ALIGN(4) ; + _rtc_force_slow_end = ABSOLUTE(.); + } > rtc_slow_seg + /** + * This section holds RTC FAST data that should have fixed addresses. + * The data are not initialized at power-up and are retained during deep sleep. + */ + .rtc_fast_reserved (NOLOAD): + { + . = ALIGN(4); + _rtc_fast_reserved_start = ABSOLUTE(.); + /* New data can only be added here to ensure existing data are not moved. + Because data have adhered to the end of the segment and code is relied on it. + >> put new data here << */ + KEEP(*(.bootloader_data_rtc_mem .bootloader_data_rtc_mem.*)) + _rtc_fast_reserved_end = ABSOLUTE(.); + } > rtc_fast_reserved_seg + _rtc_fast_reserved_length = _rtc_fast_reserved_end - _rtc_fast_reserved_start; + ASSERT((_rtc_fast_reserved_length <= LENGTH(rtc_fast_reserved_seg)), + "RTC FAST reserved segment data does not fit.") + /** + * This section holds RTC SLOW data that should have fixed addresses. + * The data are not initialized at power-up and are retained during deep sleep. + */ + .rtc_slow_reserved (NOLOAD): + { + . = ALIGN(4); + _rtc_slow_reserved_start = ABSOLUTE(.); + /* New data can only be added here to ensure existing data are not moved. + Because data have adhered to the end of the segment and code is relied on it. + >> put new data here << */ + *(.rtc_timer_data_in_rtc_mem .rtc_timer_data_in_rtc_mem.*) + _rtc_slow_reserved_end = ABSOLUTE(.); + } > rtc_slow_reserved_seg + _rtc_slow_reserved_length = _rtc_slow_reserved_end - _rtc_slow_reserved_start; + _rtc_reserved_length = _rtc_slow_reserved_length; + ASSERT((_rtc_slow_reserved_length <= LENGTH(rtc_slow_reserved_seg)), + "RTC SLOW reserved segment data does not fit.") + /* Get size of rtc slow data based on rtc_data_location alias */ + _rtc_slow_length = (ORIGIN(rtc_slow_seg) == ORIGIN(rtc_data_location)) + ? (_rtc_force_slow_end - _rtc_data_start) + : (_rtc_force_slow_end - _rtc_force_slow_start); + _rtc_fast_length = (ORIGIN(rtc_slow_seg) == ORIGIN(rtc_data_location)) + ? (_rtc_force_fast_end - _rtc_fast_start) + : (_rtc_noinit_end - _rtc_fast_start); + ASSERT((_rtc_slow_length <= LENGTH(rtc_slow_seg)), + "RTC_SLOW segment data does not fit.") + ASSERT((_rtc_fast_length <= LENGTH(rtc_data_seg)), + "RTC_FAST segment data does not fit.") + /* Send .iram0 code to iram */ + .iram0.vectors : + { + _iram_start = ABSOLUTE(.); + /* Vectors go to IRAM */ + _vector_table = ABSOLUTE(.); + /* Vectors according to builds/RF-2015.2-win32/esp108_v1_2_s5_512int_2/config.html */ + . = 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.literal) + *(.entry.text) + *(.init.literal) + *(.init) + _init_end = ABSOLUTE(.); + } > iram0_0_seg + .iram0.text : + { + /* Code marked as runnning 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.*) + *libdriver.a:gptimer.*(.literal.gptimer_default_isr .text.gptimer_default_isr) + *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_gpio_reserve.*(.literal.esp_gpio_is_pin_reserved .text.esp_gpio_is_pin_reserved) + *libesp_hw_support.a:esp_gpio_reserve.*(.literal.esp_gpio_reserve_pins .text.esp_gpio_reserve_pins) + *libesp_hw_support.a:esp_memory_utils.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:mspi_timing_config.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:mspi_timing_tuning.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:periph_ctrl.*(.literal.periph_module_reset .text.periph_module_reset) + *libesp_hw_support.a:periph_ctrl.*(.literal.wifi_module_disable .text.wifi_module_disable) + *libesp_hw_support.a:periph_ctrl.*(.literal.wifi_module_enable .text.wifi_module_enable) + *libesp_hw_support.a:rtc_clk.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:rtc_init.*(.literal.rtc_vddsdio_get_config .text.rtc_vddsdio_get_config) + *libesp_hw_support.a:rtc_init.*(.literal.rtc_vddsdio_set_config .text.rtc_vddsdio_set_config) + *libesp_hw_support.a:rtc_sleep.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:rtc_time.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:rtc_wdt.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:sar_periph_ctrl.*(.literal.sar_periph_ctrl_power_enable .text.sar_periph_ctrl_power_enable) + *libesp_mm.a:cache_esp32.*(.literal .literal.* .text .text.*) + *libesp_mm.a:esp_cache.*(.literal .literal.* .text .text.*) + *libesp_ringbuf.a:(.literal .literal.* .text .text.*) + *libesp_rom.a:esp_rom_spiflash.*(.literal .literal.* .text .text.*) + *libesp_system.a:esp_err.*(.literal .literal.* .text .text.*) + *libesp_system.a:esp_system_chip.*(.literal.esp_system_abort .text.esp_system_abort) + *libesp_system.a:ubsan.*(.literal .literal.* .text .text.*) + *libesp_wifi.a:esp_adapter.*(.literal.coex_pti_get_wrapper .text.coex_pti_get_wrapper) + *libesp_wifi.a:wifi_netif.*(.literal.wifi_sta_receive .text.wifi_sta_receive) + *libesp_wifi.a:wifi_netif.*(.literal.wifi_transmit_wrap .text.wifi_transmit_wrap) + *libfreertos.a:(EXCLUDE_FILE(*libfreertos.a:app_startup.* *libfreertos.a:freertos_compatibility.* *libfreertos.a:idf_additions.* *libfreertos.a:tasks.*) .literal EXCLUDE_FILE(*libfreertos.a:app_startup.* *libfreertos.a:freertos_compatibility.* *libfreertos.a:idf_additions.* *libfreertos.a:tasks.*) .literal.* EXCLUDE_FILE(*libfreertos.a:app_startup.* *libfreertos.a:freertos_compatibility.* *libfreertos.a:idf_additions.* *libfreertos.a:tasks.*) .text EXCLUDE_FILE(*libfreertos.a:app_startup.* *libfreertos.a:freertos_compatibility.* *libfreertos.a:idf_additions.* *libfreertos.a:tasks.*) .text.*) + *libfreertos.a:tasks.*(.literal.__getreent .literal.eTaskGetState .literal.pcTaskGetName .literal.prvAddCurrentTaskToDelayedList .literal.prvAddNewTaskToReadyList .literal.prvCheckTaskCanBeScheduledSMP .literal.prvDeleteTCB .literal.prvIdleTask .literal.prvInitialiseNewTask$constprop$0 .literal.prvIsYieldRequiredSMP .literal.prvReleaseKernelLock .literal.prvResetNextTaskUnblockTime .literal.prvSearchForNameWithinSingleList .literal.prvTakeKernelLock .literal.prvTaskIsTaskSuspended .literal.prvTaskPriorityRaise .literal.prvTaskPriorityRestore .literal.pvTaskGetCurrentTCBForCore .literal.pvTaskGetThreadLocalStoragePointer .literal.pvTaskIncrementMutexHeldCount .literal.pxTaskGetStackStart .literal.ulTaskGenericNotifyTake .literal.ulTaskGenericNotifyValueClear .literal.uxTaskGetNumberOfTasks .literal.uxTaskGetStackHighWaterMark .literal.uxTaskGetStackHighWaterMark2 .literal.uxTaskPriorityGet .literal.uxTaskPriorityGetFromISR .literal.uxTaskResetEventItemValue .literal.vTaskDelay .literal.vTaskDelete .literal.vTaskEndScheduler .literal.vTaskGenericNotifyGiveFromISR .literal.vTaskGetSnapshot .literal.vTaskInternalSetTimeOutState .literal.vTaskMissedYield .literal.vTaskPlaceOnEventList .literal.vTaskPlaceOnEventListRestricted .literal.vTaskPlaceOnUnorderedEventList .literal.vTaskPriorityDisinheritAfterTimeout .literal.vTaskPrioritySet .literal.vTaskRemoveFromUnorderedEventList .literal.vTaskResume .literal.vTaskSetThreadLocalStoragePointer .literal.vTaskSetThreadLocalStoragePointerAndDelCallback .literal.vTaskSetTimeOutState .literal.vTaskStartScheduler .literal.vTaskSuspend .literal.vTaskSuspendAll .literal.vTaskSwitchContext .literal.xTaskAbortDelay .literal.xTaskCatchUpTicks .literal.xTaskCheckForTimeOut .literal.xTaskCreatePinnedToCore .literal.xTaskCreateStaticPinnedToCore .literal.xTaskDelayUntil .literal.xTaskGenericNotify .literal.xTaskGenericNotifyFromISR .literal.xTaskGenericNotifyStateClear .literal.xTaskGenericNotifyWait .literal.xTaskGetCoreID .literal.xTaskGetCurrentTaskHandle .literal.xTaskGetCurrentTaskHandleForCore .literal.xTaskGetHandle .literal.xTaskGetIdleTaskHandle .literal.xTaskGetIdleTaskHandleForCore .literal.xTaskGetSchedulerState .literal.xTaskGetStaticBuffers .literal.xTaskGetTickCount .literal.xTaskGetTickCountFromISR .literal.xTaskIncrementTick .literal.xTaskIncrementTickOtherCores .literal.xTaskPriorityDisinherit .literal.xTaskPriorityInherit .literal.xTaskRemoveFromEventList .literal.xTaskResumeAll .literal.xTaskResumeFromISR .text .text.__getreent .text.eTaskGetState .text.pcTaskGetName .text.prvAddCurrentTaskToDelayedList .text.prvAddNewTaskToReadyList .text.prvCheckTaskCanBeScheduledSMP .text.prvDeleteTCB .text.prvIdleTask .text.prvInitialiseNewTask$constprop$0 .text.prvIsYieldRequiredSMP .text.prvReleaseKernelLock .text.prvResetNextTaskUnblockTime .text.prvSearchForNameWithinSingleList .text.prvTakeKernelLock .text.prvTaskIsTaskSuspended .text.prvTaskPriorityRaise .text.prvTaskPriorityRestore .text.pvTaskGetCurrentTCBForCore .text.pvTaskGetThreadLocalStoragePointer .text.pvTaskIncrementMutexHeldCount .text.pxTaskGetStackStart .text.ulTaskGenericNotifyTake .text.ulTaskGenericNotifyValueClear .text.uxTaskGetNumberOfTasks .text.uxTaskGetStackHighWaterMark .text.uxTaskGetStackHighWaterMark2 .text.uxTaskPriorityGet .text.uxTaskPriorityGetFromISR .text.uxTaskResetEventItemValue .text.vTaskDelay .text.vTaskDelete .text.vTaskEndScheduler .text.vTaskGenericNotifyGiveFromISR .text.vTaskGetSnapshot .text.vTaskInternalSetTimeOutState .text.vTaskMissedYield .text.vTaskPlaceOnEventList .text.vTaskPlaceOnEventListRestricted .text.vTaskPlaceOnUnorderedEventList .text.vTaskPriorityDisinheritAfterTimeout .text.vTaskPrioritySet .text.vTaskRemoveFromUnorderedEventList .text.vTaskResume .text.vTaskSetThreadLocalStoragePointer .text.vTaskSetThreadLocalStoragePointerAndDelCallback .text.vTaskSetTimeOutState .text.vTaskStartScheduler .text.vTaskSuspend .text.vTaskSuspendAll .text.vTaskSwitchContext .text.xTaskAbortDelay .text.xTaskCatchUpTicks .text.xTaskCheckForTimeOut .text.xTaskCreatePinnedToCore .text.xTaskCreateStaticPinnedToCore .text.xTaskDelayUntil .text.xTaskGenericNotify .text.xTaskGenericNotifyFromISR .text.xTaskGenericNotifyStateClear .text.xTaskGenericNotifyWait .text.xTaskGetCoreID .text.xTaskGetCurrentTaskHandle .text.xTaskGetCurrentTaskHandleForCore .text.xTaskGetHandle .text.xTaskGetIdleTaskHandle .text.xTaskGetIdleTaskHandleForCore .text.xTaskGetSchedulerState .text.xTaskGetStaticBuffers .text.xTaskGetTickCount .text.xTaskGetTickCountFromISR .text.xTaskIncrementTick .text.xTaskIncrementTickOtherCores .text.xTaskPriorityDisinherit .text.xTaskPriorityInherit .text.xTaskRemoveFromEventList .text.xTaskResumeAll .text.xTaskResumeFromISR .text.xTimerCreateTimerTask) + *libgcc.a:lib2funcs.*(.literal .literal.* .text .text.*) + *libgcov.a:(.literal .literal.* .text .text.*) + *libhal.a:cache_hal_esp32.*(.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_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:timer_hal.*(.literal.timer_hal_capture_and_get_counter_value .text.timer_hal_capture_and_get_counter_value) + *libhal.a:wdt_hal_iram.*(.literal .literal.* .text .text.*) + *libheap.a:multi_heap.*(.literal.assert_valid_block .text.assert_valid_block) + *libheap.a:multi_heap.*(.literal.multi_heap_aligned_alloc_impl .text.multi_heap_aligned_alloc_impl) + *libheap.a:multi_heap.*(.literal.multi_heap_aligned_alloc_impl_offs .text.multi_heap_aligned_alloc_impl_offs) + *libheap.a:multi_heap.*(.literal.multi_heap_aligned_alloc_offs .text.multi_heap_aligned_alloc_offs) + *libheap.a:multi_heap.*(.literal.multi_heap_free_impl .text.multi_heap_free_impl) + *libheap.a:multi_heap.*(.literal.multi_heap_get_allocated_size_impl .text.multi_heap_get_allocated_size_impl) + *libheap.a:multi_heap.*(.literal.multi_heap_get_block_address_impl .text.multi_heap_get_block_address_impl) + *libheap.a:multi_heap.*(.literal.multi_heap_get_first_block .text.multi_heap_get_first_block) + *libheap.a:multi_heap.*(.literal.multi_heap_get_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_th.*(.literal .literal.* .text .text.*) + *libspi_flash.a:spi_flash_chip_winbond.*(.literal .literal.* .text .text.*) + *libspi_flash.a:spi_flash_wrap.*(.literal .literal.* .text .text.*) + *libxt_hal.a:(.literal .literal.* .text .text.*) + *libxtensa.a:(EXCLUDE_FILE(*libxtensa.a:xt_trax.* *libxtensa.a:xtensa_intr.*) .literal EXCLUDE_FILE(*libxtensa.a:xt_trax.* *libxtensa.a:xtensa_intr.*) .literal.* EXCLUDE_FILE(*libxtensa.a:xt_trax.* *libxtensa.a:xtensa_intr.*) .text EXCLUDE_FILE(*libxtensa.a:xt_trax.* *libxtensa.a:xtensa_intr.*) .text.*) + } > iram0_0_seg + .dram0.data : + { + _data_start = ABSOLUTE(.); + *(.gnu.linkonce.d.*) + *(.data1) + *(.sdata) + *(.sdata.*) + *(.gnu.linkonce.s.*) + *(.gnu.linkonce.s2.*) + *(.jcr) + *(.data .data.*) + *(.dram1 .dram1.*) + _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.*) + *libesp_hw_support.a:esp_memory_utils.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hw_support.a:mspi_timing_config.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hw_support.a:mspi_timing_tuning.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hw_support.a:rtc_clk.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_mm.a:cache_esp32.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_mm.a:esp_cache.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_rom.a:esp_rom_spiflash.*(.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.*) + *libgcov.a:(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:cache_hal_esp32.*(.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_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:wdt_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libnewlib.a:abort.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libnewlib.a:assert.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libnewlib.a:heap.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libnewlib.a:stdatomic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libphy.a:(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libsoc.a:lldesc.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:flash_brownout_hook.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:memspi_host_driver.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:spi_flash_chip_boya.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:spi_flash_chip_gd.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:spi_flash_chip_generic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:spi_flash_chip_issi.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:spi_flash_chip_mxic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:spi_flash_chip_th.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:spi_flash_chip_winbond.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:spi_flash_wrap.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + _data_end = ABSOLUTE(.); + . = ALIGN(4); + } > dram0_0_seg + /** + * This section holds data that won't be initialised when startup. + * This section locates in External RAM region. + */ + .ext_ram_noinit (NOLOAD) : + { + _ext_ram_noinit_start = ABSOLUTE(.); + *(.ext_ram_noinit*) + . = ALIGN(4); + _ext_ram_noinit_end = ABSOLUTE(.); + } > extern_ram_seg + /*This section holds data that should not be initialized at power up. + The section located in Internal SRAM memory region. The macro _NOINIT + can be used as attribute to place data into this section. + See the esp_attr.h file for more information. + */ + .noinit (NOLOAD): + { + . = ALIGN(4); + _noinit_start = ABSOLUTE(.); + *(.noinit .noinit.*) + . = ALIGN(4) ; + _noinit_end = ABSOLUTE(.); + } > dram0_0_seg + /* external memory bss, from any global variable with EXT_RAM_BSS_ATTR attribute*/ + .ext_ram.bss (NOLOAD) : + { + _ext_ram_bss_start = ABSOLUTE(.); + . = ALIGN(4); + _ext_ram_bss_end = ABSOLUTE(.); + } > extern_ram_seg + /* Shared RAM */ + .dram0.bss (NOLOAD) : + { + . = ALIGN (8); + _bss_start = ABSOLUTE(.); + *(.bss .bss.*) + *(.dynbss .dynsbss .gnu.linkonce.b .gnu.linkonce.b.* .gnu.linkonce.sb .gnu.linkonce.sb.* .gnu.linkonce.sb2 .gnu.linkonce.sb2.* .sbss .sbss.* .sbss2 .sbss2.* .scommon .share.mem) + *(.ext_ram.bss .ext_ram.bss.*) + *(COMMON) + . = ALIGN (8); + _bss_end = ABSOLUTE(.); + } > dram0_0_seg + ASSERT(((_bss_end - ORIGIN(dram0_0_seg)) <= LENGTH(dram0_0_seg)), + "DRAM segment data does not fit.") + .flash.appdesc : ALIGN(0x10) + { + _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:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:rtc_clk.* *libesp_mm.a:cache_esp32.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_spiflash.* *libesp_system.a:esp_err.* *libesp_system.a:ubsan.* *libhal.a:cache_hal_esp32.* *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_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:wdt_hal_iram.* *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_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_wrap.*) .rodata EXCLUDE_FILE(*libgcov.a *libphy.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:rtc_clk.* *libesp_mm.a:cache_esp32.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_spiflash.* *libesp_system.a:esp_err.* *libesp_system.a:ubsan.* *libhal.a:cache_hal_esp32.* *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_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:wdt_hal_iram.* *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_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_wrap.*) .rodata.* EXCLUDE_FILE(*libgcov.a *libphy.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:rtc_clk.* *libesp_mm.a:cache_esp32.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_spiflash.* *libesp_system.a:esp_err.* *libesp_system.a:ubsan.* *libhal.a:cache_hal_esp32.* *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_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:wdt_hal_iram.* *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_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_wrap.*) .sdata2 EXCLUDE_FILE(*libgcov.a *libphy.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:rtc_clk.* *libesp_mm.a:cache_esp32.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_spiflash.* *libesp_system.a:esp_err.* *libesp_system.a:ubsan.* *libhal.a:cache_hal_esp32.* *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_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:wdt_hal_iram.* *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_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_wrap.*) .sdata2.* EXCLUDE_FILE(*libgcov.a *libphy.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:rtc_clk.* *libesp_mm.a:cache_esp32.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_spiflash.* *libesp_system.a:esp_err.* *libesp_system.a:ubsan.* *libhal.a:cache_hal_esp32.* *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_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:wdt_hal_iram.* *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_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_wrap.*) .srodata EXCLUDE_FILE(*libgcov.a *libphy.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:rtc_clk.* *libesp_mm.a:cache_esp32.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_spiflash.* *libesp_system.a:esp_err.* *libesp_system.a:ubsan.* *libhal.a:cache_hal_esp32.* *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_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:wdt_hal_iram.* *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_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_wrap.*) .srodata.*) + *(.rodata_wlog_error .rodata_wlog_error.*) + *(.rodata_wlog_info .rodata_wlog_info.*) + *(.rodata_wlog_warning .rodata_wlog_warning.*) + *(.irom1.text) /* catch stray ICACHE_RODATA_ATTR */ + *(.gnu.linkonce.r.*) + *(.rodata1) + __XT_EXCEPTION_TABLE_ = ABSOLUTE(.); + *(.xt_except_table) + *(.gcc_except_table .gcc_except_table.*) + *(.gnu.linkonce.e.*) + *(.gnu.version_r) + . = (. + 3) & ~ 3; + /* C++ constructor and destructor tables + + Make a point of not including 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 + .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 *libxtensa.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libdriver.a:gptimer.* *libesp_event.a:default_event_loop.* *libesp_event.a:esp_event.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:esp_gpio_reserve.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_wdt.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_mm.a:cache_esp32.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_spiflash.* *libesp_system.a:esp_err.* *libesp_system.a:esp_system_chip.* *libesp_system.a:ubsan.* *libesp_wifi.a:esp_adapter.* *libesp_wifi.a:wifi_netif.* *libgcc.a:lib2funcs.* *libhal.a:cache_hal_esp32.* *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_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:timer_hal.* *libhal.a:wdt_hal_iram.* *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_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_wrap.*) .literal EXCLUDE_FILE(*libesp_ringbuf.a *libfreertos.a *libgcov.a *librtc.a *libxt_hal.a *libxtensa.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libdriver.a:gptimer.* *libesp_event.a:default_event_loop.* *libesp_event.a:esp_event.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:esp_gpio_reserve.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_wdt.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_mm.a:cache_esp32.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_spiflash.* *libesp_system.a:esp_err.* *libesp_system.a:esp_system_chip.* *libesp_system.a:ubsan.* *libesp_wifi.a:esp_adapter.* *libesp_wifi.a:wifi_netif.* *libgcc.a:lib2funcs.* *libhal.a:cache_hal_esp32.* *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_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:timer_hal.* *libhal.a:wdt_hal_iram.* *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_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_wrap.*) .literal.* EXCLUDE_FILE(*libesp_ringbuf.a *libfreertos.a *libgcov.a *librtc.a *libxt_hal.a *libxtensa.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libdriver.a:gptimer.* *libesp_event.a:default_event_loop.* *libesp_event.a:esp_event.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:esp_gpio_reserve.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_wdt.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_mm.a:cache_esp32.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_spiflash.* *libesp_system.a:esp_err.* *libesp_system.a:esp_system_chip.* *libesp_system.a:ubsan.* *libesp_wifi.a:esp_adapter.* *libesp_wifi.a:wifi_netif.* *libgcc.a:lib2funcs.* *libhal.a:cache_hal_esp32.* *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_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:timer_hal.* *libhal.a:wdt_hal_iram.* *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_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_wrap.*) .text EXCLUDE_FILE(*libesp_ringbuf.a *libfreertos.a *libgcov.a *librtc.a *libxt_hal.a *libxtensa.a *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:port_uart.* *libdriver.a:gptimer.* *libesp_event.a:default_event_loop.* *libesp_event.a:esp_event.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:esp_gpio_reserve.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_wdt.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_mm.a:cache_esp32.* *libesp_mm.a:esp_cache.* *libesp_rom.a:esp_rom_spiflash.* *libesp_system.a:esp_err.* *libesp_system.a:esp_system_chip.* *libesp_system.a:ubsan.* *libesp_wifi.a:esp_adapter.* *libesp_wifi.a:wifi_netif.* *libgcc.a:lib2funcs.* *libhal.a:cache_hal_esp32.* *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_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:timer_hal.* *libhal.a:wdt_hal_iram.* *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_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_wrap.*) .text.*) + *(EXCLUDE_FILE(*libnet80211.a *libpp.a) .wifi0iram EXCLUDE_FILE(*libnet80211.a *libpp.a) .wifi0iram.*) + *(.wifiextrairam .wifiextrairam.*) + *(EXCLUDE_FILE(*libpp.a) .wifiorslpiram EXCLUDE_FILE(*libpp.a) .wifiorslpiram.*) + *(EXCLUDE_FILE(*libnet80211.a *libpp.a) .wifirxiram EXCLUDE_FILE(*libnet80211.a *libpp.a) .wifirxiram.*) + *(.wifislpiram .wifislpiram.*) + *(EXCLUDE_FILE(*libnet80211.a *libpp.a) .wifislprxiram EXCLUDE_FILE(*libnet80211.a *libpp.a) .wifislprxiram.*) + *libdriver.a:gptimer.*(.literal.gptimer_del_timer .literal.gptimer_destroy .literal.gptimer_disable .literal.gptimer_enable .literal.gptimer_get_captured_count .literal.gptimer_get_raw_count .literal.gptimer_get_resolution .literal.gptimer_new_timer .literal.gptimer_register_event_callbacks .literal.gptimer_release_group_handle .literal.gptimer_set_alarm_action .literal.gptimer_set_raw_count .literal.gptimer_start .literal.gptimer_stop .text .text.gptimer_del_timer .text.gptimer_destroy .text.gptimer_disable .text.gptimer_enable .text.gptimer_get_captured_count .text.gptimer_get_raw_count .text.gptimer_get_resolution .text.gptimer_new_timer .text.gptimer_register_event_callbacks .text.gptimer_release_group_handle .text.gptimer_set_alarm_action .text.gptimer_set_raw_count .text.gptimer_start .text.gptimer_stop) + *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.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 .text .text.base_node_add_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_instances_add .text.handler_instances_remove .text.handler_instances_remove_all .text.loop_node_add_handler) + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_set_watchpoint .text .text.esp_cpu_clear_breakpoint .text.esp_cpu_clear_watchpoint .text.esp_cpu_set_breakpoint .text.esp_cpu_set_watchpoint) + *libesp_hw_support.a:esp_gpio_reserve.*(.text) + *libesp_hw_support.a:periph_ctrl.*(.literal.periph_ll_get_rst_en_reg .literal.periph_module_disable .literal.periph_module_enable .literal.periph_rcc_acquire_enter .literal.periph_rcc_acquire_exit .literal.periph_rcc_release_enter .literal.periph_rcc_release_exit .text .text.periph_ll_get_clk_en_mask .text.periph_ll_get_rst_en_mask .text.periph_ll_get_rst_en_reg .text.periph_module_disable .text.periph_module_enable .text.periph_rcc_acquire_enter .text.periph_rcc_acquire_exit .text.periph_rcc_release_enter .text.periph_rcc_release_exit) + *libesp_hw_support.a:rtc_init.*(.literal.rtc_init .text .text.rtc_init) + *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_chip.*(.literal.esp_get_free_heap_size .literal.esp_get_free_internal_heap_size .literal.esp_get_idf_version .literal.esp_get_minimum_free_heap_size .text .text.esp_get_free_heap_size .text.esp_get_free_internal_heap_size .text.esp_get_idf_version .text.esp_get_minimum_free_heap_size) + *libesp_wifi.a:esp_adapter.*(.literal.esp_cpu_intr_disable .literal.esp_cpu_intr_enable .literal.esp_event_post_wrapper .literal.esp_phy_disable_wrapper .literal.esp_phy_enable_wrapper .literal.event_group_wait_bits_wrapper .literal.get_time_wrapper .literal.mutex_create_wrapper .literal.mutex_delete_wrapper .literal.queue_create_wrapper .literal.queue_delete_wrapper .literal.queue_recv_wrapper .literal.queue_send_to_back_wrapper .literal.queue_send_to_front_wrapper .literal.queue_send_wrapper .literal.recursive_mutex_create_wrapper .literal.set_intr_wrapper .literal.set_isr_wrapper .literal.task_create_pinned_to_core_wrapper .literal.task_create_wrapper .literal.wifi_clock_disable_wrapper .literal.wifi_clock_enable_wrapper .literal.wifi_create_queue .literal.wifi_create_queue_wrapper .literal.wifi_delete_queue .literal.wifi_delete_queue_wrapper .literal.wifi_reset_mac_wrapper .literal.wifi_thread_semphr_free .literal.wifi_thread_semphr_get_wrapper .text .text.clear_intr_wrapper .text.coex_deinit_wrapper .text.coex_disable_wrapper .text.coex_enable_wrapper .text.coex_init_wrapper .text.coex_register_start_cb_wrapper .text.coex_schm_curr_period_get_wrapper .text.coex_schm_curr_phase_get_wrapper .text.coex_schm_flexible_period_get_wrapper .text.coex_schm_flexible_period_set_wrapper .text.coex_schm_interval_get_wrapper .text.coex_schm_process_restart_wrapper .text.coex_schm_register_cb_wrapper .text.coex_schm_status_bit_clear_wrapper .text.coex_schm_status_bit_set_wrapper .text.coex_wifi_channel_set_wrapper .text.coex_wifi_request_wrapper .text.esp_cpu_intr_disable .text.esp_cpu_intr_enable .text.esp_event_post_wrapper .text.esp_phy_disable_wrapper .text.esp_phy_enable_wrapper .text.event_group_wait_bits_wrapper .text.get_time_wrapper .text.mutex_create_wrapper .text.mutex_delete_wrapper .text.queue_create_wrapper .text.queue_delete_wrapper .text.queue_recv_wrapper .text.queue_send_to_back_wrapper .text.queue_send_to_front_wrapper .text.queue_send_wrapper .text.recursive_mutex_create_wrapper .text.set_intr_wrapper .text.set_isr_wrapper .text.task_create_pinned_to_core_wrapper .text.task_create_wrapper .text.task_get_max_priority_wrapper .text.wifi_clock_disable_wrapper .text.wifi_clock_enable_wrapper .text.wifi_create_queue .text.wifi_create_queue_wrapper .text.wifi_delete_queue .text.wifi_delete_queue_wrapper .text.wifi_reset_mac_wrapper .text.wifi_thread_semphr_free .text.wifi_thread_semphr_get_wrapper) + *libesp_wifi.a:wifi_netif.*(.literal.esp_wifi_create_if_driver .literal.esp_wifi_destroy_if_driver .literal.esp_wifi_get_if_mac .literal.esp_wifi_register_if_rxcb .literal.wifi_ap_receive .literal.wifi_driver_start .literal.wifi_free .literal.wifi_transmit .text .text.esp_wifi_create_if_driver .text.esp_wifi_destroy_if_driver .text.esp_wifi_get_if_mac .text.esp_wifi_is_if_ready_when_started .text.esp_wifi_register_if_rxcb .text.wifi_ap_receive .text.wifi_driver_start .text.wifi_free .text.wifi_transmit) + *libfreertos.a:app_startup.*(.literal .literal.* .text .text.*) + *libfreertos.a:freertos_compatibility.*(.literal .literal.* .text .text.*) + *libfreertos.a:idf_additions.*(.literal .literal.* .text .text.*) + *libfreertos.a:tasks.*(.literal.uxTaskGetSnapshotAll .text.uxTaskGetSnapshotAll) + *libfreertos.a:tasks.*(.literal.xTaskGetNext .text.xTaskGetNext) + *libhal.a:timer_hal.*(.literal.timer_hal_deinit .literal.timer_hal_init .text .text.timer_hal_deinit .text.timer_hal_init .text.timer_hal_set_counter_value) + *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_info_impl .text.multi_heap_get_info_tlsf .text.multi_heap_minimum_free_size_impl .text.multi_heap_register_impl) + *libheap.a:tlsf.*(.literal.default_walker .literal.integrity_walker .literal.tlsf_add_pool .literal.tlsf_check .literal.tlsf_check_pool .literal.tlsf_create .literal.tlsf_create_with_pool .literal.tlsf_remove_pool .literal.tlsf_walk_pool .text .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.fix_cache_generation_overflow .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.fix_cache_generation_overflow .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) + *libphy.a:(.phyiram .phyiram.*) + *libxtensa.a:xt_trax.*(.literal .literal.* .text .text.*) + *libxtensa.a:xtensa_intr.*(.literal .literal.* .text .text.*) + *(.stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*) + *(.irom0.text) /* catch stray ICACHE_RODATA_ATTR */ + *(.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 + /* Marks the end of IRAM code segment */ + .iram0.text_end (NOLOAD) : + { + . = ALIGN (4); + _iram_text_end = ABSOLUTE(.); + } > iram0_0_seg + .iram0.data : + { + . = ALIGN(4); + _iram_data_start = ABSOLUTE(.); + *(.iram.data .iram.data.*) + _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 + /* DWARF 1 */ + .debug 0 : { *(.debug) } + .line 0 : { *(.line) } + /* GNU DWARF 1 extensions */ + .debug_srcinfo 0 : { *(.debug_srcinfo) } + .debug_sfnames 0 : { *(.debug_sfnames) } + /* DWARF 1.1 and DWARF 2 */ + .debug_aranges 0 : { *(.debug_aranges) } + .debug_pubnames 0 : { *(.debug_pubnames) } + /* DWARF 2 */ + .debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) } + .debug_abbrev 0 : { *(.debug_abbrev) } + .debug_line 0 : { *(.debug_line) } + .debug_frame 0 : { *(.debug_frame) } + .debug_str 0 : { *(.debug_str) } + .debug_loc 0 : { *(.debug_loc) } + .debug_macinfo 0 : { *(.debug_macinfo) } + .debug_pubtypes 0 : { *(.debug_pubtypes) } + /* DWARF 3 */ + .debug_ranges 0 : { *(.debug_ranges) } + /* SGI/MIPS DWARF 2 extensions */ + .debug_weaknames 0 : { *(.debug_weaknames) } + .debug_funcnames 0 : { *(.debug_funcnames) } + .debug_typenames 0 : { *(.debug_typenames) } + .debug_varnames 0 : { *(.debug_varnames) } + /* GNU DWARF 2 extensions */ + .debug_gnu_pubnames 0 : { *(.debug_gnu_pubnames) } + .debug_gnu_pubtypes 0 : { *(.debug_gnu_pubtypes) } + /* DWARF 4 */ + .debug_types 0 : { *(.debug_types) } + /* DWARF 5 */ + .debug_addr 0 : { *(.debug_addr) } + .debug_line_str 0 : { *(.debug_line_str) } + .debug_loclists 0 : { *(.debug_loclists) } + .debug_macro 0 : { *(.debug_macro) } + .debug_names 0 : { *(.debug_names) } + .debug_rnglists 0 : { *(.debug_rnglists) } + .debug_str_offsets 0 : { *(.debug_str_offsets) } + .comment 0 : { *(.comment) } + .note.GNU-stack 0: { *(.note.GNU-stack) } +/** + * .xt.prop and .xt.lit sections will be used by the debugger and disassembler + * to get more information about raw data present in the code. + * Indeed, it may be required to add some padding at some points in the code + * in order to align a branch/jump destination on a particular bound. + * Padding these instructions will generate null bytes that shall be + * interpreted as data, and not code by the debugger or disassembler. + * This section will only be present in the ELF file, not in the final binary + * For more details, check GCC-212 + */ + .xtensa.info 0: { *(.xtensa.info) } + .xt.prop 0 : { *(.xt.prop .xt.prop.* .gnu.linkonce.prop.*) } + .xt.lit 0 : { *(.xt.lit .xt.lit.* .gnu.linkonce.p.*) } + /DISCARD/ : + { + *(.fini) + *(.eh_frame_hdr) + *(.eh_frame) + } +} +ASSERT(((_iram_end - ORIGIN(iram0_0_seg)) <= LENGTH(iram0_0_seg)), + "IRAM0 segment data does not fit.") +ASSERT(((_heap_low_start - ORIGIN(dram0_0_seg)) <= LENGTH(dram0_0_seg)), + "DRAM segment data does not fit.") diff --git a/ESP32-IDF_Mesh/internal_communication/build/internal_communication.bin b/ESP32-IDF_Mesh/internal_communication/build/internal_communication.bin new file mode 100644 index 000000000..8d9c59454 Binary files /dev/null and b/ESP32-IDF_Mesh/internal_communication/build/internal_communication.bin differ diff --git a/ESP32-IDF_Mesh/internal_communication/build/internal_communication.elf b/ESP32-IDF_Mesh/internal_communication/build/internal_communication.elf new file mode 100755 index 000000000..5449da8b2 Binary files /dev/null and b/ESP32-IDF_Mesh/internal_communication/build/internal_communication.elf differ diff --git a/ESP32-IDF_Mesh/internal_communication/build/internal_communication.map b/ESP32-IDF_Mesh/internal_communication/build/internal_communication.map new file mode 100644 index 000000000..fff6d057d --- /dev/null +++ b/ESP32-IDF_Mesh/internal_communication/build/internal_communication.map @@ -0,0 +1,86955 @@ +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_cond_var.c.obj) + (pthread_include_pthread_cond_var_impl) +esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) (pthread_key_create) +esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + (pthread_include_pthread_rwlock_impl) +esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + (pthread_include_pthread_semaphore_impl) +esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + (__ubsan_include) +esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + (call_start_cpu0) +esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + esp-idf/esp_system/libesp_system.a(ubsan.c.obj) (esp_system_abort) +esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_ipc_isr_stall_other_cpu) +esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) (esp_ipc_isr_port_init) +esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) (esp_ipc_isr_waiting_for_finish_cmd) +esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + (ld_include_highint_hdl) +esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_rtc_init) +esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_cache_err_int_init) +esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) (int_wdt_cpu1_ticked) +esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) (panic_abort) +esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_restart) +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(esp_ipc_isr_handler.S.obj) + esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) (esp_ipc_isr_handler) +esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) (panic_print_registers) +esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) (esp_backtrace_print_from_frame) +esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) (esp_backtrace_get_start) +esp-idf/esp_system/libesp_system.a(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(freertos_hooks.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) (esp_register_freertos_tick_hook_for_cpu) +esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_rom_uart_tx_wait_idle) +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(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) (wdt_hal_init) +esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) (uart_hal_write_txfifo) +esp-idf/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_chip.c.obj) (heap_caps_get_free_size) +esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) (registered_heaps) +esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) (multi_heap_get_allocated_size) +esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) (tlsf_check) +esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) (soc_get_available_memory_region_max_count) +esp-idf/heap/libheap.a(memory_layout.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) (soc_memory_region_count) +esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) (heap_caps_free) +esp-idf/soc/libsoc.a(dport_access.c.obj) + (esp_dport_access_reg_read) +esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + esp-idf/esp_system/libesp_system.a(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(esp_ipc_isr_port.c.obj) (esp_intr_enable_source) +esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) (periph_rcc_acquire_enter) +esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/esp_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(mspi_timing_tuning.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) (mspi_timing_change_speed_mode_cache_safe) +esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) (rtc_clk_32k_enable) +esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) (rtc_init) +esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) (rtc_clk_cal) +esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_chip_info) +esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) (sar_periph_ctrl_init) +esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (esp_cpu_intr_get_desc) +esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (regi2c_ctrl_read_reg_mask) +esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) (esp_startup_start_app) +esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) (xQueueGetMutexHolder) +esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system.c.obj) (vTaskSuspendAll) +esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) (port_xSchedulerRunning) +esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) (_frxt_dispatch) +esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) (_xt_tick_divisor) +esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) (pvPortMalloc) +esp-idf/freertos/libfreertos.a(port_common.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) (vApplicationGetIdleTaskMemory) +esp-idf/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) (vPortSetupTimer) +esp-idf/freertos/libfreertos.a(list.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) (vListInitialise) +esp-idf/newlib/libnewlib.a(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/freertos/libfreertos.a(tasks.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_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_lac.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_uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_console.c.obj) (esp_vfs_uart_get_vfs) +esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + (nvs_sec_provider_include_impl) +esp-idf/main/libmain.a(mesh_main.c.obj) + (app_main) +esp-idf/main/libmain.a(mesh_light.c.obj) + esp-idf/main/libmain.a(mesh_main.c.obj) (mesh_light_init) +esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) (_xt_context_save) +esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (xt_ints_on) +esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) (xt_unhandled_interrupt) +esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) (_xt_user_exit) +esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_efuse_check_errors) +esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) (esp_efuse_utility_count_once) +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/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) (ESP_EFUSE_RD_DIS_BLOCK3) +esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (esp_efuse_utility_clear_program_registers) +esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_mmu_map_init) +esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) (g_mmu_mem_regions) +esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) (cache_sync) +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_is_valid_gpio) +esp-idf/driver/libdriver.a(ledc.c.obj) + esp-idf/main/libmain.a(mesh_light.c.obj) (ledc_timer_config) +esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) (uart_set_word_length) +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(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_flash_config_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (bootloader_flash_update_id) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) (bootloader_common_get_chip_ver_pkg) +esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) (esp_flash_encryption_enabled) +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(cache_utils.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) (spi_flash_disable_interrupts_caches_and_other_cpu) +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) (spi_flash_init_chip_state) +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_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_read) +esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (memspi_host_init_pointers) +esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) (_esp_error_check_failed) +esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) (esp_crosscore_int_init) +esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (esp_ipc_call_blocking) +esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) (task_wdt_timeout_abort) +esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) (esp_task_wdt_impl_timer_allocate) +esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) (_xt_panic) +esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (esp_rom_set_cpu_ticks_per_us) +esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) (esp_rom_spiflash_wait_idle) +esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) (mmu_hal_paddr_to_vaddr) +esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) (cache_hal_suspend) +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(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) (uart_hal_get_sclk) +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(rtc_io_hal.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) (rtcio_hal_set_direction) +esp-idf/hal/libhal.a(ledc_hal.c.obj) + esp-idf/driver/libdriver.a(ledc.c.obj) (ledc_hal_init) +esp-idf/hal/libhal.a(ledc_hal_iram.c.obj) + esp-idf/driver/libdriver.a(ledc.c.obj) (ledc_hal_ls_channel_update) +esp-idf/soc/libsoc.a(interrupts.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (esp_isr_names) +esp-idf/soc/libsoc.a(gpio_periph.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) (GPIO_HOLD_MASK) +esp-idf/soc/libsoc.a(uart_periph.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) (uart_periph_signal) +esp-idf/soc/libsoc.a(spi_periph.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (spi_periph_signal) +esp-idf/soc/libsoc.a(ledc_periph.c.obj) + esp-idf/driver/libdriver.a(ledc.c.obj) (ledc_periph_signal) +esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) (rtc_io_desc) +esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + esp-idf/freertos/libfreertos.a(heap_idf.c.obj) (esp_ptr_byte_accessible) +esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) (esp_cpu_configure_region_protection) +esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + esp-idf/driver/libdriver.a(ledc.c.obj) (periph_rtc_dig_clk8m_enable) +esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/driver/libdriver.a(ledc.c.obj) (esp_sleep_periph_use_8m) +esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (esp_sleep_execute_event_callbacks) +esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (modem_domain_pd_allowed) +esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) (esp_gpio_reserve_pins) +esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + esp-idf/driver/libdriver.a(ledc.c.obj) (esp_clk_tree_src_get_freq_hz) +esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) (esp_clk_tree_rc_fast_d256_get_freq_hz) +esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (rtc_sleep_get_default_config) +esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) (xQueueCreateWithCaps) +esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) (xStreamBufferGenericCreateStatic) +esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + esp-idf/esp_system/libesp_system.a(esp_err.c.obj) (esp_err_to_name) +esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + esp-idf/main/libmain.a(mesh_main.c.obj) (esp_event_handler_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(mesh_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) (_ZNK3nvs7Storage7isValidEv) +esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) (_ZN3nvs15NVSHandleSimple11findEntryNsEP21nvs_opaque_iterator_t) +esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) (_ZN3nvs12NVSPartitionC1EPK15esp_partition_t) +esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) (_ZN3nvs19NVSPartitionManager12get_instanceEv) +esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) (_ZN3nvs4LockC1Ev) +esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) (_ZN3nvs8HashListD1Ev) +esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) (_ZN3nvs4Page8markFullEv) +esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) (_ZN3nvs11PageManager9fillStatsER11nvs_stats_t) +esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) (_ZN3nvs16partition_lookup20lookup_nvs_partitionEPKcPPNS_12NVSPartitionE) +esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) (_ZNK3nvs4Item14calculateCrc32Ev) +esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) (_ZN3nvs21NVSEncryptedPartitionC1EPK15esp_partition_t) +esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/main/libmain.a(mesh_main.c.obj) (IP_EVENT) +esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/main/libmain.a(mesh_main.c.obj) (esp_netif_init) +esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + esp-idf/main/libmain.a(mesh_main.c.obj) (g_wifi_default_mesh_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) (sha256_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(aes-gcm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) (aes_gmac) +esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) (bin_clear_free) +esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) (fastpbkdf2_hmac_sha1) +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(mesh_event.c.obj) + esp-idf/main/libmain.a(mesh_main.c.obj) (MESH_EVENT) +esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + esp-idf/main/libmain.a(mesh_main.c.obj) (esp_wifi_init) +esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/main/libmain.a(mesh_main.c.obj) (esp_netif_create_default_wifi_mesh_netifs) +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(mesh_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_base_lookup_table) +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(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(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) (psa_generic_status_to_mbedtls) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(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(sha3.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) (mbedtls_sha3_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) (esp_mbedtls_mem_calloc) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) (esp_aes_xts_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) (esp_aes_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) (esp_aes_crypt_ecb) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) (mbedtls_mpi_exp_mod) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) (esp_mpi_enable_hardware_hw_op) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.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(psa_util.c.obj) (mbedtls_asn1_get_tag) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) (mbedtls_asn1_write_len) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) (mbedtls_ccm_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) (psa_generate_random) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (mbedtls_psa_aead_encrypt_setup) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) (mbedtls_cipher_values_from_psa) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (psa_reset_key_attributes) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (psa_driver_wrapper_get_key_buffer_size) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (mbedtls_psa_ecp_import_key) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (mbedtls_psa_hash_abort) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (mbedtls_psa_mac_abort) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (mbedtls_psa_rsa_import_key) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (psa_is_valid_key_id) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (psa_destroy_persistent_key) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) (psa_its_get_info) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) (mbedtls_rsa_export) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) (mbedtls_rsa_deduce_primes) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) (esp_sha_try_lock_engine) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (mbedtls_ctr_drbg_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) (mbedtls_ecdh_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) (mbedtls_ecdsa_sign) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) (mbedtls_ecp_curve_info_from_grp_id) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (mbedtls_ecp_group_load) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) (mbedtls_entropy_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(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) (mbedtls_oid_get_oid_by_md) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) (mbedtls_hardware_poll) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + esp-idf/main/libmain.a(mesh_main.c.obj) (esp_mesh_init) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) (esp_mesh_nvs_init) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) (mesh_set_io_process) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) (esp_mesh_delivery_toSelf) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) (esp_mesh_channel_enable_jp) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) (g_is_wifi_connected) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) (is_my_ie_encrypted) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) (esp_mesh_route_init) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) (esp_mesh_send_block_start) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) (esp_mesh_pm_tbtt_timeout_process) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) (mesh_timer_do_process) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) (mesh_mutex_lock) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) (mesh_topo_get_ttl) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) (esp_mesh_ap_list_clear) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) (g_osi_funcs_p) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) (g_ic) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) (ieee80211_crypto_attach) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) (wifi_log) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) (ieee80211_hostapd_beacon_txcb) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) (ieee80211_ht_attach) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) (ieee80211_add_ie_vendor_esp_head) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) (ieee80211_decap) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) (current_task_is_wifi_task) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) (esp_mesh_quick_funcs) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) (wifi_nan_reg_rxcb) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) (nan_dp_search_node) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) (nan_schedule_disc_bcn) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) (nan_get_peer_svc_record) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) (g_wifi_nvs) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) (ieee80211_reg_netstack_buf_cb) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) (ieee80211_phy_deinit) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) (ieee80211_psq_init) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) (ieee80211_proto_attach) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) (ieee80211_get_chan_info) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) (ieee80211_regdomain_get_country) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) (ieee80211_rfid_locp_recv_reset) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) (ieee80211_scan_attach) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) (sta_rxcb) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) (wifi_sta_get_prof_password) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) (ieee80211_register_hostap_timer) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) (g_chm) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) (g_cnxMgr) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) (offchan_in_progress) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) (ieee80211_send_action_register) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) (get_iav_key) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) (ccmp) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) (sms4) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) (tkip) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) (wep) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) (ieee80211_getmgtframe) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) (esf_buf_recycle) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) (ic_get_addr) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) (lmacIsIdle) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) (pm_is_waked) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_coex.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) (pm_coex_set_reconnect_policy) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) (pTxRx) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) (wifi_gpio_debug) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) (pp_timer_do_process) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) (RC_SetBasicRate) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) (rcUpdateAMPDUParam) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) (wDevCtrl) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) (hal_agreement_add_rx_ba) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) (hal_crypto_clr_key_entry) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) (hal_mac_tx_set_ppdu) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) (hal_mac_rx_get_end_state) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) (mac_tx_set_plcp1) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) (hal_sniffer_enable) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) (hal_enable_sta_tsf) +esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) (xRingbufferSend) +esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) (esp_efuse_disable_rom_download_mode) +esp-idf/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_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(touch_sensor_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (touch_pad_get_wakeup_status) +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_api.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(mpu_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) (mpu_hal_set_region_access) +esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) (clk_hal_lp_slow_get_freq_hz) +esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) (mpi_hal_calc_hardware_words) +esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) (sha_hal_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/hal/libhal.a(touch_sensor_hal.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) (touch_hal_set_voltage) +esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) (touch_hal_get_wakeup_status) +esp-idf/soc/libsoc.a(dport_access_common.c.obj) + esp-idf/hal/libhal.a(mpi_hal.c.obj) (esp_dport_access_read_buffer) +esp-idf/soc/libsoc.a(mpi_periph.c.obj) + esp-idf/hal/libhal.a(mpi_hal.c.obj) (MPI_LL_OPERATIONS) +esp-idf/soc/libsoc.a(touch_sensor_periph.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) (touch_sensor_channel_io_map) +esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.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(esp_crypto_lock.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) (esp_crypto_mpi_lock_acquire) +esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) (xEventGroupCreate) +esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) (ets_timer_arm) +esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) (net80211_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_common_clock_enable) +esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) (phy_set_modem_flag) +esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) (lwip_inet_pton) +esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) (tcpip_input) +esp-idf/lwip/liblwip.a(def.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) (lwip_htons) +esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) (dns_setserver) +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(mem.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) (mem_init) +esp-idf/lwip/liblwip.a(memp.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) (memp_init) +esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) (netif_set_default) +esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) (pbuf_free) +esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) (raw_bind_netif) +esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) (tcp_init) +esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) (tcp_input_pcb) +esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) (tcp_split_unsent_seg) +esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) (sys_timeout) +esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) (udp_init) +esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) (dhcp_set_struct) +esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) (etharp_cleanup_netif) +esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) (icmp_dest_unreach) +esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) (igmp_init) +esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) (ip4_route) +esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) (ip4_addr_isbroadcast_u32) +esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) (ip4_frag) +esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) (icmp6_dest_unreach) +esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) (ip6_route) +esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) (ip6addr_aton) +esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) (ip6_frag) +esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) (mld6_stop) +esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) (nd6_input) +esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) (ethbroadcast) +esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) (lwip_init_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(sockets_ext.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) (lwip_setsockopt_impl_ext) +esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) (sys_sem_new) +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(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) (dhcps_new) +esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) (netconn_new_with_proto_and_callback) +esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) (lwip_netconn_is_deallocated_msg) +esp-idf/lwip/liblwip.a(err.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) (err_to_errno) +esp-idf/lwip/liblwip.a(netbuf.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) (netbuf_delete) +esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) (ip6_chksum_pseudo) +esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) (esp_netif_action_start) +esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) (_g_esp_netif_inherent_ap_config) +esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) (_g_esp_netif_netstack_default_wifi_ap) +esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) (wlanif_input) +esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) (ethernetif_input) +esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) (esp_pbuf_allocate) +esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) (esp_supplicant_init) +esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) (esp_supplicant_unset_all_appie) +esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) (wps_get_wps_sm_cb) +esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) (esp_wpa3_free_sae_data) +esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) (owe_deinit) +esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) (hostapd_get_hapd_data) +esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) (crypto_ecdh_deinit) +esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) (eloop_init) +esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) (hostapd_setup_wpa_psk) +esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) (wpa_init) +esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) (wpa_auth_gen_wpa_ie) +esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) (pmksa_cache_free_entry) +esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) (ap_get_sta) +esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) (handle_auth_sae) +esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) (check_comeback_token) +esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) (sae_clear_temp_data) +esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) (dragonfly_min_pwe_loop_iter) +esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.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(eap_wsc_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) (eap_wsc_build_frag_ack) +esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) (eap_msg_alloc) +esp-idf/wpa_supplicant/libwpa_supplicant.a(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_wps.c.obj) (wpabuf_alloc) +esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) (wpa_snprintf_hex) +esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) (wps_init) +esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) (wps_build_public_key) +esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) (wps_parse_msg) +esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) (wps_generate_pin) +esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) (wps_build_manufacturer) +esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) (wps_enrollee_get_msg) +esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) (sae_pk_valid_password) +esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) (eap_client_get_eap_state) +esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) (wpa_alloc_eapol) +esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) (tls_init) +esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) (crypto_bignum_init) +esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) (aes_siv_decrypt) +esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) (dh5_init) +esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) (ieee802_11_parse_elems) +esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) (eap_peer_get_eap_method) +esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) (eap_peer_mschapv2_register) +esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) (eap_peer_peap_register) +esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) (peap_prfplus) +esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) (eap_peer_tls_register) +esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) (eap_peer_tls_ssl_init) +esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) (eap_peer_ttls_register) +esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) (mschapv2_remove_domain) +esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) (pmksa_cache_flush) +esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) (wps_process_authenticator) +esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) (nt_password_hash) +esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) (md4_vector) +esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) (chap_md5) +esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) (des_encrypt) +esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) (esp_coex_common_malloc_internal_wrapper) +esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) (mbedtls_ssl_read) +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(esp_platform_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) (mbedtls_ms_time) +esp-idf/mbedtls/mbedtls/library/libmbedtls.a(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(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_ecc.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) (mbedtls_pk_ecc_set_group) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) (mbedtls_rsa_alt_info) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/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(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) (mbedtls_pem_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) (mbedtls_pkcs12_pbe_ext) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) (mbedtls_pkcs5_pbes2_ext) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(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) +/home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) (g_misc_nvs) +esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) (esp_crt_bundle_attach) +esp-idf/mbedtls/libmbedtls.a(x509_crt_bundle.S.obj) + esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) (_binary_x509_crt_bundle_start) +esp-idf/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(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (esp_partition_table_verify) +esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) (esp_image_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/lwip/liblwip.a(ethip6.c.obj) + esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) (ethip6_output) +/home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + esp-idf/freertos/libfreertos.a(portasm.S.obj) (xthal_window_spill_nw) +/home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (xthal_set_intclear) +/home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) (Xthal_intlevel) +/home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) (xthal_restore_extra_nw) +/home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) (xthal_save_extra_nw) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_opv.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) (_ZdaPv) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_opvs.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) (_ZdaPvj) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_handler.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) (_ZSt7nothrow) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opvnt.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) (_ZnajRKSt9nothrow_t) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_op.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_opv.o) (_ZdlPv) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_catch.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opvnt.o) (__cxa_begin_catch) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_catch.o) (__cxa_get_globals_fast) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_catch.o) (_ZSt9terminatev) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_unex_handler.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) (_ZN10__cxxabiv120__unexpected_handlerE) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opv.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opvnt.o) (_Znaj) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_term_handler.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) (_ZN10__cxxabiv119__terminate_handlerE) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_op.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opv.o) (_Znwj) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_op.o) (_ZTVN10__cxxabiv120__si_class_type_infoE) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(tinfo.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) (_ZNKSt9type_info14__is_pointer_pEv) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(bad_alloc.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_op.o) (_ZTVSt9bad_alloc) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) (_ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PPv) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_ops.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) (_ZdlPvj) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(bad_alloc.o) (_ZNSt9exceptionD2Ev) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_ashldi3.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (__ashldi3) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_lshrdi3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) (__lshrdi3) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_bswapsi2.o) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) (__bswapsi2) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_bswapdi2.o) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) (__bswapdi2) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divsf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__divsf3) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_floatdisf.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) (__floatundisf) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_addsubdf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__adddf3) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_muldf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__muldf3) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divdf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__divdf3) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_fixdfsi.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__fixdfsi) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_fixunsdfsi.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__fixunsdfsi) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_floatsidf.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__floatunsidf) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_extendsfdf2.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__extendsfdf2) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_ffsdi2.o) + esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) (__ffsdi2) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_popcountsi2.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (__popcountsi2) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divdi3.o) + esp-idf/pthread/libpthread.a(pthread.c.obj) (__divdi3) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_moddi3.o) + esp-idf/newlib/libnewlib.a(time.c.obj) (__moddi3) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_udivdi3.o) + esp-idf/esp_system/libesp_system.a(clk.c.obj) (__udivdi3) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/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) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_catch.o) (__wrap__Unwind_DeleteException) +/home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) (disable_wifi_agc) +/home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) (phy_change_channel_nomac) +/home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) (ram_txbbgain_to_index) +/home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) (bb_bss_cbw40_ana) +/home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) (coex_bt_high_prio) +/home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) (temprature_sens_read) +/home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) (rtc_pads_muxsel) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-atoi.o) + esp-idf/lwip/liblwip.a(netif.c.obj) (atoi) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-div.o) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) (div) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-environ.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) (environ) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-itoa.o) + esp-idf/newlib/libnewlib.a(abort.c.obj) (itoa) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-rand.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) (rand) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtol.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-atoi.o) (_strtol_r) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-utoa.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-itoa.o) (__utoa) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ctype_.o) + esp-idf/lwip/liblwip.a(dns.c.obj) (_ctype_) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-qsort.o) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) (qsort) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fclose.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) (_fclose_r) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ferror.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) (ferror) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fflush.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fclose.o) (__sflush_r) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fgets.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) (fgets) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-findfp.o) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) (__sglue) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fopen.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) (fopen) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fprintf.o) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (fprintf) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputc.o) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (fputc) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputs.o) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (fputs) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fread.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) (fread) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseek.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fopen.o) (_fseek_r) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftell.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) (ftell) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fvwrite.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputs.o) (__sfvwrite_r) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fwalk.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fflush.o) (_fwalk_sglue) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fwrite.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) (fwrite) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-printf.o) + esp-idf/heap/libheap.a(heap_caps.c.obj) (printf) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putc.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputc.o) (_putc_r) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putchar.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) (putchar) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-puts.o) + esp-idf/heap/libheap.a(heap_caps.c.obj) (puts) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-refill.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fgets.o) (__srefill_r) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-remove.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) (remove) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-rename.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) (rename) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setbuf.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) (setbuf) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setvbuf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setbuf.o) (setvbuf) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-snprintf.o) + esp-idf/log/liblog.a(log_freertos.c.obj) (snprintf) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sprintf.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) (sprintf) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-stdio.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-findfp.o) (__sread) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vprintf.o) + esp-idf/log/liblog.a(log.c.obj) (vprintf) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vsnprintf.o) + esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) (vsnprintf) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wbuf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putc.o) (__swbuf_r) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wsetup.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) (__swsetup_r) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseeko.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseek.o) (_fseeko_r) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftello.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftell.o) (_ftello_r) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-bzero.o) + esp-idf/newlib/libnewlib.a(heap.c.obj) (bzero) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memchr.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fgets.o) (memchr) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memcmp.o) + esp-idf/vfs/libvfs.a(vfs.c.obj) (memcmp) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memmove.o) + esp-idf/log/liblog.a(log_freertos.c.obj) (memmove) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcat.o) + esp-idf/freertos/libfreertos.a(port.c.obj) (strcat) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strchr.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) (strchr) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcspn.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (strcspn) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strdup.o) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) (strdup) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strdup_r.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strdup.o) (_strdup_r) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror_r.o) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) (strerror_r) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlcat.o) + esp-idf/esp_system/libesp_system.a(ubsan.c.obj) (strlcat) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlcpy.o) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) (strlcpy) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strncmp.o) + esp-idf/vfs/libvfs.a(vfs.c.obj) (strncmp) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strnlen.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) (strnlen) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strrchr.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) (strrchr) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtok.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) (strtok) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtok_r.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtok.o) (__strtok_r) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strstr.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) (strstr) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gmtime.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) (gmtime) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gmtime_r.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gmtime.o) (gmtime_r) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-lcltime_r.o) + esp-idf/log/liblog.a(log_freertos.c.obj) (localtime_r) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mktime.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) (mktime) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-month_lengths.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-lcltime_r.o) (__month_lengths) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-time.o) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) (time) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzcalc_limits.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-lcltime_r.o) (__tzcalc_limits) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzlock.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-lcltime_r.o) (__tz_lock) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-lcltime_r.o) (_tzset_unlocked) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset_r.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset.o) (_tzset_unlocked_r) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzvars.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset_r.o) (_timezone) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-reent.o) + esp-idf/freertos/libfreertos.a(tasks.c.obj) (_reclaim_reent) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-impure.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-reent.o) (_impure_ptr) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-errno.o) + esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) (__errno) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sysgettod.o) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) (gettimeofday) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sysstat.o) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) (stat) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memcpy.o) + esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) (memcpy) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memset.o) + esp-idf/pthread/libpthread.a(pthread.c.obj) (memset) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcmp.o) + esp-idf/log/liblog.a(log.c.obj) (strcmp) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcpy.o) + esp-idf/vfs/libvfs.a(vfs.c.obj) (strcpy) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlen.o) + esp-idf/esp_system/libesp_system.a(panic.c.obj) (strlen) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strncpy.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) (strncpy) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-getenv_r.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset_r.o) (_getenv_r) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoul.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset_r.o) (strtoul) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-siscanf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset_r.o) (siscanf) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-siscanf.o) (__ssvfiscanf_r) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-snprintf.o) (_svfprintf_r) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fprintf.o) (_vfprintf_r) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfiprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) (__sprint_r) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-flags.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fopen.o) (__sflags) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-makebuf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setvbuf.o) (__swhatbuf_r) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sccl.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) (__sccl) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ungetc.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) (__submore) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror_r.o) (_strerror_r) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-u_strerr.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror.o) (_user_strerror) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gettzinfo.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-lcltime_r.o) (__gettzinfo) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-locale.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) (__global_locale_ptr) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-localeconv.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) (_localeconv_r) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libm_a-s_frexp.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) (frexp) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) (_dtoa_r) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-envlock.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-getenv_r.o) (__env_lock) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mbtowc_r.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-locale.o) (__ascii_mbtowc) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) (_Balloc) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wctomb_r.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-locale.o) (__ascii_wctomb) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoll.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) (_strtoll_r) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoull.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) (_strtoull_r) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mbrtowc.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) (_mbrtowc_r) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-iswspace.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) (iswspace) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-iswspace_l.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-iswspace.o) (iswspace_l) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) (__chclass) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_cmpdf2.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) (__eqdf2) +/home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_truncdfsf2.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) (__truncdfsf2) + +Allocating common symbols +Common symbol size file + +pwrdet_offset 0x2 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_rxbb_dc 0x10 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +mesh_self_xonseq 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +ctx 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) +phy_chan_gain_table + 0x8 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +phy_rxrf_dc 0x88 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_chan_pwr_index 0x11 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +net80211_funcs 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_mesh_manual_nwk 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +g_mesh_self_map_addr + 0x6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +eb_space 0xc0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +g_cnxMgr 0xef8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +s_ni 0x158 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +g_misc_nvs 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) +DefFreqCalTimer 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +bt_wifi_chan_data 0x14 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +s_wifi_nvs 0x500 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +gChmCxt 0xfc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) +g_ic 0x2a8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +chip7_sleep_params 0xc4 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_chan_target_power + 0x11 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +g_mesh_xon_cfg_qsize + 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_xon 0x10 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +set_most_tpw 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +SigInMacISR 0x190 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +freq_i2c_addr 0xb /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +mesh_conn_leave 0x2c8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +s_dp 0x224 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +s_fix_rate 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +g_wifi_menuconfig 0x60 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +gScanStruct 0x11c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +g_log_level 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) +g_mesh_cfg_attemps 0x10 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +sta_con_timer 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +s_tx_cacheq 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +mesh_xmit_state_mbox + 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +phy_version_str 0x28 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +chip7_phy_init_ctrl + 0x5e /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +g_mesh_current_parent + 0x54 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_log_mod 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) +g_mesh_self_sta_addr + 0x6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +phy_dcur_org 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +s_sd 0x4c4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +s_eapol_txdone_cb 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +g_mesh_ext_vote_state + 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_ext_cfg 0xd0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +g_pm 0x1d0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +ApFreqCalTimer 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +g_mesh_ie 0x3a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +chip7_phy_api_ctrl 0xf /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +action_q 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +wpa_crypto_funcs 0x74 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) +adc_ana_conf_org 0x4 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_dac_org 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +g_mesh_chain 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +if_ctrl 0x28 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + +Discarded input sections + + .literal 0x00000000 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o + .text 0x00000000 0x6 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o + .debug_line 0x00000000 0x50 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o + .debug_line_str + 0x00000000 0xb7 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o + .debug_info 0x00000000 0x24 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o + .debug_abbrev 0x00000000 0x14 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o + .debug_str 0x00000000 0xc3 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o + .xt.prop 0x00000000 0x24 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o + .text 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crti.o + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crti.o + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crti.o + .xt.prop 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crti.o + .literal 0x00000000 0x44 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + .fini.literal 0x00000000 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + .init.literal 0x00000000 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + .text 0x00000000 0xa2 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + .bss 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + .ctors 0x00000000 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + .eh_frame 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + .tm_clone_table + 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + .fini 0x00000000 0x6 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + .init 0x00000000 0x6 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + .xt.lit 0x00000000 0x18 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + .xt.prop 0x00000000 0x150 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + .text 0x00000000 0x0 CMakeFiles/internal_communication.elf.dir/project_elf_src_esp32.c.obj + .data 0x00000000 0x0 CMakeFiles/internal_communication.elf.dir/project_elf_src_esp32.c.obj + .bss 0x00000000 0x0 CMakeFiles/internal_communication.elf.dir/project_elf_src_esp32.c.obj + .comment 0x00000000 0x30 CMakeFiles/internal_communication.elf.dir/project_elf_src_esp32.c.obj + .text 0x00000000 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .data 0x00000000 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .xt.prop 0x00000000 0xd8 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .literal.pthread_list_find_item + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_delete + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutex_lock_internal + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.esp_pthread_set_cfg + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.esp_pthread_get_cfg + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_create + 0x00000000 0x78 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_join + 0x00000000 0x54 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_detach + 0x00000000 0x30 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_exit + 0x00000000 0x48 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_task_func + 0x00000000 0xc esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_cancel + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.sched_yield + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_self + 0x00000000 0x2c esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_once + 0x00000000 0x18 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutex_init + 0x00000000 0xc esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutex_init_if_static + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutex_destroy + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutex_lock + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutex_timedlock + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutex_trylock + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutex_unlock + 0x00000000 0x20 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutexattr_init + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_attr_init + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_attr_destroy + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + .data 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + .bss 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_list_find_item + 0x00000000 0x22 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_get_handle_by_desc + 0x00000000 0xe esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_get_desc_by_handle + 0x00000000 0xf esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_delete + 0x00000000 0x21 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_lock_internal + 0x00000000 0x53 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.esp_pthread_set_cfg + 0x00000000 0x4a esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.esp_pthread_get_cfg + 0x00000000 0x32 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.esp_pthread_get_default_config + 0x00000000 0x20 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_create.str1.1 + 0x00000000 0xf1 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_create + 0x00000000 0x1a1 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_join + 0x00000000 0x11b esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_detach + 0x00000000 0x79 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_exit.str1.1 + 0x00000000 0x34 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_exit + 0x00000000 0xb5 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_task_func + 0x00000000 0x32 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_cancel.str1.1 + 0x00000000 0x2b esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_cancel + 0x00000000 0x22 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.sched_yield + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_self.str1.1 + 0x00000000 0x2d esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_self + 0x00000000 0x56 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_equal + 0x00000000 0xf esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_once.str1.1 + 0x00000000 0x2a esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_once + 0x00000000 0x53 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_init + 0x00000000 0x4f esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_init_if_static + 0x00000000 0x37 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_mutex_destroy.str1.1 + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_destroy + 0x00000000 0x71 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_lock + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_timedlock + 0x00000000 0x8c esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_trylock + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_mutex_unlock.str1.1 + 0x00000000 0x23 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_unlock + 0x00000000 0x64 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutexattr_init + 0x00000000 0x22 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutexattr_destroy + 0x00000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutexattr_gettype + 0x00000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutexattr_settype + 0x00000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_init + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_destroy + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_getstacksize + 0x00000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_setstacksize + 0x00000000 0x16 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_getdetachstate + 0x00000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_setdetachstate + 0x00000000 0x17 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$0 + 0x00000000 0x15 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$1 + 0x00000000 0x16 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__FUNCTION__$2 + 0x00000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$3 + 0x00000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__FUNCTION__$4 + 0x00000000 0xf esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$5 + 0x00000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$6 + 0x00000000 0xf esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$7 + 0x00000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$8 + 0x00000000 0xf esp-idf/pthread/libpthread.a(pthread.c.obj) + .bss.s_threads_list + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .data.pthread_lazy_init_lock + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .xt.lit 0x00000000 0xd0 esp-idf/pthread/libpthread.a(pthread.c.obj) + .xt.prop 0x00000000 0xb70 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_condattr_init + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_condattr_destroy + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_condattr_getpshared + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_condattr_setpshared + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_condattr_getclock + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_condattr_setclock + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_cond_init + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.s_check_and_init_if_static + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_cond_signal + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_cond_broadcast + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_cond_timedwait + 0x00000000 0x38 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_cond_wait + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_cond_destroy + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .data 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .bss 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .rodata.pthread_condattr_init.str1.1 + 0x00000000 0x40 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_condattr_init + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_condattr_destroy + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_condattr_getpshared + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_condattr_setpshared + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_condattr_getclock + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .rodata.pthread_condattr_setclock.str1.1 + 0x00000000 0x2f esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_condattr_setclock + 0x00000000 0x22 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_cond_init + 0x00000000 0x2e esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.s_check_and_init_if_static + 0x00000000 0x3b esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_cond_signal + 0x00000000 0x38 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_cond_broadcast + 0x00000000 0x3d esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_cond_timedwait + 0x00000000 0x12e esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_cond_wait + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_cond_destroy + 0x00000000 0x3c esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .rodata.__func__$0 + 0x00000000 0x1a esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .rodata.__FUNCTION__$1 + 0x00000000 0x1a esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .rodata.__FUNCTION__$2 + 0x00000000 0x1c esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .rodata.__FUNCTION__$3 + 0x00000000 0x1c esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .rodata.__FUNCTION__$4 + 0x00000000 0x19 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .rodata.__FUNCTION__$5 + 0x00000000 0x16 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .xt.lit 0x00000000 0x68 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .xt.prop 0x00000000 0x36c esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_internal_local_storage_destructor_callback + 0x00000000 0xc esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .text 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .data 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .bss 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .text.pthread_internal_local_storage_destructor_callback + 0x00000000 0x2a esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .xt.prop 0x00000000 0x324 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .literal.pthread_rwlock_init + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.checkrw_lock + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.pthread_rwlock_destroy + 0x00000000 0x18 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.pthread_rwlock_rdlock + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.pthread_rwlock_tryrdlock + 0x00000000 0xc esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.pthread_rwlock_wrlock + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.pthread_rwlock_trywrlock + 0x00000000 0xc esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.pthread_rwlock_unlock + 0x00000000 0x20 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .data 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .bss 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_init + 0x00000000 0x5d esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.checkrw_lock + 0x00000000 0x4b esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_destroy + 0x00000000 0x5c esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_rdlock + 0x00000000 0x4e esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_tryrdlock + 0x00000000 0x3f esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_wrlock + 0x00000000 0x5f esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_trywrlock + 0x00000000 0x49 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .rodata.pthread_rwlock_unlock.str1.1 + 0x00000000 0x6e esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_unlock + 0x00000000 0x66 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .rodata.__func__$0 + 0x00000000 0x16 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .xt.prop 0x00000000 0x33c esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.sem_destroy + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .literal.sem_init + 0x00000000 0xc esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .literal.sem_post + 0x00000000 0xc esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .literal.sem_timedwait + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .literal.sem_trywait + 0x00000000 0xc esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .literal.sem_wait + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .literal.sem_getvalue + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .data 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .bss 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text.sem_destroy + 0x00000000 0x23 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text.sem_init + 0x00000000 0x38 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text.sem_post + 0x00000000 0x32 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text.sem_timedwait + 0x00000000 0xaa esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text.sem_trywait + 0x00000000 0x2d esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text.sem_wait + 0x00000000 0x23 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text.sem_getvalue + 0x00000000 0x26 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .xt.prop 0x00000000 0x2b8 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .literal.__ubsan_maybe_debugbreak + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_default_handler$isra$0 + 0x00000000 0x10 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_type_mismatch + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_type_mismatch_v1 + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_add_overflow + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_sub_overflow + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_mul_overflow + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_negate_overflow + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_divrem_overflow + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_shift_out_of_bounds + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_out_of_bounds + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_missing_return + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_vla_bound_not_positive + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_load_invalid_value + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_nonnull_arg + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_nonnull_return + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_builtin_unreachable + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_pointer_overflow + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_invalid_builtin + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_maybe_debugbreak + 0x00000000 0x11 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__ubsan_default_handler$isra$0.str1.1 + 0x00000000 0x1c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_default_handler$isra$0 + 0x00000000 0x31 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_type_mismatch + 0x00000000 0x12 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_type_mismatch_v1 + 0x00000000 0x12 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_add_overflow + 0x00000000 0x12 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_sub_overflow + 0x00000000 0x12 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_mul_overflow + 0x00000000 0x12 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_negate_overflow + 0x00000000 0x12 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_divrem_overflow + 0x00000000 0x12 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_shift_out_of_bounds + 0x00000000 0x17 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_out_of_bounds + 0x00000000 0x12 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_missing_return + 0x00000000 0x12 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_vla_bound_not_positive + 0x00000000 0x12 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_load_invalid_value + 0x00000000 0x12 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_nonnull_arg + 0x00000000 0x12 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_nonnull_return + 0x00000000 0x12 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_builtin_unreachable + 0x00000000 0x12 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_pointer_overflow + 0x00000000 0x12 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_invalid_builtin + 0x00000000 0x12 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$0 + 0x00000000 0x1f esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$1 + 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$2 + 0x00000000 0x23 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$3 + 0x00000000 0x1e esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$4 + 0x00000000 0x1b esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$5 + 0x00000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$6 + 0x00000000 0x26 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$7 + 0x00000000 0x1e esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$8 + 0x00000000 0x1d esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$9 + 0x00000000 0x23 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$10 + 0x00000000 0x1f esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$11 + 0x00000000 0x1f esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$12 + 0x00000000 0x1c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$13 + 0x00000000 0x1c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$14 + 0x00000000 0x1c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$15 + 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$16 + 0x00000000 0x1d esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .xt.lit 0x00000000 0x98 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .xt.prop 0x00000000 0x300 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .xt.prop 0x00000000 0x180 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .literal.esp_get_idf_version + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .rodata.esp_get_idf_version.str1.1 + 0x00000000 0x7 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .text.esp_get_idf_version + 0x00000000 0x8 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .xt.prop 0x00000000 0x138 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .iram1.0.literal + 0x00000000 0x18 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.1.literal + 0x00000000 0x18 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.4.literal + 0x00000000 0x18 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.6.literal + 0x00000000 0x18 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.0 0x00000000 0x32 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.1 0x00000000 0x32 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.4 0x00000000 0x2f esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.6 0x00000000 0x2f esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .xt.lit 0x00000000 0x48 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .xt.prop 0x00000000 0x294 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .xt.prop 0x00000000 0x6c esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .xt.prop 0x00000000 0x24 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .data 0x00000000 0x18 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .xt.prop 0x00000000 0x78 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .literal.rtc_clk_select_rtc_slow_clk + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .text.rtc_clk_select_rtc_slow_clk + 0x00000000 0xe esp-idf/esp_system/libesp_system.a(clk.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .xt.prop 0x00000000 0x198 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .xt.prop 0x00000000 0x84 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .xt.prop 0x00000000 0xc0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .literal.panic_print_char + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .text.panic_print_char + 0x00000000 0xe esp-idf/esp_system/libesp_system.a(panic.c.obj) + .xt.lit 0x00000000 0x48 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .xt.prop 0x00000000 0x330 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .xt.prop 0x00000000 0xf0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .literal.esp_startup_start_app_other_cores_default + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .text.__cxx_eh_arena_size_get + 0x00000000 0x7 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .text.esp_startup_start_app_other_cores_default + 0x00000000 0xf esp-idf/esp_system/libesp_system.a(startup.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .xt.prop 0x00000000 0x1ec esp-idf/esp_system/libesp_system.a(startup.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .xt.prop 0x00000000 0x294 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .literal.esp_brownout_disable + 0x00000000 0x10 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .text.esp_brownout_disable + 0x00000000 0x34 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .xt.prop 0x00000000 0xb4 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .xt.prop 0x00000000 0x48 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .xt.prop 0x00000000 0x2dc esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .xt.prop 0x00000000 0x1bc esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .xt.prop 0x00000000 0x30 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .xt.prop 0x00000000 0xb4 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .literal.esp_register_freertos_idle_hook + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .literal.esp_register_freertos_tick_hook + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .literal.esp_deregister_freertos_idle_hook + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .literal.esp_deregister_freertos_tick_hook_for_cpu + 0x00000000 0x10 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .literal.esp_deregister_freertos_tick_hook + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text.esp_register_freertos_idle_hook + 0x00000000 0x15 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text.esp_register_freertos_tick_hook + 0x00000000 0x15 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text.esp_deregister_freertos_idle_hook + 0x00000000 0x2f esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text.esp_deregister_freertos_tick_hook_for_cpu + 0x00000000 0x35 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text.esp_deregister_freertos_tick_hook + 0x00000000 0x2f esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .xt.lit 0x00000000 0x50 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .xt.prop 0x00000000 0x288 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .data 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .xt.prop 0x00000000 0x3c esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .literal.efuse_hal_get_mac + 0x00000000 0x4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_get_mac + 0x00000000 0x17 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .iram1.1 0x00000000 0x7 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .iram1.3 0x00000000 0x7 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .xt.prop 0x00000000 0x120 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_get_rated_freq_mhz + 0x00000000 0x4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_set_timing + 0x00000000 0x8 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_read + 0x00000000 0x4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_clear_program_registers + 0x00000000 0x7c esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_program + 0x00000000 0x8 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_is_coding_error_in_block + 0x00000000 0x4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_get_rated_freq_mhz + 0x00000000 0x22 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_set_timing + 0x00000000 0x69 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_read + 0x00000000 0x3d esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_clear_program_registers + 0x00000000 0xff esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_program + 0x00000000 0x42 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_is_coding_error_in_block + 0x00000000 0x38 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .xt.prop 0x00000000 0x1bc esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.wdt_hal_deinit + 0x00000000 0x4 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .text.wdt_hal_deinit + 0x00000000 0xb0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .xt.prop 0x00000000 0x384 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .literal.uart_hal_txfifo_rst + 0x00000000 0x8 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .literal.uart_hal_tx_break + 0x00000000 0x4 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .literal.uart_hal_read_rxfifo + 0x00000000 0x14 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .text.uart_hal_txfifo_rst + 0x00000000 0x2f esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .text.uart_hal_tx_break + 0x00000000 0x56 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .text.uart_hal_read_rxfifo + 0x00000000 0xb8 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .xt.prop 0x00000000 0x180 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .xt.prop 0x00000000 0x30 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .literal.esp_log_set_vprintf + 0x00000000 0xc esp-idf/log/liblog.a(log.c.obj) + .literal.esp_log_level_get + 0x00000000 0x8 esp-idf/log/liblog.a(log.c.obj) + .text 0x00000000 0x0 esp-idf/log/liblog.a(log.c.obj) + .data 0x00000000 0x0 esp-idf/log/liblog.a(log.c.obj) + .bss 0x00000000 0x0 esp-idf/log/liblog.a(log.c.obj) + .text.esp_log_set_vprintf + 0x00000000 0x1a esp-idf/log/liblog.a(log.c.obj) + .text.esp_log_level_get + 0x00000000 0x15 esp-idf/log/liblog.a(log.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/log/liblog.a(log.c.obj) + .xt.prop 0x00000000 0x318 esp-idf/log/liblog.a(log.c.obj) + .literal.esp_log_system_timestamp + 0x00000000 0x38 esp-idf/log/liblog.a(log_freertos.c.obj) + .text 0x00000000 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + .data 0x00000000 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + .bss 0x00000000 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + .rodata.esp_log_system_timestamp.str1.1 + 0x00000000 0x15 esp-idf/log/liblog.a(log_freertos.c.obj) + .text.esp_log_system_timestamp + 0x00000000 0xb7 esp-idf/log/liblog.a(log_freertos.c.obj) + .bss.bufferLock$1 + 0x00000000 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) + .bss.buffer$2 0x00000000 0x12 esp-idf/log/liblog.a(log_freertos.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/log/liblog.a(log_freertos.c.obj) + .xt.prop 0x00000000 0x1f8 esp-idf/log/liblog.a(log_freertos.c.obj) + .literal.heap_caps_register_failed_alloc_callback + 0x00000000 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_malloc_extmem_enable + 0x00000000 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.5.literal + 0x00000000 0xc esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.6.literal + 0x00000000 0xc esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_get_total_size + 0x00000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_print_heap_info + 0x00000000 0x38 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_check_integrity + 0x00000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_check_integrity_all + 0x00000000 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_check_integrity_addr + 0x00000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_dump + 0x00000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_dump_all + 0x00000000 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_get_allocated_size + 0x00000000 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.9.literal + 0x00000000 0x10 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.10.literal + 0x00000000 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_aligned_calloc + 0x00000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + .data 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + .bss 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_register_failed_alloc_callback + 0x00000000 0x13 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_malloc_extmem_enable + 0x00000000 0xa esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.5 0x00000000 0x80 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.6 0x00000000 0x80 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_get_total_size + 0x00000000 0x2a esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.heap_caps_print_heap_info.str1.1 + 0x00000000 0xed esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_print_heap_info + 0x00000000 0x7e esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_check_integrity + 0x00000000 0x3a esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_check_integrity_all + 0x00000000 0x15 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_check_integrity_addr + 0x00000000 0x30 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_dump + 0x00000000 0x2f esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_dump_all + 0x00000000 0x10 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.heap_caps_get_allocated_size.str1.1 + 0x00000000 0x27 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_get_allocated_size + 0x00000000 0x3b esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.9 0x00000000 0x57 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.10 0x00000000 0xe esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_aligned_calloc + 0x00000000 0x2a esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$0 + 0x00000000 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$1 + 0x00000000 0x1d esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$4 + 0x00000000 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$5 + 0x00000000 0x19 esp-idf/heap/libheap.a(heap_caps.c.obj) + .xt.lit 0x00000000 0xd0 esp-idf/heap/libheap.a(heap_caps.c.obj) + .xt.prop 0x00000000 0x870 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_add_region_with_caps + 0x00000000 0x34 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .literal.heap_caps_add_region + 0x00000000 0x10 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .text 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .data 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .bss 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .text.heap_caps_check_add_region_allowed + 0x00000000 0x4d esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .text.heap_caps_add_region_with_caps + 0x00000000 0xd3 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .text.heap_caps_add_region + 0x00000000 0x50 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .data.registered_heaps_write_lock$0 + 0x00000000 0x8 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .xt.prop 0x00000000 0x33c esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .literal.multi_heap_dump_tlsf + 0x00000000 0x10 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_get_first_block + 0x00000000 0x14 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_get_next_block + 0x00000000 0x20 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_aligned_alloc_impl_offs + 0x00000000 0x14 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_aligned_alloc_offs + 0x00000000 0x4 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_aligned_alloc_impl + 0x00000000 0x4 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_check + 0x00000000 0x24 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_dump + 0x00000000 0x2c esp-idf/heap/libheap.a(multi_heap.c.obj) + .text 0x00000000 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .data 0x00000000 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .bss 0x00000000 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.multi_heap_dump_tlsf.str1.1 + 0x00000000 0x31 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_dump_tlsf + 0x00000000 0x1b esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_get_block_address_impl + 0x00000000 0x7 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_get_first_block + 0x00000000 0x25 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.multi_heap_get_next_block.str1.1 + 0x00000000 0x48 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_get_next_block + 0x00000000 0x46 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_is_free + 0x00000000 0xa esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_aligned_alloc_impl_offs + 0x00000000 0x77 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_aligned_alloc_offs + 0x00000000 0x15 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_aligned_alloc_impl + 0x00000000 0x15 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_check + 0x00000000 0x50 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.multi_heap_dump.str1.1 + 0x00000000 0x1c esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_dump + 0x00000000 0x4a esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$6 + 0x00000000 0x10 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$5 + 0x00000000 0x11 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$3 + 0x00000000 0xb esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$2 + 0x00000000 0x1a esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$1 + 0x00000000 0x1b esp-idf/heap/libheap.a(multi_heap.c.obj) + .xt.lit 0x00000000 0x88 esp-idf/heap/libheap.a(multi_heap.c.obj) + .xt.prop 0x00000000 0x558 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.integrity_walker + 0x00000000 0x8 esp-idf/heap/libheap.a(tlsf.c.obj) + .literal.tlsf_check + 0x00000000 0x10 esp-idf/heap/libheap.a(tlsf.c.obj) + .literal.tlsf_check_pool + 0x00000000 0x8 esp-idf/heap/libheap.a(tlsf.c.obj) + .literal.tlsf_remove_pool + 0x00000000 0x30 esp-idf/heap/libheap.a(tlsf.c.obj) + .literal.tlsf_memalign_offs + 0x00000000 0x78 esp-idf/heap/libheap.a(tlsf.c.obj) + .literal.tlsf_memalign + 0x00000000 0x4 esp-idf/heap/libheap.a(tlsf.c.obj) + .text 0x00000000 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + .data 0x00000000 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + .bss 0x00000000 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + .text.integrity_walker + 0x00000000 0x53 esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_check + 0x00000000 0x116 esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_check_pool + 0x00000000 0x1a esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_align_size + 0x00000000 0x7 esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_block_size_min + 0x00000000 0x7 esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_pool_overhead + 0x00000000 0x7 esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_remove_pool + 0x00000000 0x100 esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_destroy + 0x00000000 0x5 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.tlsf_memalign_offs.str1.1 + 0x00000000 0x88 esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_memalign_offs + 0x00000000 0x4cf esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_memalign + 0x00000000 0x15 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$7 + 0x00000000 0x13 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$10 + 0x00000000 0x13 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$13 + 0x00000000 0x9 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$16 + 0x00000000 0x11 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$17 + 0x00000000 0xa esp-idf/heap/libheap.a(tlsf.c.obj) + .xt.lit 0x00000000 0x70 esp-idf/heap/libheap.a(tlsf.c.obj) + .xt.prop 0x00000000 0xd5c esp-idf/heap/libheap.a(tlsf.c.obj) + .text 0x00000000 0x0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .data 0x00000000 0x0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .bss 0x00000000 0x0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .xt.prop 0x00000000 0x180 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .text 0x00000000 0x0 esp-idf/heap/libheap.a(memory_layout.c.obj) + .data 0x00000000 0x0 esp-idf/heap/libheap.a(memory_layout.c.obj) + .bss 0x00000000 0x0 esp-idf/heap/libheap.a(memory_layout.c.obj) + .rodata.soc_memory_type_count + 0x00000000 0x4 esp-idf/heap/libheap.a(memory_layout.c.obj) + .xt.prop 0x00000000 0x9c esp-idf/heap/libheap.a(memory_layout.c.obj) + .iram1.5.literal + 0x00000000 0x8 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .text 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .data 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .bss 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .iram1.5 0x00000000 0x4f esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .xt.prop 0x00000000 0x330 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .text 0x00000000 0x0 esp-idf/soc/libsoc.a(dport_access.c.obj) + .data 0x00000000 0x0 esp-idf/soc/libsoc.a(dport_access.c.obj) + .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(dport_access.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/soc/libsoc.a(dport_access.c.obj) + .xt.prop 0x00000000 0x60 esp-idf/soc/libsoc.a(dport_access.c.obj) + .literal.esp_cpu_reset + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .literal.esp_cpu_set_watchpoint + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text.esp_cpu_reset + 0x00000000 0x31 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text.esp_cpu_clear_breakpoint + 0x00000000 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text.esp_cpu_set_watchpoint + 0x00000000 0x69 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text.esp_cpu_clear_watchpoint + 0x00000000 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .rodata.__func__$0 + 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .xt.prop 0x00000000 0x210 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .iram1.3.literal + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .literal.esp_clk_rtc_time + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .literal.esp_clk_private_lock + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .literal.esp_clk_private_unlock + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .iram1.3 0x00000000 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .text.esp_clk_rtc_time + 0x00000000 0xf esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .text.esp_clk_private_lock + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .text.esp_clk_private_unlock + 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .xt.lit 0x00000000 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .xt.prop 0x00000000 0x234 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .literal.esp_intr_mark_shared + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .literal.esp_intr_reserve + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.1.literal + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.6.literal + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.7.literal + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .literal.intr_free_for_current_cpu + 0x00000000 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .literal.esp_intr_free + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .literal.intr_free_for_other_cpu + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .literal.esp_intr_dump + 0x00000000 0x84 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.esp_intr_mark_shared + 0x00000000 0x53 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.esp_intr_reserve + 0x00000000 0x4a esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.1 0x00000000 0x76 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.esp_intr_get_intno + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.6 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.7 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.intr_free_for_current_cpu.str1.1 + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.intr_free_for_current_cpu + 0x00000000 0xdd esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.esp_intr_free + 0x00000000 0x53 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.intr_free_for_other_cpu + 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.esp_intr_dump.str1.1 + 0x00000000 0x106 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.esp_intr_dump + 0x00000000 0x165 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.__func__$1 + 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .xt.lit 0x00000000 0xa8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .xt.prop 0x00000000 0xa5c esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .literal.periph_rcc_release_enter + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .literal.periph_rcc_release_exit + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .text.periph_rcc_release_enter + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .text.periph_rcc_release_exit + 0x00000000 0x13 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .xt.lit 0x00000000 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .xt.prop 0x00000000 0x4c8 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .literal.rtc_isr_deregister + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .text.rtc_isr_deregister + 0x00000000 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .xt.prop 0x00000000 0x204 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .literal.esp_sleep_config_gpio_isolate + 0x00000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .literal.esp_sleep_enable_gpio_switch + 0x00000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .iram1.0.literal + 0x00000000 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.esp_sleep_config_gpio_isolate.str1.1 + 0x00000000 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .text.esp_sleep_config_gpio_isolate + 0x00000000 0x62 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.esp_sleep_enable_gpio_switch.str1.1 + 0x00000000 0x5a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .text.esp_sleep_enable_gpio_switch + 0x00000000 0x5d esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.str1.1 + 0x00000000 0xae esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .iram1.0 0x00000000 0x185 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.__func__$2 + 0x00000000 0x1f esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .xt.prop 0x00000000 0x1b0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .literal.unlikely.spi_timing_get_flash_timing_param + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .text.s_register_config_driver + 0x00000000 0x5 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .text.mspi_timing_flash_tuning + 0x00000000 0x5 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .text.mspi_timing_psram_tuning + 0x00000000 0x5 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .text.mspi_timing_enter_low_speed_mode + 0x00000000 0x5 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .text.mspi_timing_enter_high_speed_mode + 0x00000000 0x5 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .text.spi_timing_is_tuned + 0x00000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .text.unlikely.spi_timing_get_flash_timing_param + 0x00000000 0x9 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .text.mspi_timing_set_pin_drive_strength + 0x00000000 0x5 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .xt.prop 0x00000000 0x144 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .literal.rtc_clk_32k_enable_external + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_32k_bootstrap + 0x00000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_32k_enabled + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_8m_enabled + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_apll_enable + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_apll_coeff_set + 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_fast_src_get + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_apll_coeff_calc + 0x00000000 0x94 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_xtal_freq_update + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_set_xtal + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_set_config_fast + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_apb_freq_get + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_dig_8m_enabled + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_32k_enable_external + 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_32k_bootstrap + 0x00000000 0x1f3 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_32k_enabled + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_8m_enabled + 0x00000000 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_apll_enable + 0x00000000 0x80 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_apll_coeff_set + 0x00000000 0xe0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_fast_src_get + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_apll_coeff_calc + 0x00000000 0x239 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_xtal_freq_update + 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_set_xtal + 0x00000000 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_set_config_fast + 0x00000000 0x39 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_apb_freq_get + 0x00000000 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_dig_8m_enabled + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .xt.lit 0x00000000 0x100 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .xt.prop 0x00000000 0x99c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_vddsdio_get_config + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .literal.rtc_vddsdio_set_config + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .text.rtc_vddsdio_get_config + 0x00000000 0x97 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .text.rtc_vddsdio_set_config + 0x00000000 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .xt.prop 0x00000000 0xf0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .literal.rtc_clk_cal_ratio + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .literal.rtc_time_us_to_slowclk + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_clk_cal_ratio + 0x00000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.rtc_time_us_to_slowclk.str1.1 + 0x00000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_time_us_to_slowclk + 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_time_slowclk_to_us + 0x00000000 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.__func__$0 + 0x00000000 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.__func__$3 + 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .xt.prop 0x00000000 0x354 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .xt.prop 0x00000000 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .literal.sar_periph_ctrl_power_enable + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_power_disable + 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_adc_oneshot_power_acquire + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_adc_oneshot_power_release + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_adc_continuous_power_acquire + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_adc_continuous_power_release + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_power_enable + 0x00000000 0x3b esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_power_disable + 0x00000000 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_adc_oneshot_power_acquire + 0x00000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_adc_oneshot_power_release + 0x00000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_adc_continuous_power_acquire + 0x00000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_adc_continuous_power_release + 0x00000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .xt.prop 0x00000000 0x228 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .xt.prop 0x00000000 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .iram1.1.literal + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .iram1.4.literal + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .iram1.5.literal + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .iram1.6.literal + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .literal.regi2c_saradc_enable + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .literal.regi2c_saradc_disable + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .iram1.1 0x00000000 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .iram1.4 0x00000000 0x4a esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .iram1.5 0x00000000 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .iram1.6 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .text.regi2c_saradc_enable + 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .rodata.regi2c_saradc_disable.str1.1 + 0x00000000 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .text.regi2c_saradc_disable + 0x00000000 0x41 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .bss.s_i2c_saradc_enable_cnt + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .rodata.str1.1 + 0x00000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .dram1.0 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .xt.prop 0x00000000 0x1b0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .xt.prop 0x00000000 0xf0 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .literal.xQueueGetMutexHolderFromISR + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueCreateCountingSemaphoreStatic + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueuePeek + 0x00000000 0x48 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueuePeekFromISR + 0x00000000 0x24 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.uxQueueSpacesAvailable + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.uxQueueMessagesWaitingFromISR + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueIsQueueEmptyFromISR + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueIsQueueFullFromISR + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.vQueueWaitForMessageRestricted + 0x00000000 0xc esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueCreateSet + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueAddToSet + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueRemoveFromSet + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueSelectFromSet + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueSelectFromSetFromISR + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueGetMutexHolderFromISR + 0x00000000 0x23 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueCreateCountingSemaphoreStatic + 0x00000000 0x36 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueuePeek + 0x00000000 0xe7 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueuePeekFromISR.str1.1 + 0x00000000 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueuePeekFromISR + 0x00000000 0x70 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.uxQueueSpacesAvailable + 0x00000000 0x3c esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.uxQueueMessagesWaitingFromISR + 0x00000000 0x20 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueIsQueueEmptyFromISR + 0x00000000 0x28 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueIsQueueFullFromISR + 0x00000000 0x2d esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.vQueueWaitForMessageRestricted + 0x00000000 0x2e esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueCreateSet + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueAddToSet + 0x00000000 0x2f esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueRemoveFromSet + 0x00000000 0x30 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueSelectFromSet + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueSelectFromSetFromISR + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$0 + 0x00000000 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$1 + 0x00000000 0x1a esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$3 + 0x00000000 0x1e esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$4 + 0x00000000 0x17 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$6 + 0x00000000 0x12 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$8 + 0x00000000 0xb esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$16 + 0x00000000 0x24 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$19 + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(queue.c.obj) + .xt.lit 0x00000000 0x118 esp-idf/freertos/libfreertos.a(queue.c.obj) + .xt.prop 0x00000000 0xdb0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.prvSearchForNameWithinSingleList + 0x00000000 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.prvTaskIsTaskSuspended + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.eTaskGetState + 0x00000000 0x30 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskResume + 0x00000000 0x38 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskResumeFromISR + 0x00000000 0x40 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskEndScheduler + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskGetNumberOfTasks + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGetHandle + 0x00000000 0x4c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskAbortDelay + 0x00000000 0x38 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskPlaceOnEventListRestricted + 0x00000000 0x24 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskSetTimeOutState + 0x00000000 0x24 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskMissedYield + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskPriorityGet + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskPriorityGetFromISR + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGetStaticBuffers + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskSetThreadLocalStoragePointer + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskGetStackHighWaterMark + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskGetStackHighWaterMark2 + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskDelayUntil + 0x00000000 0x34 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskCatchUpTicks + 0x00000000 0x2c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGenericNotifyWait + 0x00000000 0x30 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGenericNotifyFromISR + 0x00000000 0x44 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGenericNotifyStateClear + 0x00000000 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.ulTaskGenericNotifyValueClear + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGetIdleTaskHandle + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.pxTaskGetStackStart + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.prvTaskPriorityRaise + 0x00000000 0x2c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.prvTaskPriorityRestore + 0x00000000 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGetNext + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskGetSnapshotAll + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.pvTaskGetCurrentTCBForCore + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvSearchForNameWithinSingleList + 0x00000000 0x8b esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.prvTaskIsTaskSuspended.str1.1 + 0x00000000 0x6 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvTaskIsTaskSuspended + 0x00000000 0x4b esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.eTaskGetState + 0x00000000 0xa3 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskResume.str1.1 + 0x00000000 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskResume + 0x00000000 0xca esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskResumeFromISR + 0x00000000 0xe8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskEndScheduler + 0x00000000 0x2c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskGetNumberOfTasks + 0x00000000 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskGetHandle.str1.1 + 0x00000000 0x1d esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGetHandle + 0x00000000 0xa8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskAbortDelay + 0x00000000 0xdb esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskPlaceOnEventListRestricted + 0x00000000 0xc0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskSetTimeOutState + 0x00000000 0x43 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskMissedYield + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskPriorityGet + 0x00000000 0x26 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskPriorityGetFromISR + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskGetStaticBuffers.str1.1 + 0x00000000 0x3c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGetStaticBuffers + 0x00000000 0x54 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskSetThreadLocalStoragePointer.str1.1 + 0x00000000 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskSetThreadLocalStoragePointer + 0x00000000 0x30 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskGetStackHighWaterMark + 0x00000000 0x23 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskGetStackHighWaterMark2 + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskDelayUntil.str1.1 + 0x00000000 0x2b esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskDelayUntil + 0x00000000 0x95 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskCatchUpTicks + 0x00000000 0x53 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGenericNotifyWait + 0x00000000 0x108 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGenericNotifyFromISR + 0x00000000 0x1dd esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskGenericNotifyStateClear.str1.1 + 0x00000000 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGenericNotifyStateClear + 0x00000000 0x54 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.ulTaskGenericNotifyValueClear + 0x00000000 0x3f esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGetIdleTaskHandle + 0x00000000 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.pxTaskGetStackStart + 0x00000000 0x11 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.prvTaskPriorityRaise.str1.1 + 0x00000000 0x1b esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvTaskPriorityRaise + 0x00000000 0xcf esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvTaskPriorityRestore + 0x00000000 0xcf esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGetNext + 0x00000000 0x96 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskGetSnapshotAll + 0x00000000 0x37 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.pvTaskGetCurrentTCBForCore + 0x00000000 0x25 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$0 + 0x00000000 0x1b esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$1 + 0x00000000 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$8 + 0x00000000 0x1d esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$10 + 0x00000000 0x1a esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$12 + 0x00000000 0x17 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$16 + 0x00000000 0x22 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$18 + 0x00000000 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$21 + 0x00000000 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$26 + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$27 + 0x00000000 0x12 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$28 + 0x00000000 0x16 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$29 + 0x00000000 0xf esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$33 + 0x00000000 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$34 + 0x00000000 0x17 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$35 + 0x00000000 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$39 + 0x00000000 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$41 + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.non_ready_task_lists + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .xt.lit 0x00000000 0x270 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .xt.prop 0x00000000 0x1e9c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.unlikely.vPortEndScheduler + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + .literal.vPortAssertIfInISR + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(port.c.obj) + .literal.xPortEnterCriticalTimeoutCompliance + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(port.c.obj) + .literal.vPortExitCriticalCompliance + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(port.c.obj) + .literal.vPortSetStackWatchpoint + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.unlikely.vPortEndScheduler + 0x00000000 0x9 esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.vPortAssertIfInISR.str1.1 + 0x00000000 0x19 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.vPortAssertIfInISR + 0x00000000 0x1f esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.xPortEnterCriticalTimeoutCompliance.str1.1 + 0x00000000 0x33 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.xPortEnterCriticalTimeoutCompliance + 0x00000000 0x28 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.vPortExitCriticalCompliance + 0x00000000 0x27 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.xPortGetTickRateHz + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.vPortSetStackWatchpoint + 0x00000000 0x1a esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.__func__$3 + 0x00000000 0x13 esp-idf/freertos/libfreertos.a(port.c.obj) + .xt.lit 0x00000000 0x70 esp-idf/freertos/libfreertos.a(port.c.obj) + .xt.prop 0x00000000 0x498 esp-idf/freertos/libfreertos.a(port.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .xt.lit 0x00000000 0x8 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .xt.prop 0x00000000 0x180 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .literal.xt_clock_freq + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .text.xt_clock_freq + 0x00000000 0xd esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .xt.prop 0x00000000 0x6c esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .literal.xPortGetFreeHeapSize + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .literal.xPortGetMinimumEverFreeHeapSize + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .text.xPortGetFreeHeapSize + 0x00000000 0x12 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .text.xPortGetMinimumEverFreeHeapSize + 0x00000000 0x12 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .xt.prop 0x00000000 0x168 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .literal.vApplicationGetTimerTaskMemory + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(port_common.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .text.vApplicationGetTimerTaskMemory + 0x00000000 0x45 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .rodata.__func__$0 + 0x00000000 0x1f esp-idf/freertos/libfreertos.a(port_common.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .xt.prop 0x00000000 0xa8 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .xt.prop 0x00000000 0x84 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) + .xt.prop 0x00000000 0xe4 esp-idf/freertos/libfreertos.a(list.c.obj) + .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(abort.c.obj) + .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(abort.c.obj) + .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(abort.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/newlib/libnewlib.a(abort.c.obj) + .xt.prop 0x00000000 0x30 esp-idf/newlib/libnewlib.a(abort.c.obj) + .literal.__assert + 0x00000000 0x4 esp-idf/newlib/libnewlib.a(assert.c.obj) + .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(assert.c.obj) + .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(assert.c.obj) + .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(assert.c.obj) + .text.__assert + 0x00000000 0x11 esp-idf/newlib/libnewlib.a(assert.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/newlib/libnewlib.a(assert.c.obj) + .xt.prop 0x00000000 0x90 esp-idf/newlib/libnewlib.a(assert.c.obj) + .literal.memalign + 0x00000000 0x4 esp-idf/newlib/libnewlib.a(heap.c.obj) + .literal.aligned_alloc + 0x00000000 0x4 esp-idf/newlib/libnewlib.a(heap.c.obj) + .literal.posix_memalign + 0x00000000 0x4 esp-idf/newlib/libnewlib.a(heap.c.obj) + .literal.mallinfo + 0x00000000 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.memalign + 0x00000000 0x16 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.aligned_alloc + 0x00000000 0x16 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.posix_memalign + 0x00000000 0x27 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.malloc_trim + 0x00000000 0x7 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.malloc_usable_size + 0x00000000 0x7 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.malloc_stats + 0x00000000 0x5 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.mallopt 0x00000000 0x7 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.mallinfo + 0x00000000 0x12 esp-idf/newlib/libnewlib.a(heap.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/newlib/libnewlib.a(heap.c.obj) + .xt.prop 0x00000000 0x330 esp-idf/newlib/libnewlib.a(heap.c.obj) + .iram1.12.literal + 0x00000000 0x4 esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.14.literal + 0x00000000 0x4 esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.17.literal + 0x00000000 0x8 esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.19.literal + 0x00000000 0x8 esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.20.literal + 0x00000000 0x8 esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.21.literal + 0x00000000 0x8 esp-idf/newlib/libnewlib.a(locks.c.obj) + .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.12 0x00000000 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.14 0x00000000 0xf esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.17 0x00000000 0x17 esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.19 0x00000000 0x19 esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.20 0x00000000 0x19 esp-idf/newlib/libnewlib.a(locks.c.obj) + .iram1.21 0x00000000 0x17 esp-idf/newlib/libnewlib.a(locks.c.obj) + .xt.lit 0x00000000 0xc0 esp-idf/newlib/libnewlib.a(locks.c.obj) + .xt.prop 0x00000000 0x5ac esp-idf/newlib/libnewlib.a(locks.c.obj) + .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .text.pthread_sigmask + 0x00000000 0x7 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .text.sigfillset + 0x00000000 0xd esp-idf/newlib/libnewlib.a(pthread.c.obj) + .xt.prop 0x00000000 0x9c esp-idf/newlib/libnewlib.a(pthread.c.obj) + .literal.esp_reent_cleanup + 0x00000000 0x10 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .text.esp_reent_cleanup + 0x00000000 0x63 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .xt.prop 0x00000000 0xa8 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .xt.prop 0x00000000 0x114 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .literal._write_r_console + 0x00000000 0x4 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .literal._read_r_console + 0x00000000 0x8 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .literal._fstat_r_console + 0x00000000 0x4 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .literal._fsync_console + 0x00000000 0x8 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .literal.system + 0x00000000 0x4 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .literal.fcntl + 0x00000000 0x8 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text._write_r_console + 0x00000000 0x29 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text._read_r_console + 0x00000000 0x32 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text._fstat_r_console + 0x00000000 0x29 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text._fsync_console + 0x00000000 0x23 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text.system 0x00000000 0x11 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text.fcntl 0x00000000 0x33 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .xt.prop 0x00000000 0x210 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .literal.adjtime + 0x00000000 0x38 esp-idf/newlib/libnewlib.a(time.c.obj) + .literal.clock_settime + 0x00000000 0xc esp-idf/newlib/libnewlib.a(time.c.obj) + .literal.clock_gettime + 0x00000000 0x18 esp-idf/newlib/libnewlib.a(time.c.obj) + .literal.clock_getres + 0x00000000 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + .text.adjtime 0x00000000 0xf4 esp-idf/newlib/libnewlib.a(time.c.obj) + .text.clock_settime + 0x00000000 0x3e esp-idf/newlib/libnewlib.a(time.c.obj) + .text.clock_gettime + 0x00000000 0x78 esp-idf/newlib/libnewlib.a(time.c.obj) + .text.clock_getres + 0x00000000 0x27 esp-idf/newlib/libnewlib.a(time.c.obj) + .xt.lit 0x00000000 0x60 esp-idf/newlib/libnewlib.a(time.c.obj) + .xt.prop 0x00000000 0x48c esp-idf/newlib/libnewlib.a(time.c.obj) + .literal.esp_time_impl_get_time + 0x00000000 0x4 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .text.esp_time_impl_get_time + 0x00000000 0xf esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .xt.prop 0x00000000 0x1a4 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .literal._ZL20signal_waiting_tasksv + 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .literal.__cxa_guard_acquire + 0x00000000 0x54 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .literal.__cxa_guard_release + 0x00000000 0x28 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .literal.__cxa_guard_abort + 0x00000000 0x2c esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .data 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .bss 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text._ZL20signal_waiting_tasksv + 0x00000000 0x22 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata.__cxa_guard_acquire.str1.1 + 0x00000000 0x7b esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text.__cxa_guard_acquire + 0x00000000 0x134 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata.__cxa_guard_release.str1.1 + 0x00000000 0x6e esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text.__cxa_guard_release + 0x00000000 0x76 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata.__cxa_guard_abort.str1.1 + 0x00000000 0xa1 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text.__cxa_guard_abort + 0x00000000 0x82 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .bss._ZL31s_static_init_max_waiting_count + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .bss._ZL27s_static_init_waiting_count + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .data._ZL15s_init_spinlock + 0x00000000 0x8 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .bss._ZL22s_static_init_wait_sem + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .bss._ZL19s_static_init_mutex + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .xt.lit 0x00000000 0x20 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .xt.prop 0x00000000 0x24c esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .iram1.0.literal + 0x00000000 0x20 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .literal.esp_timer_deinit + 0x00000000 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .literal.esp_timer_dump + 0x00000000 0x44 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.11.literal + 0x00000000 0xc esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.12.literal + 0x00000000 0xc esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.13.literal + 0x00000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.14.literal + 0x00000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .data 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.0 0x00000000 0xd0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text.esp_timer_deinit + 0x00000000 0x27 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .rodata.esp_timer_dump.str1.1 + 0x00000000 0x54 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text.esp_timer_dump + 0x00000000 0xc4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.11 0x00000000 0x3e esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.12 0x00000000 0x49 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.13 0x00000000 0x42 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.14 0x00000000 0x52 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.15 0x00000000 0x1a esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .xt.lit 0x00000000 0xb0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .xt.prop 0x00000000 0x7ec esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .data 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .iram1.1 0x00000000 0x8 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .xt.prop 0x00000000 0xc0 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .literal.esp_timer_impl_lock + 0x00000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .literal.esp_timer_impl_unlock + 0x00000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .iram1.0.literal + 0x00000000 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .text 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .data 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .text.esp_timer_impl_lock + 0x00000000 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .text.esp_timer_impl_unlock + 0x00000000 0xe esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .iram1.0 0x00000000 0x12 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .xt.prop 0x00000000 0xcc esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .literal.esp_timer_impl_set + 0x00000000 0x18 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .literal.esp_timer_impl_advance + 0x00000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .literal.esp_timer_impl_deinit + 0x00000000 0x28 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .literal.esp_timer_impl_get_alarm_reg + 0x00000000 0x1c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .text 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .data 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .text.esp_timer_impl_set + 0x00000000 0x3b esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .text.esp_timer_impl_advance + 0x00000000 0x1e esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .text.esp_timer_impl_deinit + 0x00000000 0x72 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .text.esp_timer_impl_get_alarm_reg + 0x00000000 0x37 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .xt.prop 0x00000000 0x318 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .iram1.0.literal + 0x00000000 0x4 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .iram1.1.literal + 0x00000000 0x4 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .literal.phy_set_pwdet_power + 0x00000000 0xc esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .literal.phy_set_tsens_power + 0x00000000 0xc esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .literal.phy_get_tsens_value + 0x00000000 0x4 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .text 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .data 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .iram1.0 0x00000000 0xb esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .iram1.1 0x00000000 0xb esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .text.phy_set_pwdet_power + 0x00000000 0x25 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .text.phy_set_tsens_power + 0x00000000 0x25 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .text.phy_get_tsens_value + 0x00000000 0x10 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .bss.s_wifi_tsens_xpd_flag + 0x00000000 0x1 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .bss.s_wifi_pwdet_xpd_flag + 0x00000000 0x1 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .xt.prop 0x00000000 0x1b0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .literal.set_global_fd_sets + 0x00000000 0x10 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_register_with_id + 0x00000000 0x8 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_unregister_with_id + 0x00000000 0x18 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_unregister + 0x00000000 0x14 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_register_fd_with_local_fd + 0x00000000 0x14 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_register_fd + 0x00000000 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_unregister_fd + 0x00000000 0x14 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_set_readonly_flag + 0x00000000 0x10 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.call_end_selects + 0x00000000 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_pread + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_pwrite + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_fcntl_r + 0x00000000 0x8 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_ioctl + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_fsync + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_utime + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_opendir + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_readdir + 0x00000000 0x8 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_readdir_r + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_telldir + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_seekdir + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_rewinddir + 0x00000000 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_closedir + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_mkdir + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_rmdir + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_access + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_truncate + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_ftruncate + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_select + 0x00000000 0x8c esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.tcgetattr + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.tcsetattr + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.tcdrain + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.tcflush + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.tcflow + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.tcgetsid + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.tcsendbreak + 0x00000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .text 0x00000000 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .data 0x00000000 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .bss 0x00000000 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_safe_fd_isset + 0x00000000 0x29 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.set_global_fd_sets + 0x00000000 0xcc esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_register_with_id + 0x00000000 0x22 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_unregister_with_id + 0x00000000 0x6a esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_unregister + 0x00000000 0x51 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_register_fd_with_local_fd + 0x00000000 0x82 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_register_fd + 0x00000000 0x15 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_unregister_fd + 0x00000000 0x58 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_set_readonly_flag + 0x00000000 0x59 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.call_end_selects + 0x00000000 0x2e esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_pread + 0x00000000 0x5b esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_pwrite + 0x00000000 0x5b esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_fcntl_r + 0x00000000 0x50 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_ioctl + 0x00000000 0x73 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_fsync + 0x00000000 0x51 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_utime + 0x00000000 0x4e esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_opendir + 0x00000000 0x53 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_readdir + 0x00000000 0x3e esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_readdir_r + 0x00000000 0x50 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_telldir + 0x00000000 0x49 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_seekdir + 0x00000000 0x4b esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_rewinddir + 0x00000000 0xf esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_closedir + 0x00000000 0x49 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_mkdir + 0x00000000 0x5a esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_rmdir + 0x00000000 0x57 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_access + 0x00000000 0x4e esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_truncate + 0x00000000 0x5a esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_ftruncate + 0x00000000 0x5c esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_select + 0x00000000 0x3a7 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcgetattr + 0x00000000 0x54 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcsetattr + 0x00000000 0x5b esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcdrain 0x00000000 0x51 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcflush 0x00000000 0x54 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcflow 0x00000000 0x54 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcgetsid + 0x00000000 0x51 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcsendbreak + 0x00000000 0x54 esp-idf/vfs/libvfs.a(vfs.c.obj) + .xt.lit 0x00000000 0x1b8 esp-idf/vfs/libvfs.a(vfs.c.obj) + .xt.prop 0x00000000 0x1a70 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text 0x00000000 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .data 0x00000000 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .bss 0x00000000 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .xt.lit 0x00000000 0x80 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .xt.prop 0x00000000 0x348 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .literal.uart_rx_char_via_driver + 0x00000000 0x8 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .literal.uart_tx_char_via_driver + 0x00000000 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .literal.esp_vfs_dev_uart_register + 0x00000000 0x1c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .literal.esp_vfs_dev_uart_port_set_rx_line_endings + 0x00000000 0x8 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .literal.esp_vfs_dev_uart_port_set_tx_line_endings + 0x00000000 0x8 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .literal.esp_vfs_dev_uart_set_rx_line_endings + 0x00000000 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .literal.esp_vfs_dev_uart_set_tx_line_endings + 0x00000000 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .literal.esp_vfs_dev_uart_use_nonblocking + 0x00000000 0x1c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .literal.esp_vfs_dev_uart_use_driver + 0x00000000 0x1c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text 0x00000000 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .data 0x00000000 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .bss 0x00000000 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.uart_rx_char_via_driver + 0x00000000 0x26 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.uart_tx_char_via_driver + 0x00000000 0x14 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .rodata.esp_vfs_dev_uart_register.str1.1 + 0x00000000 0x53 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.esp_vfs_dev_uart_register + 0x00000000 0x27 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.esp_vfs_dev_uart_port_set_rx_line_endings + 0x00000000 0x23 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.esp_vfs_dev_uart_port_set_tx_line_endings + 0x00000000 0x23 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.esp_vfs_dev_uart_set_rx_line_endings + 0x00000000 0xf esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.esp_vfs_dev_uart_set_tx_line_endings + 0x00000000 0xf esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.esp_vfs_dev_uart_use_nonblocking + 0x00000000 0x3c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.esp_vfs_dev_uart_use_driver + 0x00000000 0x3c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .rodata.__func__$0 + 0x00000000 0x1a esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .xt.lit 0x00000000 0xe8 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .xt.prop 0x00000000 0x10ec esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .literal.nvs_sec_provider_deregister + 0x00000000 0x8 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .text 0x00000000 0x0 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .data 0x00000000 0x0 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .bss 0x00000000 0x0 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .text.nvs_sec_provider_deregister + 0x00000000 0x20 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .xt.prop 0x00000000 0x6c esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .text 0x00000000 0x0 esp-idf/main/libmain.a(mesh_main.c.obj) + .data 0x00000000 0x0 esp-idf/main/libmain.a(mesh_main.c.obj) + .bss 0x00000000 0x0 esp-idf/main/libmain.a(mesh_main.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/main/libmain.a(mesh_main.c.obj) + .xt.prop 0x00000000 0x72c esp-idf/main/libmain.a(mesh_main.c.obj) + .text 0x00000000 0x0 esp-idf/main/libmain.a(mesh_light.c.obj) + .data 0x00000000 0x0 esp-idf/main/libmain.a(mesh_light.c.obj) + .bss 0x00000000 0x0 esp-idf/main/libmain.a(mesh_light.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/main/libmain.a(mesh_light.c.obj) + .xt.prop 0x00000000 0x234 esp-idf/main/libmain.a(mesh_light.c.obj) + .data 0x00000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .bss 0x00000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .xt.lit 0x00000000 0x8 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .xt.prop 0x00000000 0xfc esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .bss 0x00000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .xt.prop 0x00000000 0x54 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .literal.xt_set_exception_handler + 0x00000000 0x8 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .text 0x00000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .data 0x00000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .bss 0x00000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .text.xt_set_exception_handler + 0x00000000 0x2c esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .xt.prop 0x00000000 0x114 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .text 0x00000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .bss 0x00000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .UserEnter.text + 0x00000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .xt.lit 0x00000000 0x48 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .xt.prop 0x00000000 0x558 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .literal.esp_efuse_read_field_bit + 0x00000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_field_cnt + 0x00000000 0xc esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_field_blob + 0x00000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_field_cnt + 0x00000000 0x38 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_field_bit + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_reg + 0x00000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_block + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_reg + 0x00000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_block + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_batch_write_begin + 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_batch_write_cancel + 0x00000000 0x2c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_batch_write_commit + 0x00000000 0x34 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_read_field_bit.str1.1 + 0x00000000 0x39 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_field_bit + 0x00000000 0x35 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_field_cnt + 0x00000000 0x46 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_blob + 0x00000000 0x76 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_write_field_cnt.str1.1 + 0x00000000 0x57 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_cnt + 0x00000000 0xaa esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_bit + 0x00000000 0x42 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_reg + 0x00000000 0x53 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_block + 0x00000000 0x46 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_reg + 0x00000000 0x2e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_block + 0x00000000 0x46 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_begin.str1.1 + 0x00000000 0x5a esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_begin + 0x00000000 0x50 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_cancel.str1.1 + 0x00000000 0x75 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_cancel + 0x00000000 0x60 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_commit.str1.1 + 0x00000000 0x42 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_commit + 0x00000000 0x75 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.__func__$0 + 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.__func__$1 + 0x00000000 0x13 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.__func__$2 + 0x00000000 0x19 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .bss.s_batch_writing_mode + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .bss.s_efuse_lock + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .xt.lit 0x00000000 0x70 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .xt.prop 0x00000000 0x4d4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.write_reg + 0x00000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_reset + 0x00000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_burn_efuses + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_update_virt_blocks + 0x00000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_debug_dump_single_block + 0x00000000 0x3c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_debug_dump_pending + 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_debug_dump_blocks + 0x00000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_write_cnt + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_write_reg + 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_write_blob + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_get_read_register_address + 0x00000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_is_correct_written_data + 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.write_reg + 0x00000000 0x6c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_reset.str1.1 + 0x00000000 0x8e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_reset + 0x00000000 0x66 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_burn_efuses + 0x00000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_erase_virt_blocks + 0x00000000 0x5 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_update_virt_blocks.str1.1 + 0x00000000 0x32 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_update_virt_blocks + 0x00000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_debug_dump_single_block.str1.1 + 0x00000000 0x127 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_debug_dump_single_block + 0x00000000 0x9f esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_debug_dump_pending + 0x00000000 0x4f esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_debug_dump_blocks.str1.1 + 0x00000000 0xd esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_debug_dump_blocks + 0x00000000 0x2a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_write_cnt.str1.1 + 0x00000000 0x31 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_cnt + 0x00000000 0x7d esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_write_reg.str1.1 + 0x00000000 0x5d esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_reg + 0x00000000 0x4d esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_blob + 0x00000000 0x9b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_get_read_register_address.str1.1 + 0x00000000 0x16 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_get_read_register_address + 0x00000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_is_correct_written_data.str1.1 + 0x00000000 0xd8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_is_correct_written_data + 0x00000000 0x8e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$0 + 0x00000000 0x2c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$2 + 0x00000000 0x2a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$3 + 0x00000000 0x25 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$4 + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$5 + 0x00000000 0xa esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$6 + 0x00000000 0xf esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .xt.lit 0x00000000 0x80 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .xt.prop 0x00000000 0x69c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_set_write_protect + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_read_protect + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_block_is_empty + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_key_dis_read + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_key_dis_read + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_key_dis_write + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_key_dis_write + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_key_block_unused + 0x00000000 0xc esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_find_purpose + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_write_key + 0x00000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_write_keys + 0x00000000 0x34 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_write_protect + 0x00000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_read_protect + 0x00000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_block_is_empty + 0x00000000 0x4e esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.esp_efuse_get_key_dis_read.str1.1 + 0x00000000 0xa0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_dis_read + 0x00000000 0x2c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_key_dis_read + 0x00000000 0x1e esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_dis_write + 0x00000000 0x2c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_key_dis_write + 0x00000000 0x1e esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_key_block_unused + 0x00000000 0x31 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_purpose + 0x00000000 0x23 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_keypurpose_dis_write + 0x00000000 0x7 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_find_purpose + 0x00000000 0x26 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_write_key + 0x00000000 0x86 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.esp_efuse_write_keys.str1.1 + 0x00000000 0x9f esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_write_keys + 0x00000000 0xd3 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__$0 + 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__$1 + 0x00000000 0x1b esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.s_table + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .xt.lit 0x00000000 0x68 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .xt.prop 0x00000000 0x42c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_TP_HIGH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_TP_LOW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_TP_HIGH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_TP_LOW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_BLOCK2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_BLOCK1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_STATUS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_DL_CACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_DL_DECRYPT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_DL_ENCRYPT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_JTAG_DISABLE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ABS_DONE_1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ABS_DONE_0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_SDIO_HOST + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CONSOLE_DEBUG_DISABLE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CODING_SCHEME + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_CRYPT_CONFIG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WAFER_VERSION_MINOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_VOL_LEVEL_HP_INV + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_VER_REV2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_CS0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_D + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_Q + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_CLK + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_XPD_SDIO_FORCE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_XPD_SDIO_TIEH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_XPD_SDIO_REG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC_VREF + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CLK8M_FREQ + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_VER_REV1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_BLK3_PART_RESERVE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_CPU_FREQ_RATED + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_CPU_FREQ_LOW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_PACKAGE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_HD + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_CACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_PACKAGE_4BIT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_BT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_APP_CPU + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_UART_DOWNLOAD_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_CRYPT_CNT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_KEY_STATUS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_CODING_SCHEME + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_FLASH_CRYPT_CONFIG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLK3_PART_RESERVE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_MAC_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_SECURE_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_ADC2_TP_HIGH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_ADC2_TP_LOW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_ADC1_TP_HIGH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_ADC1_TP_LOW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_CUSTOM_MAC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_CUSTOM_MAC_CRC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DISABLE_DL_CACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DISABLE_DL_DECRYPT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DISABLE_DL_ENCRYPT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_CONSOLE_DEBUG_DISABLE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_JTAG_DISABLE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ABS_DONE_1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ABS_DONE_0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY_STATUS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_CODING_SCHEME + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_CRYPT_CONFIG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLK3_PART_RESERVE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_MAC_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SECURE_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_TP_HIGH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_TP_LOW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_TP_HIGH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_TP_LOW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_CUSTOM_MAC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_CUSTOM_MAC_CRC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CS0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_Q + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CLK + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_XPD_SDIO_FORCE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_XPD_SDIO_TIEH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_XPD_SDIO_REG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC_VREF + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_CLK8M_FREQ + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_VOL_LEVEL_HP_INV + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_CACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DISABLE_BT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DISABLE_APP_CPU + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_MAC_CRC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_MAC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_UART_DOWNLOAD_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_CRYPT_CNT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_WR_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_RD_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SECURE_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_TP_HIGH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_TP_LOW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_TP_HIGH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_TP_LOW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.BLOCK2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.BLOCK1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY_STATUS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_DL_CACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_DL_DECRYPT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_DL_ENCRYPT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.JTAG_DISABLE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ABS_DONE_1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ABS_DONE_0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_SDIO_HOST + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CONSOLE_DEBUG_DISABLE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CODING_SCHEME + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.FLASH_CRYPT_CONFIG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WAFER_VERSION_MINOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.VOL_LEVEL_HP_INV + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_VER_REV2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_CS0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_D + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_Q + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_CLK + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.XPD_SDIO_FORCE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.XPD_SDIO_TIEH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.XPD_SDIO_REG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC_VREF + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CLK8M_FREQ + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_VER_REV1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.BLK3_PART_RESERVE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_CPU_FREQ_RATED + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_CPU_FREQ_LOW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_PACKAGE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_HD + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_CACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_PACKAGE_4BIT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_BT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_APP_CPU + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.UART_DOWNLOAD_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.FLASH_CRYPT_CNT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_KEY_STATUS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_CODING_SCHEME + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_FLASH_CRYPT_CONFIG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLK3_PART_RESERVE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_MAC_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_SECURE_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_ADC2_TP_HIGH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_ADC2_TP_LOW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_ADC1_TP_HIGH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_ADC1_TP_LOW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_CUSTOM_MAC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_CUSTOM_MAC_CRC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DISABLE_DL_CACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DISABLE_DL_DECRYPT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DISABLE_DL_ENCRYPT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_CONSOLE_DEBUG_DISABLE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_JTAG_DISABLE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ABS_DONE_1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ABS_DONE_0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY_STATUS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_CODING_SCHEME + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_CRYPT_CONFIG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLK3_PART_RESERVE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_MAC_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SECURE_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_TP_HIGH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_TP_LOW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_TP_HIGH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_TP_LOW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_CUSTOM_MAC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_CUSTOM_MAC_CRC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_CS0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_D + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_Q + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_CLK + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_XPD_SDIO_FORCE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_XPD_SDIO_TIEH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_XPD_SDIO_REG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC_VREF + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_CLK8M_FREQ + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_VOL_LEVEL_HP_INV + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_CACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DISABLE_BT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DISABLE_APP_CPU + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_MAC_CRC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_MAC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_UART_DOWNLOAD_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_CRYPT_CNT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_WR_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_RD_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .xt.prop 0x00000000 0x9d8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .literal.esp_efuse_utility_clear_program_registers + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_apply_34_encoding + 0x00000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_burn_chip + 0x00000000 0xb8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_apply_new_coding_scheme + 0x00000000 0x38 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_clear_program_registers + 0x00000000 0xb esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_apply_34_encoding + 0x00000000 0x8a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_burn_chip.str1.1 + 0x00000000 0x264 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_burn_chip + 0x00000000 0x245 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_apply_new_coding_scheme.str1.1 + 0x00000000 0x4a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_apply_new_coding_scheme + 0x00000000 0x103 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$0 + 0x00000000 0x2a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$1 + 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.start_write_addr + 0x00000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.range_write_addr_blocks + 0x00000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .bss.write_mass_blocks + 0x00000000 0x80 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .xt.prop 0x00000000 0x2d0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .iram1.17.literal + 0x00000000 0xc esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .literal.esp_mmu_map_get_max_consecutive_free_block_size + 0x00000000 0x20 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .literal.esp_mmu_map_reserve_block_with_caps + 0x00000000 0x30 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .literal.esp_mmu_map_dump_mapped_blocks + 0x00000000 0x74 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .iram1.5.literal + 0x00000000 0x5c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .literal.esp_mmu_paddr_to_vaddr + 0x00000000 0x24 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .text 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .data 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .iram1.17 0x00000000 0x23 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .text.esp_mmu_map_get_max_consecutive_free_block_size + 0x00000000 0x84 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .text.esp_mmu_map_reserve_block_with_caps + 0x00000000 0xd6 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_map_dump_mapped_blocks.str1.1 + 0x00000000 0x13c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .text.esp_mmu_map_dump_mapped_blocks + 0x00000000 0x10d esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .iram1.5 0x00000000 0xef esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_paddr_to_vaddr.str1.1 + 0x00000000 0x33 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .text.esp_mmu_paddr_to_vaddr + 0x00000000 0x79 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0x17 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__$6 + 0x00000000 0x24 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__$7 + 0x00000000 0x30 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.15 0x00000000 0x1a esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.14 0x00000000 0x18 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.13 0x00000000 0x1a esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.12 0x00000000 0x1b esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.11 0x00000000 0x1e esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.10 0x00000000 0x20 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.9 0x00000000 0x19 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.8 0x00000000 0x18 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.7 0x00000000 0x1d esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.6 0x00000000 0x1f esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .xt.lit 0x00000000 0x80 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .xt.prop 0x00000000 0xb1c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .text 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .data 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .xt.prop 0x00000000 0xc esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .literal.cache_register_writeback + 0x00000000 0x4 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .text 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .data 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .text.cache_register_writeback + 0x00000000 0xc esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .xt.prop 0x00000000 0xa8 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .literal.gpio_isr_register_on_core_static + 0x00000000 0x4 esp-idf/driver/libdriver.a(gpio.c.obj) + .iram1.0.literal + 0x00000000 0x8 esp-idf/driver/libdriver.a(gpio.c.obj) + .iram1.1.literal + 0x00000000 0xc esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_pulldown_dis$isra$0 + 0x00000000 0x44 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_pulldown_en$isra$0 + 0x00000000 0x44 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_pullup_en$isra$0 + 0x00000000 0x44 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_pullup_dis$isra$0 + 0x00000000 0x44 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_pullup_en + 0x00000000 0x4c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_pullup_dis + 0x00000000 0x3c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_pulldown_en + 0x00000000 0x4c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_pulldown_dis + 0x00000000 0x3c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_set_intr_type + 0x00000000 0x3c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_intr_enable + 0x00000000 0x34 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_intr_disable + 0x00000000 0x28 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_get_level + 0x00000000 0x4 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_set_pull_mode + 0x00000000 0x40 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_config + 0x00000000 0x88 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_reset_pin + 0x00000000 0x20 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_isr_handler_add + 0x00000000 0x48 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_isr_handler_remove + 0x00000000 0x40 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_uninstall_isr_service + 0x00000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_isr_register + 0x00000000 0x44 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_install_isr_service + 0x00000000 0x44 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_wakeup_enable + 0x00000000 0x44 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_wakeup_disable + 0x00000000 0x38 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_set_drive_capability + 0x00000000 0x54 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_get_drive_capability + 0x00000000 0x54 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_hold_en + 0x00000000 0x3c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_hold_dis + 0x00000000 0x3c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_deep_sleep_hold_en + 0x00000000 0x10 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_deep_sleep_hold_dis + 0x00000000 0x10 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_iomux_in + 0x00000000 0xc esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_iomux_out + 0x00000000 0xc esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_set_direction + 0x00000000 0x68 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_set_pull_mode + 0x00000000 0x40 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_sel_en + 0x00000000 0x44 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_sleep_sel_dis + 0x00000000 0x44 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_dump_io_configuration + 0x00000000 0xb8 esp-idf/driver/libdriver.a(gpio.c.obj) + .text 0x00000000 0x0 esp-idf/driver/libdriver.a(gpio.c.obj) + .data 0x00000000 0x0 esp-idf/driver/libdriver.a(gpio.c.obj) + .bss 0x00000000 0x0 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_isr_register_on_core_static + 0x00000000 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + .iram1.0 0x00000000 0xeb esp-idf/driver/libdriver.a(gpio.c.obj) + .iram1.1 0x00000000 0x68 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_sleep_pulldown_dis$isra$0.str1.1 + 0x00000000 0xbc esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_pulldown_dis$isra$0 + 0x00000000 0x8f esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_pulldown_en$isra$0 + 0x00000000 0x8f esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_pullup_en$isra$0 + 0x00000000 0x8f esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_pullup_dis$isra$0 + 0x00000000 0x8f esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_pullup_en.str1.1 + 0x00000000 0xac esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_pullup_en + 0x00000000 0xa9 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_pullup_dis + 0x00000000 0x8f esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_pulldown_en + 0x00000000 0xa9 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_pulldown_dis + 0x00000000 0x8f esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_set_intr_type.str1.1 + 0x00000000 0x1a esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_set_intr_type + 0x00000000 0xca esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_intr_enable + 0x00000000 0x7a esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_intr_disable + 0x00000000 0x57 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_get_level + 0x00000000 0x3b esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_set_pull_mode.str1.1 + 0x00000000 0x15 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_set_pull_mode + 0x00000000 0xa1 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_config.str1.1 + 0x00000000 0x1a2 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_config + 0x00000000 0x1f5 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_reset_pin.str1.1 + 0x00000000 0x1d esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_reset_pin + 0x00000000 0x52 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_isr_handler_add.str1.1 + 0x00000000 0x49 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_isr_handler_add + 0x00000000 0xbb esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_isr_handler_remove + 0x00000000 0xa7 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_uninstall_isr_service + 0x00000000 0x49 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_isr_register.str1.1 + 0x00000000 0x7f esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_isr_register + 0x00000000 0xb0 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_install_isr_service.str1.1 + 0x00000000 0x23 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_install_isr_service + 0x00000000 0xa7 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_wakeup_enable.str1.1 + 0x00000000 0x5d esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_wakeup_enable + 0x00000000 0xd7 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_wakeup_disable + 0x00000000 0x93 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_set_drive_capability.str1.1 + 0x00000000 0xd4 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_set_drive_capability + 0x00000000 0xd1 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_get_drive_capability.str1.1 + 0x00000000 0xde esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_get_drive_capability + 0x00000000 0xc1 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_hold_en.str1.1 + 0x00000000 0x2f esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_hold_en + 0x00000000 0x93 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_hold_dis + 0x00000000 0x95 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_deep_sleep_hold_en + 0x00000000 0x40 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_deep_sleep_hold_dis + 0x00000000 0x2e esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_iomux_in + 0x00000000 0x3f esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_iomux_out + 0x00000000 0x6d esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_set_direction + 0x00000000 0x149 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_set_pull_mode + 0x00000000 0xa1 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_sel_en + 0x00000000 0x95 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_sleep_sel_dis + 0x00000000 0x95 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_dump_io_configuration.str1.1 + 0x00000000 0x274 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_dump_io_configuration + 0x00000000 0x25c esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$0 + 0x00000000 0x16 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$1 + 0x00000000 0x1b esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$2 + 0x00000000 0x16 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$3 + 0x00000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$4 + 0x00000000 0x15 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$5 + 0x00000000 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$6 + 0x00000000 0x19 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$7 + 0x00000000 0x16 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$8 + 0x00000000 0x1b esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$9 + 0x00000000 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$10 + 0x00000000 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$11 + 0x00000000 0x15 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$12 + 0x00000000 0x1a esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$13 + 0x00000000 0x17 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$14 + 0x00000000 0x19 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$15 + 0x00000000 0x1d esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$17 + 0x00000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$18 + 0x00000000 0x19 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$19 + 0x00000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$21 + 0x00000000 0x1b esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$23 + 0x00000000 0x19 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$24 + 0x00000000 0xe esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$25 + 0x00000000 0xd esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$26 + 0x00000000 0x1d esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$27 + 0x00000000 0x1a esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$28 + 0x00000000 0x1d esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$29 + 0x00000000 0x1a esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$30 + 0x00000000 0x14 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$31 + 0x00000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$32 + 0x00000000 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$33 + 0x00000000 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$34 + 0x00000000 0x15 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$35 + 0x00000000 0x19 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$36 + 0x00000000 0xf esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$37 + 0x00000000 0x17 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$38 + 0x00000000 0xc esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$48 + 0x00000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$50 + 0x00000000 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$51 + 0x00000000 0x11 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$52 + 0x00000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$53 + 0x00000000 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$54 + 0x00000000 0x14 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$55 + 0x00000000 0x11 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$56 + 0x00000000 0x10 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$57 + 0x00000000 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$58 + 0x00000000 0xf esp-idf/driver/libdriver.a(gpio.c.obj) + .xt.lit 0x00000000 0x170 esp-idf/driver/libdriver.a(gpio.c.obj) + .xt.prop 0x00000000 0x141c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.rtcio_ll_iomux_func_sel + 0x00000000 0x18 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_is_valid_gpio + 0x00000000 0x4 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_io_number_get + 0x00000000 0x4 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_init + 0x00000000 0x44 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_deinit + 0x00000000 0x40 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_set_level + 0x00000000 0x2c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_get_level + 0x00000000 0x20 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_set_drive_capability + 0x00000000 0x58 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_get_drive_capability + 0x00000000 0x4c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_set_direction + 0x00000000 0x2c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_set_direction_in_sleep + 0x00000000 0x2c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_pullup_en + 0x00000000 0x40 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_pullup_dis + 0x00000000 0x40 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_pulldown_en + 0x00000000 0x40 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_pulldown_dis + 0x00000000 0x40 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_iomux_func_sel + 0x00000000 0x2c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_hold_en + 0x00000000 0x44 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_hold_dis + 0x00000000 0x44 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_force_hold_en_all + 0x00000000 0x10 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_force_hold_dis_all + 0x00000000 0x10 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_isolate + 0x00000000 0x2c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_wakeup_enable + 0x00000000 0x2c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_wakeup_disable + 0x00000000 0x2c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text 0x00000000 0x0 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .data 0x00000000 0x0 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .bss 0x00000000 0x0 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.rtcio_ll_iomux_func_sel.str1.1 + 0x00000000 0xeb esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtcio_ll_iomux_func_sel + 0x00000000 0x55 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_is_valid_gpio + 0x00000000 0x1b esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_io_number_get + 0x00000000 0xd esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.rtc_gpio_init.str1.1 + 0x00000000 0xf1 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_init + 0x00000000 0x99 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.rtc_gpio_deinit.str1.1 + 0x00000000 0xbc esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_deinit + 0x00000000 0x94 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_set_level + 0x00000000 0x8e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_get_level + 0x00000000 0x51 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.rtc_gpio_set_drive_capability.str1.1 + 0x00000000 0x6d esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_set_drive_capability + 0x00000000 0xf7 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.rtc_gpio_get_drive_capability.str1.1 + 0x00000000 0xf3 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_get_drive_capability + 0x00000000 0xcd esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_set_direction + 0x00000000 0x60 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_set_direction_in_sleep + 0x00000000 0x60 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_pullup_en + 0x00000000 0x93 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_pullup_dis + 0x00000000 0x97 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_pulldown_en + 0x00000000 0x93 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_pulldown_dis + 0x00000000 0x97 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_iomux_func_sel + 0x00000000 0x60 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.rtc_gpio_hold_en.str1.1 + 0x00000000 0xac esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_hold_en + 0x00000000 0xa3 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.rtc_gpio_hold_dis.str1.1 + 0x00000000 0xac esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_hold_dis + 0x00000000 0xa8 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_force_hold_en_all + 0x00000000 0x30 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_force_hold_dis_all + 0x00000000 0x2e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_isolate + 0x00000000 0x5c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_wakeup_enable + 0x00000000 0x8d esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_wakeup_disable + 0x00000000 0x7f esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0x18 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$1 + 0x00000000 0x17 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$2 + 0x00000000 0x11 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__func__$3 + 0x00000000 0x1c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$4 + 0x00000000 0x12 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__func__$5 + 0x00000000 0x1b esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$6 + 0x00000000 0x11 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$7 + 0x00000000 0x18 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__func__$8 + 0x00000000 0x1a esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$9 + 0x00000000 0x16 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__func__$10 + 0x00000000 0x19 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$11 + 0x00000000 0x15 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__func__$12 + 0x00000000 0x18 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$13 + 0x00000000 0x14 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__func__$14 + 0x00000000 0x17 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$15 + 0x00000000 0x13 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$16 + 0x00000000 0x20 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$17 + 0x00000000 0x17 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__func__$18 + 0x00000000 0x1e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$19 + 0x00000000 0x1e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__func__$20 + 0x00000000 0x1e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$21 + 0x00000000 0x1e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$22 + 0x00000000 0x13 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$23 + 0x00000000 0x13 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$24 + 0x00000000 0x10 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__func__$25 + 0x00000000 0x18 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__func__$26 + 0x00000000 0x19 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$27 + 0x00000000 0xe esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_frame 0x00000000 0x238 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_info 0x00000000 0x309d esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_abbrev 0x00000000 0x433 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_loc 0x00000000 0xc7e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_aranges + 0x00000000 0xd0 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_ranges 0x00000000 0x448 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_line 0x00000000 0x2a30 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_str 0x00000000 0x17f1 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .comment 0x00000000 0x30 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .xt.lit 0x00000000 0xb8 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .xt.prop 0x00000000 0x6c0 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.ledc_get_max_duty + 0x00000000 0x8 esp-idf/driver/libdriver.a(ledc.c.obj) + .literal._ledc_op_lock_release + 0x00000000 0x8 esp-idf/driver/libdriver.a(ledc.c.obj) + .literal.ilog2 + 0x00000000 0x10 esp-idf/driver/libdriver.a(ledc.c.obj) + .literal.ledc_fade_channel_deinit$isra$0 + 0x00000000 0x10 esp-idf/driver/libdriver.a(ledc.c.obj) + .literal.ledc_fade_channel_init_check + 0x00000000 0x30 esp-idf/driver/libdriver.a(ledc.c.obj) + .literal._ledc_set_fade_with_step$isra$0 + 0x00000000 0x2c esp-idf/driver/libdriver.a(ledc.c.obj) + .literal.ledc_timer_pause + 0x00000000 0x3c esp-idf/driver/libdriver.a(ledc.c.obj) + .literal.ledc_set_pin + 0x00000000 0x50 esp-idf/driver/libdriver.a(ledc.c.obj) + .literal._ledc_fade_start + 0x00000000 0x38 esp-idf/driver/libdriver.a(ledc.c.obj) + .literal.ledc_stop + 0x00000000 0x50 esp-idf/driver/libdriver.a(ledc.c.obj) + .literal.ledc_set_fade + 0x00000000 0x68 esp-idf/driver/libdriver.a(ledc.c.obj) + .literal.ledc_get_duty + 0x00000000 0x34 esp-idf/driver/libdriver.a(ledc.c.obj) + .literal.ledc_get_hpoint + 0x00000000 0x30 esp-idf/driver/libdriver.a(ledc.c.obj) + .literal.ledc_set_freq + 0x00000000 0x38 esp-idf/driver/libdriver.a(ledc.c.obj) + .literal.ledc_get_freq + 0x00000000 0x54 esp-idf/driver/libdriver.a(ledc.c.obj) + .literal._ledc_set_fade_with_time$isra$0 + 0x00000000 0x38 esp-idf/driver/libdriver.a(ledc.c.obj) + .literal.ledc_find_suitable_duty_resolution + 0x00000000 0x14 esp-idf/driver/libdriver.a(ledc.c.obj) + .literal.ledc_set_fade_with_time + 0x00000000 0x58 esp-idf/driver/libdriver.a(ledc.c.obj) + .literal.ledc_set_fade_with_step + 0x00000000 0x68 esp-idf/driver/libdriver.a(ledc.c.obj) + .literal.ledc_fade_start + 0x00000000 0x44 esp-idf/driver/libdriver.a(ledc.c.obj) + .literal.ledc_fade_func_uninstall + 0x00000000 0x10 esp-idf/driver/libdriver.a(ledc.c.obj) + .literal.ledc_cb_register + 0x00000000 0x74 esp-idf/driver/libdriver.a(ledc.c.obj) + .literal.ledc_set_duty_and_update + 0x00000000 0x70 esp-idf/driver/libdriver.a(ledc.c.obj) + .literal.ledc_set_fade_time_and_start + 0x00000000 0x6c esp-idf/driver/libdriver.a(ledc.c.obj) + .literal.ledc_set_fade_step_and_start + 0x00000000 0x7c esp-idf/driver/libdriver.a(ledc.c.obj) + .text 0x00000000 0x0 esp-idf/driver/libdriver.a(ledc.c.obj) + .data 0x00000000 0x0 esp-idf/driver/libdriver.a(ledc.c.obj) + .bss 0x00000000 0x0 esp-idf/driver/libdriver.a(ledc.c.obj) + .text.ledc_get_max_duty + 0x00000000 0x41 esp-idf/driver/libdriver.a(ledc.c.obj) + .text._ledc_op_lock_release + 0x00000000 0x20 esp-idf/driver/libdriver.a(ledc.c.obj) + .text.ilog2 0x00000000 0x22 esp-idf/driver/libdriver.a(ledc.c.obj) + .text.ledc_fade_channel_deinit$isra$0 + 0x00000000 0x4e esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.ledc_fade_channel_init_check.str1.1 + 0x00000000 0x50 esp-idf/driver/libdriver.a(ledc.c.obj) + .text.ledc_fade_channel_init_check + 0x00000000 0xbf esp-idf/driver/libdriver.a(ledc.c.obj) + .text._ledc_set_fade_with_step$isra$0 + 0x00000000 0xe4 esp-idf/driver/libdriver.a(ledc.c.obj) + .text.ledc_timer_pause + 0x00000000 0xc6 esp-idf/driver/libdriver.a(ledc.c.obj) + .text.ledc_set_pin + 0x00000000 0xe3 esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata._ledc_fade_start.str1.1 + 0x00000000 0x1b esp-idf/driver/libdriver.a(ledc.c.obj) + .text._ledc_fade_start + 0x00000000 0x86 esp-idf/driver/libdriver.a(ledc.c.obj) + .text.ledc_stop + 0x00000000 0xfc esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.ledc_set_fade.str1.1 + 0x00000000 0x102 esp-idf/driver/libdriver.a(ledc.c.obj) + .text.ledc_set_fade + 0x00000000 0x149 esp-idf/driver/libdriver.a(ledc.c.obj) + .text.ledc_get_duty + 0x00000000 0x95 esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.ledc_get_hpoint.str1.1 + 0x00000000 0x3b esp-idf/driver/libdriver.a(ledc.c.obj) + .text.ledc_get_hpoint + 0x00000000 0x9e esp-idf/driver/libdriver.a(ledc.c.obj) + .text.ledc_set_freq + 0x00000000 0xbb esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.ledc_get_freq.str1.1 + 0x00000000 0x61 esp-idf/driver/libdriver.a(ledc.c.obj) + .text.ledc_get_freq + 0x00000000 0x129 esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata._ledc_set_fade_with_time$isra$0.str1.1 + 0x00000000 0x56 esp-idf/driver/libdriver.a(ledc.c.obj) + .text._ledc_set_fade_with_time$isra$0 + 0x00000000 0xee esp-idf/driver/libdriver.a(ledc.c.obj) + .text.ledc_find_suitable_duty_resolution + 0x00000000 0x7e esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.ledc_set_fade_with_time.str1.1 + 0x00000000 0x89 esp-idf/driver/libdriver.a(ledc.c.obj) + .text.ledc_set_fade_with_time + 0x00000000 0x10f esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.ledc_set_fade_with_step.str1.1 + 0x00000000 0x7d esp-idf/driver/libdriver.a(ledc.c.obj) + .text.ledc_set_fade_with_step + 0x00000000 0x157 esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.ledc_fade_start.str1.1 + 0x00000000 0x5e esp-idf/driver/libdriver.a(ledc.c.obj) + .text.ledc_fade_start + 0x00000000 0xc1 esp-idf/driver/libdriver.a(ledc.c.obj) + .text.ledc_fade_func_uninstall + 0x00000000 0x3a esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.ledc_cb_register.str1.1 + 0x00000000 0xa8 esp-idf/driver/libdriver.a(ledc.c.obj) + .text.ledc_cb_register + 0x00000000 0x14c esp-idf/driver/libdriver.a(ledc.c.obj) + .text.ledc_set_duty_and_update + 0x00000000 0x15b esp-idf/driver/libdriver.a(ledc.c.obj) + .text.ledc_set_fade_time_and_start + 0x00000000 0x153 esp-idf/driver/libdriver.a(ledc.c.obj) + .text.ledc_set_fade_step_and_start + 0x00000000 0x197 esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0x1d esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.__FUNCTION__$1 + 0x00000000 0x1d esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.__FUNCTION__$2 + 0x00000000 0x19 esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.__FUNCTION__$3 + 0x00000000 0x11 esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.__func__$6 + 0x00000000 0x11 esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.__FUNCTION__$7 + 0x00000000 0x10 esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.__FUNCTION__$8 + 0x00000000 0x18 esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.__FUNCTION__$9 + 0x00000000 0x18 esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.__func__$10 + 0x00000000 0x6 esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.__FUNCTION__$11 + 0x00000000 0xe esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.__FUNCTION__$12 + 0x00000000 0xe esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.__FUNCTION__$13 + 0x00000000 0x10 esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.__FUNCTION__$14 + 0x00000000 0xe esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.__FUNCTION__$17 + 0x00000000 0xe esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.__FUNCTION__$18 + 0x00000000 0xa esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.__FUNCTION__$22 + 0x00000000 0xd esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.__FUNCTION__$29 + 0x00000000 0x11 esp-idf/driver/libdriver.a(ledc.c.obj) + .xt.lit 0x00000000 0x178 esp-idf/driver/libdriver.a(ledc.c.obj) + .xt.prop 0x00000000 0x189c esp-idf/driver/libdriver.a(ledc.c.obj) + .literal.uart_try_set_iomux_pin + 0x00000000 0xc esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_ll_enable_bus_clock + 0x00000000 0x10 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_module_enable + 0x00000000 0x38 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_enable_tx_write_fifo + 0x00000000 0x1c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_free_driver_obj + 0x00000000 0x28 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_check_buf_full + 0x00000000 0x18 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_pattern_enqueue$isra$0 + 0x00000000 0x18 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_rx_intr_handler_default + 0x00000000 0xe0 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_get_sclk_freq + 0x00000000 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_line_inverse + 0x00000000 0x24 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_sw_flow_ctrl + 0x00000000 0x34 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_hw_flow_ctrl + 0x00000000 0x34 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_get_hw_flow_ctrl + 0x00000000 0x24 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_clear_intr_status + 0x00000000 0x1c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_enable_intr_mask + 0x00000000 0x24 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_disable_intr_mask + 0x00000000 0x24 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_pattern_pop_pos + 0x00000000 0x24 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_pattern_get_pos + 0x00000000 0x24 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_pattern_queue_reset + 0x00000000 0x38 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_enable_pattern_det_baud_intr + 0x00000000 0x3c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_disable_pattern_det_intr + 0x00000000 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_enable_rx_intr + 0x00000000 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_disable_rx_intr + 0x00000000 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_disable_tx_intr + 0x00000000 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_enable_tx_intr + 0x00000000 0x2c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_tx_all$part$0 + 0x00000000 0x40 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_pin + 0x00000000 0x9c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_rts + 0x00000000 0x2c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_dtr + 0x00000000 0x24 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_tx_idle_num + 0x00000000 0x2c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_param_config + 0x00000000 0x8c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_intr_config + 0x00000000 0x34 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_tx_chars + 0x00000000 0x34 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_write_bytes + 0x00000000 0x2c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_write_bytes_with_break + 0x00000000 0x3c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_read_bytes + 0x00000000 0x54 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_get_tx_buffer_free_size + 0x00000000 0x28 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_driver_delete + 0x00000000 0x58 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_driver_install + 0x00000000 0xc0 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_mode + 0x00000000 0x44 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_rx_full_threshold + 0x00000000 0x3c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_tx_empty_threshold + 0x00000000 0x3c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_rx_timeout + 0x00000000 0x30 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_get_collision_flag + 0x00000000 0x34 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_wakeup_threshold + 0x00000000 0x2c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_get_wakeup_threshold + 0x00000000 0x24 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_wait_tx_idle_polling + 0x00000000 0x28 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_loop_back + 0x00000000 0x1c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_always_rx_timeout + 0x00000000 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + .text 0x00000000 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + .data 0x00000000 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + .bss 0x00000000 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_try_set_iomux_pin + 0x00000000 0x56 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_ll_enable_bus_clock + 0x00000000 0x48 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_module_enable + 0x00000000 0xaa esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_enable_tx_write_fifo + 0x00000000 0x7e esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_free_driver_obj + 0x00000000 0x72 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_check_buf_full + 0x00000000 0x63 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_pattern_enqueue$isra$0.str1.1 + 0x00000000 0x51 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_pattern_enqueue$isra$0 + 0x00000000 0x46 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_rx_intr_handler_default + 0x00000000 0x842 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_get_sclk_freq + 0x00000000 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_line_inverse + 0x00000000 0x5d esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_sw_flow_ctrl.str1.1 + 0x00000000 0x73 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_sw_flow_ctrl + 0x00000000 0xbb esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_hw_flow_ctrl.str1.1 + 0x00000000 0x6c esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_hw_flow_ctrl + 0x00000000 0xa3 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_get_hw_flow_ctrl + 0x00000000 0x5d esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_clear_intr_status + 0x00000000 0x41 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_enable_intr_mask + 0x00000000 0x77 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_disable_intr_mask + 0x00000000 0x77 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_pattern_pop_pos + 0x00000000 0x74 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_pattern_get_pos + 0x00000000 0x65 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_pattern_queue_reset + 0x00000000 0xa7 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_enable_pattern_det_baud_intr.str1.1 + 0x00000000 0x38 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_enable_pattern_det_baud_intr + 0x00000000 0x113 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_disable_pattern_det_intr + 0x00000000 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_enable_rx_intr + 0x00000000 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_disable_rx_intr + 0x00000000 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_disable_tx_intr + 0x00000000 0x11 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_enable_tx_intr.str1.1 + 0x00000000 0x3b esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_enable_tx_intr + 0x00000000 0x98 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_tx_all$part$0 + 0x00000000 0x183 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_pin.str1.1 + 0x00000000 0x17f esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_pin + 0x00000000 0x2bf esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_rts.str1.1 + 0x00000000 0x4c esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_rts + 0x00000000 0x96 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_dtr + 0x00000000 0x5a esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_tx_idle_num.str1.1 + 0x00000000 0x34 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_tx_idle_num + 0x00000000 0x81 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_param_config.str1.1 + 0x00000000 0x6d esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_param_config + 0x00000000 0x216 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_intr_config + 0x00000000 0xc7 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_tx_chars.str1.1 + 0x00000000 0x2c esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_tx_chars + 0x00000000 0xa0 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_write_bytes + 0x00000000 0x8a esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_write_bytes_with_break.str1.1 + 0x00000000 0x8f esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_write_bytes_with_break + 0x00000000 0xc3 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_read_bytes + 0x00000000 0x127 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_get_tx_buffer_free_size.str1.1 + 0x00000000 0x34 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_get_tx_buffer_free_size + 0x00000000 0x7f esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_driver_delete.str1.1 + 0x00000000 0x25 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_driver_delete + 0x00000000 0xff esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_driver_install.str1.1 + 0x00000000 0x214 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata 0x00000000 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_driver_install + 0x00000000 0x325 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_mode.str1.1 + 0x00000000 0x4c esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_mode + 0x00000000 0xfb esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_rx_full_threshold.str1.1 + 0x00000000 0x7e esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_rx_full_threshold + 0x00000000 0xb9 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_tx_empty_threshold.str1.1 + 0x00000000 0x44 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_tx_empty_threshold + 0x00000000 0xb9 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_rx_timeout.str1.1 + 0x00000000 0x3e esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_rx_timeout + 0x00000000 0x87 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_get_collision_flag.str1.1 + 0x00000000 0x63 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_get_collision_flag + 0x00000000 0xac esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_wakeup_threshold.str1.1 + 0x00000000 0x3f esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_wakeup_threshold + 0x00000000 0x81 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_get_wakeup_threshold.str1.1 + 0x00000000 0x31 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_get_wakeup_threshold + 0x00000000 0x61 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_wait_tx_idle_polling + 0x00000000 0x8b esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_loop_back + 0x00000000 0x45 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_always_rx_timeout + 0x00000000 0x50 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$49 + 0x00000000 0x13 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$48 + 0x00000000 0x1a esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$47 + 0x00000000 0x1a esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$46 + 0x00000000 0x1a esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$45 + 0x00000000 0x18 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$44 + 0x00000000 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$43 + 0x00000000 0x1c esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$42 + 0x00000000 0x1b esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$41 + 0x00000000 0xe esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$40 + 0x00000000 0x13 esp-idf/driver/libdriver.a(uart.c.obj) + .bss.pat_flg$39 + 0x00000000 0x1 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$38 + 0x00000000 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$36 + 0x00000000 0x1d esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$33 + 0x00000000 0x10 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$32 + 0x00000000 0x1c esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$31 + 0x00000000 0x11 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$30 + 0x00000000 0xe esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$27 + 0x00000000 0x11 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$26 + 0x00000000 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$25 + 0x00000000 0x15 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$24 + 0x00000000 0xd esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$23 + 0x00000000 0xd esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__func__$22 + 0x00000000 0x17 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$20 + 0x00000000 0xd esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$19 + 0x00000000 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$18 + 0x00000000 0x22 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$17 + 0x00000000 0x19 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$16 + 0x00000000 0x15 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$15 + 0x00000000 0x15 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$14 + 0x00000000 0x17 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$13 + 0x00000000 0x16 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$12 + 0x00000000 0x17 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$11 + 0x00000000 0x16 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$10 + 0x00000000 0x16 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$9 + 0x00000000 0x16 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$8 + 0x00000000 0x16 esp-idf/driver/libdriver.a(uart.c.obj) + .xt.lit 0x00000000 0x208 esp-idf/driver/libdriver.a(uart.c.obj) + .xt.prop 0x00000000 0x1dd0 esp-idf/driver/libdriver.a(uart.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .xt.prop 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .literal.bootloader_mmap_get_free_pages + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_mmap + 0x00000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_munmap + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_flash_read + 0x00000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_flash_write + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_flash_erase_sector + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_flash_erase_range + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.0.literal + 0x00000000 0x3c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.3.literal + 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_enable_wp + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_spi_flash_reset + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.7.literal + 0x00000000 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_flash_get_spi_mode + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.6 0x00000000 0x46 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_mmap_get_free_pages + 0x00000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.bootloader_mmap.str1.1 + 0x00000000 0x7b esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_mmap + 0x00000000 0x6f esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_munmap + 0x00000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_read + 0x00000000 0x33 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_write + 0x00000000 0x2b esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_erase_sector + 0x00000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_erase_range + 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.0 0x00000000 0x150 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.3 0x00000000 0x36 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_enable_wp + 0x00000000 0x13 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_spi_flash_reset + 0x00000000 0x23 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.7 0x00000000 0xae esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.13 0x00000000 0x7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_get_spi_mode + 0x00000000 0x2e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.__func__$0 + 0x00000000 0x1b esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .dram1.11 0x00000000 0x1e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .dram1.10 0x00000000 0x1e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .dram1.5 0x00000000 0x11 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .bss.map 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .xt.lit 0x00000000 0x88 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .xt.prop 0x00000000 0x57c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_flash_update_size + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .literal.bootloader_configure_spi_pins + 0x00000000 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .literal.bootloader_init_spi_flash + 0x00000000 0xb0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .text.bootloader_flash_update_size + 0x00000000 0xa esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .text.bootloader_configure_spi_pins + 0x00000000 0x17a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .rodata.bootloader_init_spi_flash.str1.1 + 0x00000000 0xe4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .text.bootloader_init_spi_flash + 0x00000000 0x18a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .xt.lit 0x00000000 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .xt.prop 0x00000000 0x318 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .literal.bootloader_clock_get_rated_freq_mhz + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .text.bootloader_clock_get_rated_freq_mhz + 0x00000000 0xd esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .xt.prop 0x00000000 0x60 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .literal.esp_flash_write_protect_crypt_cnt + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .literal.esp_get_flash_encryption_mode + 0x00000000 0x2c esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .literal.esp_flash_encryption_init_checks + 0x00000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .literal.esp_flash_encryption_set_release_mode + 0x00000000 0x70 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .literal.esp_flash_encryption_cfg_verify_release_mode + 0x00000000 0xe4 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_flash_write_protect_crypt_cnt + 0x00000000 0xe esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_get_flash_encryption_mode + 0x00000000 0x74 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .rodata.esp_flash_encryption_init_checks.str1.1 + 0x00000000 0x91 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_flash_encryption_init_checks + 0x00000000 0x40 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .rodata.esp_flash_encryption_set_release_mode.str1.1 + 0x00000000 0x8d esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_flash_encryption_set_release_mode + 0x00000000 0xca esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .rodata.esp_flash_encryption_cfg_verify_release_mode.str1.1 + 0x00000000 0x3c6 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_flash_encryption_cfg_verify_release_mode + 0x00000000 0x1fb esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .xt.prop 0x00000000 0x210 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .xt.prop 0x00000000 0xa8 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .iram1.9.literal + 0x00000000 0xc esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.10.literal + 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.9 0x00000000 0x1d esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.10 0x00000000 0x17 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .xt.lit 0x00000000 0x60 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .xt.prop 0x00000000 0x33c esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .literal.s_merge_contiguous_pages + 0x00000000 0x10 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .literal.spi_flash_mmap_pages + 0x00000000 0x24 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .literal.spi_flash_mmap_dump + 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .literal.spi_flash_mmap_get_free_pages + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .literal.spi_flash_phys2cache + 0x00000000 0x14 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.s_find_non_contiguous_block_nums + 0x00000000 0x25 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.s_pages_to_bytes + 0x00000000 0x1f esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.s_merge_contiguous_pages + 0x00000000 0x58 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.spi_flash_mmap_pages + 0x00000000 0xfb esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.spi_flash_mmap_dump + 0x00000000 0x13 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.spi_flash_mmap_get_free_pages + 0x00000000 0x21 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .rodata.spi_flash_phys2cache.str1.1 + 0x00000000 0xe esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.spi_flash_phys2cache + 0x00000000 0x3c esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .rodata.__func__$0 + 0x00000000 0x15 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .rodata.__func__$2 + 0x00000000 0x19 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .xt.lit 0x00000000 0x50 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .xt.prop 0x00000000 0x3d8 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .iram1.9.literal + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.9 0x00000000 0xa esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.12 0x00000000 0x5 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .dram1.7 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .xt.prop 0x00000000 0x174 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.11.literal + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.find_region + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_read_id + 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_read_unique_chip_id + 0x00000000 0x28 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.8.literal + 0x00000000 0x50 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.14.literal + 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.15.literal + 0x00000000 0x18 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.17.literal + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.18.literal + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_get_protectable_regions + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.19.literal + 0x00000000 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.20.literal + 0x00000000 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.26.literal + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.27.literal + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_suspend_cmd_init + 0x00000000 0x28 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_app_disable_protect + 0x00000000 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.11 0x00000000 0x30 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.find_region + 0x00000000 0x39 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_read_id + 0x00000000 0x36 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_read_unique_chip_id + 0x00000000 0x7e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.8 0x00000000 0x140 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.14 0x00000000 0x36 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.15 0x00000000 0x45 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.17 0x00000000 0x4c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.18 0x00000000 0x4e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_get_protectable_regions + 0x00000000 0x52 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.19 0x00000000 0x8d esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.20 0x00000000 0x9c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.26 0x00000000 0x5b esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.27 0x00000000 0x52 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .rodata.esp_flash_suspend_cmd_init.str1.1 + 0x00000000 0x90 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_suspend_cmd_init + 0x00000000 0x6c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_app_disable_protect + 0x00000000 0x21 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .xt.lit 0x00000000 0xe0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .xt.prop 0x00000000 0xee8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.cs_using_iomux + 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .literal.acquire_spi_device + 0x00000000 0x34 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .iram1.0.literal + 0x00000000 0x38 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .literal.spi_bus_remove_flash_device + 0x00000000 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .literal.spi_bus_add_flash_device + 0x00000000 0x3c esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.use_bus_lock + 0x00000000 0xe esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.cs_using_iomux + 0x00000000 0x38 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.acquire_spi_device.str1.1 + 0x00000000 0xa4 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.acquire_spi_device + 0x00000000 0xb8 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.str1.1 + 0x00000000 0x175 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .iram1.0 0x00000000 0x156 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.spi_bus_remove_flash_device + 0x00000000 0x36 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.spi_bus_add_flash_device.str1.1 + 0x00000000 0x5c esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.spi_bus_add_flash_device + 0x00000000 0x10a esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.__func__$0 + 0x00000000 0x17 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.__func__$1 + 0x00000000 0x15 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.__func__$3 + 0x00000000 0x19 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .xt.prop 0x00000000 0x318 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .iram1.3.literal + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.5.literal + 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.2.literal + 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.4.literal + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .literal.esp_flash_init_os_functions + 0x00000000 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .literal.esp_flash_deinit_os_functions + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.use_bus_lock + 0x00000000 0xe esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.3 0x00000000 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.5 0x00000000 0x1a esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.2 0x00000000 0x1e esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.4 0x00000000 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.esp_flash_init_os_functions + 0x00000000 0x52 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.esp_flash_deinit_os_functions + 0x00000000 0x1e esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.esp_flash_init_main_bus_lock + 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .rodata.esp_flash_spi23_default_os_functions + 0x00000000 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .xt.lit 0x00000000 0x90 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .xt.prop 0x00000000 0x4a4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.11.literal + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .iram1.9 0x00000000 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .iram1.11 0x00000000 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .xt.prop 0x00000000 0xf0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .xt.prop 0x00000000 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .literal.spi_flash_chip_generic_reset + 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .literal.spi_flash_common_read_qe_sr$constprop$0$isra$0 + 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .literal.spi_flash_common_write_qe_sr$isra$0 + 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .xt.lit 0x00000000 0x88 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .xt.prop 0x00000000 0x990 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .xt.prop 0x00000000 0xcc esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .xt.prop 0x00000000 0xc0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .xt.prop 0x00000000 0x15c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .literal.spi_flash_chip_winbond_erase_block + 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .literal.spi_flash_chip_winbond_erase_sector + 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .literal.spi_flash_chip_winbond_page_program + 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .xt.prop 0x00000000 0x204 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .literal.memspi_host_read_status_hs + 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .literal.memspi_host_erase_chip + 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .literal.memspi_host_erase_sector + 0x00000000 0x10 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .literal.memspi_host_erase_block + 0x00000000 0x10 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .literal.memspi_host_program_page + 0x00000000 0x10 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .literal.memspi_host_read + 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .literal.memspi_host_set_write_protect + 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_erase_chip + 0x00000000 0x23 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.memspi_host_erase_sector.str1.1 + 0x00000000 0x4a esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_erase_sector + 0x00000000 0x46 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_erase_block + 0x00000000 0x46 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.memspi_host_program_page.str1.1 + 0x00000000 0x1e esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_program_page + 0x00000000 0x4e esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_read + 0x00000000 0x30 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_set_write_protect + 0x00000000 0x2c esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.__func__$0 + 0x00000000 0x19 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.__func__$1 + 0x00000000 0x18 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.__func__$2 + 0x00000000 0x19 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .xt.prop 0x00000000 0x36c esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .literal._esp_error_check_failed_without_abort + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .rodata._esp_error_check_failed_without_abort.str1.1 + 0x00000000 0x1e esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .text._esp_error_check_failed_without_abort + 0x00000000 0x2a esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .xt.prop 0x00000000 0x84 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .iram1.4.literal + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .iram1.5.literal + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .iram1.4 0x00000000 0xf esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .iram1.5 0x00000000 0xf esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .xt.prop 0x00000000 0x1d4 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .literal.esp_ipc_call_and_wait + 0x00000000 0x40 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .literal.esp_ipc_call + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .literal.esp_ipc_call_blocking + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .text.esp_ipc_call_and_wait + 0x00000000 0xbf esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .text.esp_ipc_call + 0x00000000 0x15 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .text.esp_ipc_call_blocking + 0x00000000 0x15 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .xt.prop 0x00000000 0x27c esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .literal.delete_entry + 0x00000000 0x54 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_stop + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_restart + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_add_user + 0x00000000 0x28 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_reset_user + 0x00000000 0x48 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_delete + 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.unsubscribe_idle + 0x00000000 0x2c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_reconfigure + 0x00000000 0x44 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_deinit + 0x00000000 0x3c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_delete_user + 0x00000000 0x28 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_status + 0x00000000 0x2c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.delete_entry + 0x00000000 0xfc esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_stop + 0x00000000 0x2f esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_restart + 0x00000000 0x2f esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_add_user + 0x00000000 0x88 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.esp_task_wdt_reset_user.str1.1 + 0x00000000 0x36 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_reset_user + 0x00000000 0xc5 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_delete + 0x00000000 0x4d esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.unsubscribe_idle.str1.1 + 0x00000000 0x26 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.unsubscribe_idle + 0x00000000 0x5c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.esp_task_wdt_reconfigure.str1.1 + 0x00000000 0x39 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_reconfigure + 0x00000000 0xcc esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.esp_task_wdt_deinit.str1.1 + 0x00000000 0x3d esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_deinit + 0x00000000 0x91 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_delete_user + 0x00000000 0x6b esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_status + 0x00000000 0x68 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$1 + 0x00000000 0x19 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$2 + 0x00000000 0xd esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$3 + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$4 + 0x00000000 0x18 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$6 + 0x00000000 0x16 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$9 + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__func__$10 + 0x00000000 0x11 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$11 + 0x00000000 0x19 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .xt.lit 0x00000000 0xb8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .xt.prop 0x00000000 0xb10 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_impl_timer_reconfigure + 0x00000000 0x10 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .literal.esp_task_wdt_impl_timer_free + 0x00000000 0x30 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .literal.esp_task_wdt_impl_timer_stop + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .text.esp_task_wdt_impl_timer_reconfigure + 0x00000000 0x4f esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .rodata.esp_task_wdt_impl_timer_free.str1.1 + 0x00000000 0x82 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .text.esp_task_wdt_impl_timer_free + 0x00000000 0x70 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .text.esp_task_wdt_impl_timer_stop + 0x00000000 0x26 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .rodata.__func__$0 + 0x00000000 0x1d esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .xt.prop 0x00000000 0x1d4 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .xt.prop 0x00000000 0x30 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .iram1.0.literal + 0x00000000 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .text 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .data 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .iram1.0 0x00000000 0x21 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .xt.prop 0x00000000 0x90 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .literal.esp_rom_spiflash_read_status + 0x00000000 0x10 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_wait_idle + 0x00000000 0xc esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_enable_write$constprop$0 + 0x00000000 0x10 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_program_page_internal$constprop$0 + 0x00000000 0x1c esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_read_statushigh + 0x00000000 0xc esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_write_status + 0x00000000 0x10 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_clear_bp + 0x00000000 0x2c esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_set_bp + 0x00000000 0x14 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_config_readmode + 0x00000000 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_erase_chip + 0x00000000 0x14 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_erase_block + 0x00000000 0x24 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_erase_sector + 0x00000000 0x24 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_write + 0x00000000 0x1c esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_write_encrypted + 0x00000000 0x10 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_read + 0x00000000 0x50 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_erase_area + 0x00000000 0x18 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_write_disable + 0x00000000 0x4 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .data 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_read_status + 0x00000000 0x62 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_wait_idle + 0x00000000 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_enable_write$constprop$0 + 0x00000000 0x3f esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_program_page_internal$constprop$0 + 0x00000000 0xd3 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_read_statushigh + 0x00000000 0x21 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_write_status + 0x00000000 0x35 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_clear_bp + 0x00000000 0xd1 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_set_bp + 0x00000000 0x50 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_config_readmode + 0x00000000 0x2cf esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_erase_chip + 0x00000000 0x38 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_erase_block + 0x00000000 0x8b esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_erase_sector + 0x00000000 0x8f esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_write + 0x00000000 0x9b esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_write_encrypted + 0x00000000 0x54 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_read + 0x00000000 0x2eb esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_erase_area + 0x00000000 0x94 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_write_disable + 0x00000000 0x1c esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_frame 0x00000000 0x1a8 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_info 0x00000000 0xf19 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_abbrev 0x00000000 0x3ed esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_loc 0x00000000 0xa8f esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_aranges + 0x00000000 0xa0 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_ranges 0x00000000 0xf8 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_line 0x00000000 0x2e03 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_str 0x00000000 0x9b9 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .xt.lit 0x00000000 0x88 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .xt.prop 0x00000000 0x804 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.mmu_hal_unmap_all + 0x00000000 0x8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .literal.mmu_hal_init + 0x00000000 0x4 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .literal.mmu_hal_paddr_to_vaddr + 0x00000000 0x28 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_unmap_all + 0x00000000 0x43 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_init + 0x00000000 0xb esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_pages_to_bytes + 0x00000000 0x8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_bytes_to_pages + 0x00000000 0x8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_paddr_to_vaddr + 0x00000000 0x117 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.__func__$0 + 0x00000000 0x1e esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.__func__$1 + 0x00000000 0x17 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .xt.prop 0x00000000 0x5c4 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .literal.cache_hal_vaddr_to_cache_level_id + 0x00000000 0x14 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .literal.cache_hal_get_cache_line_size + 0x00000000 0x10 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .literal.unlikely.cache_hal_invalidate_addr + 0x00000000 0x4 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .text.cache_hal_vaddr_to_cache_level_id + 0x00000000 0x6d esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .rodata.cache_hal_get_cache_line_size.str1.1 + 0x00000000 0x60 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .text.cache_hal_get_cache_line_size + 0x00000000 0x1c esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .text.unlikely.cache_hal_invalidate_addr + 0x00000000 0x9 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .rodata.__func__$0 + 0x00000000 0x1e esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .xt.prop 0x00000000 0x1a4 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .xt.prop 0x00000000 0x12c esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .xt.lit 0x00000000 0x48 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .xt.prop 0x00000000 0x414 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .xt.prop 0x00000000 0x114 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .literal.uart_hal_set_hw_flow_ctrl + 0x00000000 0x8 esp-idf/hal/libhal.a(uart_hal.c.obj) + .literal.uart_hal_set_sw_flow_ctrl + 0x00000000 0x8 esp-idf/hal/libhal.a(uart_hal.c.obj) + .literal.uart_hal_set_at_cmd_char + 0x00000000 0x4 esp-idf/hal/libhal.a(uart_hal.c.obj) + .literal.uart_hal_set_tx_idle_num + 0x00000000 0x4 esp-idf/hal/libhal.a(uart_hal.c.obj) + .literal.uart_hal_set_mode + 0x00000000 0x4 esp-idf/hal/libhal.a(uart_hal.c.obj) + .literal.uart_hal_inverse_signal + 0x00000000 0x18 esp-idf/hal/libhal.a(uart_hal.c.obj) + .literal.uart_hal_init + 0x00000000 0xc esp-idf/hal/libhal.a(uart_hal.c.obj) + .literal.uart_hal_set_rx_timeout + 0x00000000 0x8 esp-idf/hal/libhal.a(uart_hal.c.obj) + .literal.uart_hal_get_max_rx_timeout_thrd + 0x00000000 0x4 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(uart_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(uart_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_hw_flow_ctrl + 0x00000000 0x61 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_get_hw_flow_ctrl + 0x00000000 0x20 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_sw_flow_ctrl + 0x00000000 0xf8 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_at_cmd_char + 0x00000000 0xb0 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_tx_idle_num + 0x00000000 0x22 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_dtr + 0x00000000 0x20 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_rxfifo_full_thr + 0x00000000 0x1d esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_txfifo_empty_thr + 0x00000000 0x22 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_wakeup_thrd + 0x00000000 0x20 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_get_wakeup_thrd + 0x00000000 0x13 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_mode + 0x00000000 0x193 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_is_hw_rts_en + 0x00000000 0xf esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_inverse_signal + 0x00000000 0xe7 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_loop_back + 0x00000000 0x22 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_init + 0x00000000 0xc2 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_get_symb_len + 0x00000000 0x5d esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_set_rx_timeout + 0x00000000 0x66 esp-idf/hal/libhal.a(uart_hal.c.obj) + .text.uart_hal_get_max_rx_timeout_thrd + 0x00000000 0x26 esp-idf/hal/libhal.a(uart_hal.c.obj) + .xt.lit 0x00000000 0x48 esp-idf/hal/libhal.a(uart_hal.c.obj) + .xt.prop 0x00000000 0x540 esp-idf/hal/libhal.a(uart_hal.c.obj) + .literal.gpio_hal_intr_enable_on_core + 0x00000000 0x4 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .literal.gpio_hal_intr_disable + 0x00000000 0x4 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .text.gpio_hal_intr_enable_on_core + 0x00000000 0x7a esp-idf/hal/libhal.a(gpio_hal.c.obj) + .text.gpio_hal_intr_disable + 0x00000000 0x67 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_frame 0x00000000 0x40 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_info 0x00000000 0xc90 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_abbrev 0x00000000 0x215 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_loc 0x00000000 0x206 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_aranges + 0x00000000 0x28 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_ranges 0x00000000 0xb0 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_line 0x00000000 0x49c esp-idf/hal/libhal.a(gpio_hal.c.obj) + .debug_str 0x00000000 0x5db esp-idf/hal/libhal.a(gpio_hal.c.obj) + .comment 0x00000000 0x30 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .xt.prop 0x00000000 0xa8 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .literal.rtcio_ll_input_disable + 0x00000000 0x18 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_input_enable + 0x00000000 0x18 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_enable_input_in_sleep + 0x00000000 0x18 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_enable_output_in_sleep + 0x00000000 0x18 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_enable_sleep_setting + 0x00000000 0x18 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_disable_input_in_sleep + 0x00000000 0x18 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_disable_output_in_sleep + 0x00000000 0x18 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.rtcio_hal_set_direction + 0x00000000 0xc esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.rtcio_hal_set_direction_in_sleep + 0x00000000 0x3c esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .literal.rtcio_hal_isolate + 0x00000000 0x30 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .rodata.rtcio_ll_input_disable.str1.1 + 0x00000000 0xef esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_ll_input_disable + 0x00000000 0x44 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .rodata.rtcio_ll_input_enable.str1.1 + 0x00000000 0xb8 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_ll_input_enable + 0x00000000 0x41 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_ll_enable_input_in_sleep + 0x00000000 0x41 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_ll_enable_output_in_sleep + 0x00000000 0x43 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_ll_enable_sleep_setting + 0x00000000 0x41 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_ll_disable_input_in_sleep + 0x00000000 0x44 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_ll_disable_output_in_sleep + 0x00000000 0x46 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_hal_set_direction + 0x00000000 0x161 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_hal_set_direction_in_sleep + 0x00000000 0xa5 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .rodata.rtcio_hal_isolate.str1.1 + 0x00000000 0xac esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text.rtcio_hal_isolate + 0x00000000 0xe9 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .rodata.__func__$0 + 0x00000000 0x1b esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .rodata.__func__$1 + 0x00000000 0x1a esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .rodata.__func__$2 + 0x00000000 0x18 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .rodata.__func__$3 + 0x00000000 0x1f esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .rodata.__func__$4 + 0x00000000 0x21 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .rodata.__func__$5 + 0x00000000 0x20 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .rodata.__func__$6 + 0x00000000 0x1e esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .rodata.__func__$7 + 0x00000000 0x20 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .rodata.__func__$8 + 0x00000000 0x1f esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .rodata.__func__$9 + 0x00000000 0x16 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .rodata.__func__$10 + 0x00000000 0x17 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_frame 0x00000000 0x100 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_info 0x00000000 0x1acd esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_abbrev 0x00000000 0x32a esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_loc 0x00000000 0x4b4 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_aranges + 0x00000000 0x68 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_ranges 0x00000000 0x88 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_line 0x00000000 0x1361 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .debug_str 0x00000000 0xad8 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .comment 0x00000000 0x30 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .xt.lit 0x00000000 0x50 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .xt.prop 0x00000000 0x318 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(ledc_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(ledc_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(ledc_hal.c.obj) + .text.ledc_hal_get_clk_cfg + 0x00000000 0x31 esp-idf/hal/libhal.a(ledc_hal.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/hal/libhal.a(ledc_hal.c.obj) + .xt.prop 0x00000000 0x54 esp-idf/hal/libhal.a(ledc_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(ledc_hal_iram.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(ledc_hal_iram.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(ledc_hal_iram.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/hal/libhal.a(ledc_hal_iram.c.obj) + .xt.prop 0x00000000 0x138 esp-idf/hal/libhal.a(ledc_hal_iram.c.obj) + .text 0x00000000 0x0 esp-idf/soc/libsoc.a(interrupts.c.obj) + .data 0x00000000 0x0 esp-idf/soc/libsoc.a(interrupts.c.obj) + .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(interrupts.c.obj) + .xt.prop 0x00000000 0xc esp-idf/soc/libsoc.a(interrupts.c.obj) + .text 0x00000000 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .data 0x00000000 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .rodata.GPIO_HOLD_MASK + 0x00000000 0xa0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .xt.prop 0x00000000 0x18 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .text 0x00000000 0x0 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .data 0x00000000 0x0 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .rodata.uart_periph_signal + 0x00000000 0x48 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .debug_info 0x00000000 0x44e esp-idf/soc/libsoc.a(uart_periph.c.obj) + .debug_abbrev 0x00000000 0xfb esp-idf/soc/libsoc.a(uart_periph.c.obj) + .debug_aranges + 0x00000000 0x18 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .debug_line 0x00000000 0x205 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .debug_str 0x00000000 0xc37 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .comment 0x00000000 0x30 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .xt.prop 0x00000000 0xc esp-idf/soc/libsoc.a(uart_periph.c.obj) + .text 0x00000000 0x0 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .data 0x00000000 0x0 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .rodata.spi_periph_signal + 0x00000000 0x6c esp-idf/soc/libsoc.a(spi_periph.c.obj) + .debug_info 0x00000000 0x29c2 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .debug_abbrev 0x00000000 0x1d0 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .debug_aranges + 0x00000000 0x18 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .debug_line 0x00000000 0x213 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .debug_str 0x00000000 0x227f esp-idf/soc/libsoc.a(spi_periph.c.obj) + .comment 0x00000000 0x30 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .xt.prop 0x00000000 0xc esp-idf/soc/libsoc.a(spi_periph.c.obj) + .text 0x00000000 0x0 esp-idf/soc/libsoc.a(ledc_periph.c.obj) + .data 0x00000000 0x0 esp-idf/soc/libsoc.a(ledc_periph.c.obj) + .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(ledc_periph.c.obj) + .text 0x00000000 0x0 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .data 0x00000000 0x0 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .xt.prop 0x00000000 0x18 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .text.esp_ptr_dma_ext_capable + 0x00000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .text.esp_ptr_external_ram + 0x00000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .xt.prop 0x00000000 0x84 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .xt.prop 0x00000000 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .literal.periph_rtc_dig_clk8m_disable + 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .literal.periph_rtc_apll_acquire + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .literal.periph_rtc_apll_release + 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .literal.periph_rtc_apll_freq_set + 0x00000000 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .rodata.periph_rtc_dig_clk8m_disable.str1.1 + 0x00000000 0x46 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .text.periph_rtc_dig_clk8m_disable + 0x00000000 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .text.periph_rtc_apll_acquire + 0x00000000 0x2f esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .rodata.periph_rtc_apll_release.str1.1 + 0x00000000 0x13 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .text.periph_rtc_apll_release + 0x00000000 0x47 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .rodata.periph_rtc_apll_freq_set.str1.1 + 0x00000000 0x4f esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .text.periph_rtc_apll_freq_set + 0x00000000 0xac esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .rodata.__func__$1 + 0x00000000 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .rodata.__func__$2 + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .rodata.__func__$3 + 0x00000000 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .bss.s_apll_ref_cnt + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .bss.s_cur_apll_freq + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .xt.prop 0x00000000 0x1e0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .rtc.text.11.literal + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.s_sleep_hook_deregister + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.get_power_down_flags + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.rtcio_ll_input_enable + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.rtcio_ll_function_select$constprop$0 + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.19.literal + 0x00000000 0xe4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.24.literal + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_get_deep_sleep_wake_stub + 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.21.literal + 0x00000000 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_set_deep_sleep_wake_stub + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_deep_sleep_register_hook + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_deep_sleep_deregister_hook + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_deep_sleep_deregister_phy_hook + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.22.literal + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.23.literal + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_light_sleep_start + 0x00000000 0xc4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_disable_wakeup_source + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_timer_wakeup + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_deep_sleep + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_deep_sleep_try + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_touchpad_wakeup + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_is_valid_wakeup_gpio + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_ext0_wakeup + 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_ext1_wakeup_io + 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_disable_ext1_wakeup_io + 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_ext1_wakeup + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_gpio_wakeup + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_uart_wakeup + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_get_wakeup_cause + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_get_touchpad_wakeup_status + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_get_ext1_wakeup_status + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_pd_config + 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_deep_sleep_disable_rom_logging + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_adc_tsens_monitor + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.rtc_sleep_enable_ultra_low + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rtc.text.11 0x00000000 0x4b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.s_sleep_hook_deregister + 0x00000000 0x37 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.get_power_down_flags + 0x00000000 0xb3 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.rtcio_ll_input_enable.str1.1 + 0x00000000 0xeb esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.rtcio_ll_input_enable + 0x00000000 0x41 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.rtcio_ll_function_select$constprop$0 + 0x00000000 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.str1.1 + 0x00000000 0x1d3 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.19 0x00000000 0x424 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.24 0x00000000 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_get_deep_sleep_wake_stub + 0x00000000 0x3f esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.21 0x00000000 0xab esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_set_deep_sleep_wake_stub + 0x00000000 0xd esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_deep_sleep_register_hook + 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_deep_sleep_deregister_hook + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_deep_sleep_deregister_phy_hook + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.22 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.23 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_light_sleep_start + 0x00000000 0x2ee esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_disable_wakeup_source.str1.1 + 0x00000000 0x41 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_disable_wakeup_source + 0x00000000 0xf2 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_ulp_wakeup + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_timer_wakeup + 0x00000000 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_deep_sleep + 0x00000000 0x13 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_deep_sleep_try + 0x00000000 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_enable_touchpad_wakeup.str1.1 + 0x00000000 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_touchpad_wakeup + 0x00000000 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_is_valid_wakeup_gpio + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_enable_ext0_wakeup.str1.1 + 0x00000000 0x42 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_ext0_wakeup + 0x00000000 0x7a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_enable_ext1_wakeup_io.str1.1 + 0x00000000 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_ext1_wakeup_io + 0x00000000 0xe9 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_disable_ext1_wakeup_io.str1.1 + 0x00000000 0x42 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_disable_ext1_wakeup_io + 0x00000000 0xca esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_ext1_wakeup + 0x00000000 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_gpio_wakeup + 0x00000000 0x47 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_uart_wakeup + 0x00000000 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_wifi_wakeup + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_disable_wifi_wakeup + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_wifi_beacon_wakeup + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_disable_wifi_beacon_wakeup + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_bt_wakeup + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_disable_bt_wakeup + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_get_wakeup_cause + 0x00000000 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_get_touchpad_wakeup_status.str1.1 + 0x00000000 0x55 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_get_touchpad_wakeup_status + 0x00000000 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_get_ext1_wakeup_status + 0x00000000 0x52 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_pd_config.str1.1 + 0x00000000 0xa esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_pd_config + 0x00000000 0x72 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_deep_sleep_disable_rom_logging + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_adc_tsens_monitor + 0x00000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.rtc_sleep_enable_ultra_low + 0x00000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$18 + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$15 + 0x00000000 0x25 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$13 + 0x00000000 0xd esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$11 + 0x00000000 0x21 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$9 + 0x00000000 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$8 + 0x00000000 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$6 + 0x00000000 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .bss.s_suspended_uarts_bmap + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .bss.s_cache_suspend_cnt + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .bss.s_ultra_low_enabled + 0x00000000 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rtc.force_fast.10 + 0x00000000 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .bss.s_light_sleep_wakeup + 0x00000000 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .data.s_config + 0x00000000 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .bss.s_lightsleep_cnt + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .bss.s_dslp_cb + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .xt.lit 0x00000000 0x130 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .xt.prop 0x00000000 0xe10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .iram1.0 0x00000000 0x5 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .debug_frame 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .debug_info 0x00000000 0x11f esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .debug_abbrev 0x00000000 0xa6 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .debug_aranges + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .debug_ranges 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .debug_line 0x00000000 0xdd esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .debug_str 0x00000000 0x3d9 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .xt.prop 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .literal.esp_pm_register_inform_out_light_sleep_overhead_callback + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .literal.esp_pm_unregister_inform_out_light_sleep_overhead_callback + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .literal.periph_inform_out_light_sleep_overhead + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .literal.esp_pm_register_light_sleep_default_params_config_callback + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .literal.esp_pm_unregister_light_sleep_default_params_config_callback + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.modem_domain_pd_allowed + 0x00000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .iram1.0 0x00000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .iram1.1 0x00000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.sleep_modem_configure + 0x00000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.esp_pm_register_inform_out_light_sleep_overhead_callback + 0x00000000 0x29 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.esp_pm_unregister_inform_out_light_sleep_overhead_callback + 0x00000000 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.periph_inform_out_light_sleep_overhead + 0x00000000 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.esp_pm_register_light_sleep_default_params_config_callback + 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.esp_pm_unregister_light_sleep_default_params_config_callback + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .bss.s_light_sleep_default_params_config_cb + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .bss.s_periph_inform_out_light_sleep_overhead_cb + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_frame 0x00000000 0xe8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_info 0x00000000 0x316 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_abbrev 0x00000000 0x19a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_loc 0x00000000 0x135 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_aranges + 0x00000000 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_ranges 0x00000000 0xa0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_line 0x00000000 0x5ce esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_str 0x00000000 0x50a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .xt.prop 0x00000000 0x1f8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .literal.esp_gpio_is_pin_reserved + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .text.esp_gpio_is_pin_reserved + 0x00000000 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .xt.prop 0x00000000 0x78 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .xt.prop 0x00000000 0x174 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .xt.prop 0x00000000 0x1b0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .literal.rtc_sleep_finish + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_sleep_init + 0x00000000 0xa4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_sleep_low_init + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_sleep_start + 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_deep_sleep_start + 0x00000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_finish + 0x00000000 0x37 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_get_default_config + 0x00000000 0xa9 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_init + 0x00000000 0x601 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_low_init + 0x00000000 0x61 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_start + 0x00000000 0x69 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_deep_sleep_start + 0x00000000 0x9a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_frame 0x00000000 0xa0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_info 0x00000000 0x58d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_abbrev 0x00000000 0x269 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_loc 0x00000000 0x14e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_aranges + 0x00000000 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_ranges 0x00000000 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_line 0x00000000 0x22d0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_str 0x00000000 0x560 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .xt.prop 0x00000000 0x228 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.xTaskCreatePinnedToCoreWithCaps + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .literal.vTaskDeleteWithCaps + 0x00000000 0x80 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .literal.prvTaskDeleteWithCapsTask + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .literal.xQueueCreateWithCaps + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .literal.vQueueDeleteWithCaps + 0x00000000 0x20 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .literal.xSemaphoreCreateGenericWithCaps + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .literal.vSemaphoreDeleteWithCaps + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .literal.xStreamBufferGenericCreateWithCaps + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .literal.vStreamBufferGenericDeleteWithCaps + 0x00000000 0x28 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.xTaskCreatePinnedToCoreWithCaps + 0x00000000 0x6e esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .rodata.vTaskDeleteWithCaps.str1.1 + 0x00000000 0x1a2 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.vTaskDeleteWithCaps + 0x00000000 0x17b esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.prvTaskDeleteWithCapsTask + 0x00000000 0x32 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.xQueueCreateWithCaps + 0x00000000 0x55 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.vQueueDeleteWithCaps + 0x00000000 0x3f esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.xSemaphoreCreateGenericWithCaps + 0x00000000 0x60 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.vSemaphoreDeleteWithCaps + 0x00000000 0x37 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.xStreamBufferGenericCreateWithCaps + 0x00000000 0x64 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.vStreamBufferGenericDeleteWithCaps + 0x00000000 0x5a esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .rodata.__func__$0 + 0x00000000 0x23 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .rodata.__func__$1 + 0x00000000 0x19 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .rodata.__func__$2 + 0x00000000 0x15 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .rodata.__func__$3 + 0x00000000 0x1a esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .rodata.__func__$4 + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .debug_frame 0x00000000 0xe8 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .debug_info 0x00000000 0x1cac esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .debug_abbrev 0x00000000 0x4e2 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .debug_loc 0x00000000 0x3ac esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .debug_aranges + 0x00000000 0x60 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .debug_ranges 0x00000000 0x68 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .debug_line 0x00000000 0xf1f esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .debug_str 0x00000000 0xed8 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .comment 0x00000000 0x30 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .xt.lit 0x00000000 0x48 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .xt.prop 0x00000000 0x3d8 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .literal.prvWriteBytesToBuffer + 0x00000000 0x20 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.prvWriteMessageToBuffer + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.prvReadBytesFromBuffer + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.prvReadMessageFromBuffer + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.prvInitialiseNewStreamBuffer$isra$0 + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferGenericCreate + 0x00000000 0x24 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferGenericCreateStatic + 0x00000000 0x28 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferGetStaticBuffers + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.vStreamBufferDelete + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferReset + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferSetTriggerLevel + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferSpacesAvailable + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferBytesAvailable + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferSend + 0x00000000 0x58 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferSendFromISR + 0x00000000 0x28 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferReceive + 0x00000000 0x44 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferNextMessageLengthBytes + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferReceiveFromISR + 0x00000000 0x24 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferIsEmpty + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferIsFull + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferSendCompletedFromISR + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferReceiveCompletedFromISR + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.prvBytesInBuffer + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.prvWriteBytesToBuffer.str1.1 + 0x00000000 0xb9 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.prvWriteBytesToBuffer + 0x00000000 0x6e esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.prvWriteMessageToBuffer + 0x00000000 0x47 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.prvReadBytesFromBuffer.str1.1 + 0x00000000 0x4b esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.prvReadBytesFromBuffer + 0x00000000 0x5c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.prvReadMessageFromBuffer + 0x00000000 0x44 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.prvInitialiseNewStreamBuffer$isra$0.str1.1 + 0x00000000 0x48 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.prvInitialiseNewStreamBuffer$isra$0 + 0x00000000 0x46 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.xStreamBufferGenericCreate.str1.1 + 0x00000000 0x64 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferGenericCreate + 0x00000000 0x73 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.xStreamBufferGenericCreateStatic.str1.1 + 0x00000000 0x52 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferGenericCreateStatic + 0x00000000 0x92 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.xStreamBufferGetStaticBuffers.str1.1 + 0x00000000 0x41 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferGetStaticBuffers + 0x00000000 0x4a esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.vStreamBufferDelete + 0x00000000 0x37 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferReset + 0x00000000 0x56 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferSetTriggerLevel + 0x00000000 0x2b esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferSpacesAvailable + 0x00000000 0x40 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferBytesAvailable + 0x00000000 0x23 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.xStreamBufferSend.str1.1 + 0x00000000 0x5d esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferSend + 0x00000000 0x14c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferSendFromISR + 0x00000000 0x8b esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.xStreamBufferReceive.str1.1 + 0x00000000 0x3e esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferReceive + 0x00000000 0x100 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.xStreamBufferNextMessageLengthBytes.str1.1 + 0x00000000 0x15 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferNextMessageLengthBytes + 0x00000000 0x51 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferReceiveFromISR + 0x00000000 0x83 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferIsEmpty + 0x00000000 0x2e esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferIsFull + 0x00000000 0x32 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferSendCompletedFromISR + 0x00000000 0x4e esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferReceiveCompletedFromISR + 0x00000000 0x4e esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$0 + 0x00000000 0x25 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$1 + 0x00000000 0x22 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$2 + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$3 + 0x00000000 0x15 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$4 + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$5 + 0x00000000 0x24 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$6 + 0x00000000 0x17 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$7 + 0x00000000 0x15 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$8 + 0x00000000 0x19 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$9 + 0x00000000 0x16 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$11 + 0x00000000 0x12 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$12 + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$13 + 0x00000000 0x1d esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$14 + 0x00000000 0x1d esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$15 + 0x00000000 0x13 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$16 + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$17 + 0x00000000 0x1e esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$18 + 0x00000000 0x21 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$20 + 0x00000000 0x1d esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$21 + 0x00000000 0x1b esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .debug_frame 0x00000000 0x238 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .debug_info 0x00000000 0x2192 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .debug_abbrev 0x00000000 0x3ce esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .debug_loc 0x00000000 0x131a esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .debug_aranges + 0x00000000 0xd0 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .debug_ranges 0x00000000 0xc0 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .debug_line 0x00000000 0x1f0a esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .debug_str 0x00000000 0xb42 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .comment 0x00000000 0x30 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .xt.lit 0x00000000 0xb0 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .xt.prop 0x00000000 0x8b8 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.esp_err_to_name_r + 0x00000000 0x18 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .text 0x00000000 0x0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .data 0x00000000 0x0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .rodata.esp_err_to_name_r.str1.1 + 0x00000000 0xc esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .text.esp_err_to_name_r + 0x00000000 0x57 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .xt.prop 0x00000000 0xc0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .literal.esp_event_handler_instance_register + 0x00000000 0x8 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .literal.esp_event_handler_instance_unregister + 0x00000000 0x8 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .literal.esp_event_isr_post + 0x00000000 0x8 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .literal.esp_event_loop_delete_default + 0x00000000 0x8 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .text 0x00000000 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .data 0x00000000 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .text.esp_event_handler_instance_register + 0x00000000 0x22 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .text.esp_event_handler_instance_unregister + 0x00000000 0x1e esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .text.esp_event_isr_post + 0x00000000 0x22 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .text.esp_event_loop_delete_default + 0x00000000 0x1c esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .xt.prop 0x00000000 0x1f8 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .literal.handler_instances_remove_all + 0x00000000 0x8 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .literal.esp_event_loop_delete + 0x00000000 0x4c esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .literal.esp_event_handler_instance_register_with + 0x00000000 0x4 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .literal.esp_event_handler_instance_unregister_with + 0x00000000 0x4 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .literal.esp_event_isr_post_to + 0x00000000 0x24 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text 0x00000000 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .data 0x00000000 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text.handler_instances_remove_all + 0x00000000 0x33 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text.esp_event_loop_delete + 0x00000000 0x120 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text.esp_event_handler_instance_register_with + 0x00000000 0x1d esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text.esp_event_handler_instance_unregister_with + 0x00000000 0x1c esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text.esp_event_isr_post_to + 0x00000000 0xa2 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text.esp_event_dump + 0x00000000 0x7 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .rodata.__func__$0 + 0x00000000 0x16 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .rodata.__func__$4 + 0x00000000 0x16 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .xt.lit 0x00000000 0x88 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .xt.prop 0x00000000 0xb10 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._ZZ27nvs_flash_read_security_cfgENKUlPhS_mE_clES_S_m$isra$0 + 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_dump + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_init_partition_ptr + 0x00000000 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_secure_init_partition + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_secure_init + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_find_key + 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_erase_all + 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_set_i16 + 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_set_i32 + 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_set_i64 + 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_set_u64 + 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_set_str + 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_get_i16 + 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_get_i32 + 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_get_i64 + 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_get_u64 + 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_get_str + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_get_stats + 0x00000000 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_get_used_entry_count + 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_generate_keys + 0x00000000 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_read_security_cfg + 0x00000000 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_register_security_scheme + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_get_default_security_scheme + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_entry_find + 0x00000000 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_entry_find_in_handle + 0x00000000 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_entry_next + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_entry_info + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_release_iterator + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._ZL24close_handles_and_deinitPKc + 0x00000000 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_erase_partition + 0x00000000 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_erase + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_erase_partition_ptr + 0x00000000 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_deinit_partition + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_deinit + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZZ27nvs_flash_read_security_cfgENKUlPhS_mE_clES_S_m$isra$0 + 0x00000000 0x43 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_dump + 0x00000000 0x31 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_init_partition_ptr + 0x00000000 0x60 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_secure_init_partition + 0x00000000 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_secure_init + 0x00000000 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_find_key + 0x00000000 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_erase_all + 0x00000000 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_set_i16 + 0x00000000 0x40 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_set_i32 + 0x00000000 0x3a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_set_i64 + 0x00000000 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_set_u64 + 0x00000000 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_set_str + 0x00000000 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_i16 + 0x00000000 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_i32 + 0x00000000 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_i64 + 0x00000000 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_u64 + 0x00000000 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_str + 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_stats + 0x00000000 0x60 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_used_entry_count + 0x00000000 0x42 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_generate_keys + 0x00000000 0xee esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_read_security_cfg + 0x00000000 0xde esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_register_security_scheme + 0x00000000 0x1a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_get_default_security_scheme + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_generate_keys_v2 + 0x00000000 0x2e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_read_security_cfg_v2 + 0x00000000 0x2e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_entry_find + 0x00000000 0x8e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_entry_find_in_handle + 0x00000000 0x82 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_entry_next + 0x00000000 0x3b esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_entry_info + 0x00000000 0x2b esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_release_iterator + 0x00000000 0xe esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZL24close_handles_and_deinitPKc + 0x00000000 0x62 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_erase_partition + 0x00000000 0x63 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_erase + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_erase_partition_ptr + 0x00000000 0x5a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_deinit_partition + 0x00000000 0x2c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_deinit + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .bss._ZL26nvs_sec_default_scheme_cfg + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.lit 0x00000000 0x1a0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop 0x00000000 0xe1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage9debugDumpEv + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage9fillStatsER11nvs_stats_t + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage13fillEntryInfoERNS_4ItemER16nvs_entry_info_t + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage9nextEntryEP21nvs_opaque_iterator_t + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage11findEntryNsEP21nvs_opaque_iterator_th + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage15clearNamespacesEv + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage9findEntryEP21nvs_opaque_iterator_tPKc + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZNK3nvs7Storage7isValidEv + 0x00000000 0x11 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage9debugDumpEv + 0x00000000 0x16 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage9fillStatsER11nvs_stats_t + 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage13fillEntryInfoERNS_4ItemER16nvs_entry_info_t + 0x00000000 0x3b esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage9nextEntryEP21nvs_opaque_iterator_t + 0x00000000 0x8f esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage11findEntryNsEP21nvs_opaque_iterator_th + 0x00000000 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage15clearNamespacesEv + 0x00000000 0xe esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage9findEntryEP21nvs_opaque_iterator_tPKc + 0x00000000 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xt.lit 0x00000000 0xc8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xt.prop 0x00000000 0xd38 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimple9debugDumpEv + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimple9fillStatsER11nvs_stats_t + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimple22calcEntriesInNamespaceERj + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimple9findEntryEP21nvs_opaque_iterator_tPKc + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimple11findEntryNsEP21nvs_opaque_iterator_t + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimple9nextEntryEP21nvs_opaque_iterator_t + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple9debugDumpEv + 0x00000000 0xe esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple9fillStatsER11nvs_stats_t + 0x00000000 0x11 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple22calcEntriesInNamespaceERj + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple9findEntryEP21nvs_opaque_iterator_tPKc + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple11findEntryNsEP21nvs_opaque_iterator_t + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple9nextEntryEP21nvs_opaque_iterator_t + 0x00000000 0x11 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZNK3nvs15NVSHandleSimple18get_partition_nameEv + 0x00000000 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZNK3nvs15NVSHandleSimple11get_storageEv + 0x00000000 0x7 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .xt.lit 0x00000000 0x98 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .xt.prop 0x00000000 0x414 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .group 0x00000000 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .xt.lit 0x00000000 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .xt.prop 0x00000000 0x1b0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .group 0x00000000 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .literal._ZN3nvs19NVSPartitionManager21secure_init_partitionEPKcP13nvs_sec_cfg_t + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .literal._ZN3nvs19NVSPartitionManager16deinit_partitionEPKc + 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text._ZN3nvs19NVSPartitionManager17open_handles_sizeEv + 0x00000000 0x7 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text._ZN3nvs19NVSPartitionManager21secure_init_partitionEPKcP13nvs_sec_cfg_t + 0x00000000 0x8b esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text._ZN3nvs19NVSPartitionManager16deinit_partitionEPKc + 0x00000000 0x9f esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.lit 0x00000000 0x40 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.prop 0x00000000 0x3d8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .literal._ZN3nvs4Lock6uninitEv + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .text._ZN3nvs4Lock6uninitEv + 0x00000000 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .xt.lit 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .xt.prop 0x00000000 0xcc esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .literal._ZN3nvs8HashList13HashListBlockC2Ev + 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .xt.lit 0x00000000 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .xt.prop 0x00000000 0x234 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .group 0x00000000 0x2c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page15pageStateToNameENS0_9PageStateE + 0x00000000 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page11calcEntriesER11nvs_stats_t + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZNK3nvs4Page9debugDumpEv + 0x00000000 0x40 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page8findItemEhNS_8ItemTypeEPKchNS_9VerOffsetE + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page10setVersionEh + 0x00000000 0x1a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .rodata._ZN3nvs4Page15pageStateToNameENS0_9PageStateE.str1.1 + 0x00000000 0xb2 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page15pageStateToNameENS0_9PageStateE + 0x00000000 0x58 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .rodata._ZN3nvs4Page11calcEntriesER11nvs_stats_t.str1.1 + 0x00000000 0x4a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page11calcEntriesER11nvs_stats_t + 0x00000000 0x65 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .rodata._ZNK3nvs4Page9debugDumpEv.str1.1 + 0x00000000 0xb8 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZNK3nvs4Page9debugDumpEv + 0x00000000 0xd7 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page8findItemEhNS_8ItemTypeEPKchNS_9VerOffsetE + 0x00000000 0x2c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .xt.lit 0x00000000 0xc0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .xt.prop 0x00000000 0xf54 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .group 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .literal._ZN3nvs11PageManager9fillStatsER11nvs_stats_t + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .text._ZN3nvs11PageManager9fillStatsER11nvs_stats_t + 0x00000000 0x4c esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .xt.lit 0x00000000 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .xt.prop 0x00000000 0x30c esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .literal._ZN3nvs16partition_lookup30lookup_nvs_encrypted_partitionEPKcP13nvs_sec_cfg_tPPNS_12NVSPartitionE + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .text._ZN3nvs16partition_lookup30lookup_nvs_encrypted_partitionEPKcP13nvs_sec_cfg_tPPNS_12NVSPartitionE + 0x00000000 0x5d esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .xt.lit 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .xt.prop 0x00000000 0x90 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .xt.lit 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .xt.prop 0x00000000 0x90 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .group 0x00000000 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .group 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .literal._ZN3nvs21NVSEncryptedPartitionD5Ev + 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .literal._ZN3nvs21NVSEncryptedPartition4readEjPvj + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .literal._ZN3nvs21NVSEncryptedPartition5writeEjPKvj + 0x00000000 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .literal._ZN3nvs21NVSEncryptedPartitionC2EPK15esp_partition_t + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .literal._ZN3nvs21NVSEncryptedPartition4initEP13nvs_sec_cfg_t + 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .text._ZN3nvs21NVSEncryptedPartitionD2Ev + 0x00000000 0x5 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .text._ZN3nvs21NVSEncryptedPartitionD0Ev + 0x00000000 0xe esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .text._ZN3nvs21NVSEncryptedPartition4readEjPvj + 0x00000000 0x57 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .text._ZN3nvs21NVSEncryptedPartition5writeEjPKvj + 0x00000000 0x96 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .text._ZN3nvs21NVSEncryptedPartitionC2EPK15esp_partition_t + 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .text._ZN3nvs21NVSEncryptedPartition4initEP13nvs_sec_cfg_t + 0x00000000 0x45 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .rodata._ZTVN3nvs21NVSEncryptedPartitionE + 0x00000000 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .debug_frame 0x00000000 0xa0 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .debug_info 0x00000000 0x39c1 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .debug_abbrev 0x00000000 0x7dd esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .debug_loc 0x00000000 0x3b2 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .debug_aranges + 0x00000000 0x48 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .debug_ranges 0x00000000 0xa8 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .debug_line 0x00000000 0xe62 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .debug_str 0x00000000 0x22e9 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .comment 0x00000000 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .xt.lit._ZN3nvs21NVSEncryptedPartitionD5Ev + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .xt.lit 0x00000000 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .xt.prop._ZN3nvs21NVSEncryptedPartitionD5Ev + 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .xt.prop 0x00000000 0x114 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .xt.prop._ZN3nvs21NVSEncryptedPartitionD2Ev + 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .xt.prop._ZN3nvs21NVSEncryptedPartitionD0Ev + 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .xt.prop._ZTVN3nvs21NVSEncryptedPartitionE + 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .literal.esp_netif_next + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .text 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .data 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .text.esp_netif_next + 0x00000000 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .xt.prop 0x00000000 0x264 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .literal.esp_netif_find_if_api + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.get_handle_from_ifkey_api + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcps_start_api + 0x00000000 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_set_hostname_api + 0x00000000 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcps_get_clients_by_mac_api + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_set_dns_info_api + 0x00000000 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_dns_info_api + 0x00000000 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_create_ip6_linklocal_api + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_netif_impl_name_api + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_ppp_set_auth_api + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_remove_ip6_address_api + 0x00000000 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_join_ip6_multicast_group_api + 0x00000000 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_leave_ip6_multicast_group_api + 0x00000000 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_set_ip_info_api + 0x00000000 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_add_ip6_address_api + 0x00000000 0x3c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_set_default_netif + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_default_netif + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_set_ip4_addr + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_ip4addr_ntoa + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_ip4addr_aton + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_str_to_ip4 + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_str_to_ip6 + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_deinit + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_tcpip_exec + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_handle_from_ifkey + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_find_if + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_destroy + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcps_start + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_set_hostname + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_mac + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcps_option_api + 0x00000000 0x3c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_set_ip_info + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcps_get_clients_by_mac + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_set_dns_info + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_dns_info + 0x00000000 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_ip6_get_addr_type + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_create_ip6_linklocal + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_ip6_linklocal + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_ip6_global + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_all_ip6 + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_all_preferred_ip6 + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcps_option + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcpc_option + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_netif_impl_name + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_ppp_set_auth + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_join_ip6_multicast_group + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_leave_ip6_multicast_group + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_add_ip6_address + 0x00000000 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_remove_ip6_address + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .data 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.tcpip_exec_api + 0x00000000 0xe esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcpc_option_api + 0x00000000 0x6e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_find_if_api + 0x00000000 0x2f esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.get_handle_from_ifkey_api + 0x00000000 0x13 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_start_api + 0x00000000 0x9b esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_set_hostname_api.str1.1 + 0x00000000 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_hostname_api + 0x00000000 0x54 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_get_clients_by_mac_api + 0x00000000 0x29 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_dns_info_api + 0x00000000 0x50 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_dns_info_api + 0x00000000 0x4f esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_create_ip6_linklocal_api + 0x00000000 0x1e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_netif_impl_name_api + 0x00000000 0x1b esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_ppp_set_auth_api + 0x00000000 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_remove_ip6_address_api + 0x00000000 0x3a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_join_ip6_multicast_group_api.str1.1 + 0x00000000 0x3b esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_join_ip6_multicast_group_api + 0x00000000 0x4a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_leave_ip6_multicast_group_api.str1.1 + 0x00000000 0x44 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_leave_ip6_multicast_group_api + 0x00000000 0x56 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_set_ip_info_api.str1.1 + 0x00000000 0x46 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_ip_info_api + 0x00000000 0x107 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_add_ip6_address_api.str1.1 + 0x00000000 0x7a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_add_ip6_address_api + 0x00000000 0xe4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_default_netif + 0x00000000 0x11 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_default_netif + 0x00000000 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_ip4_addr + 0x00000000 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_ip4addr_ntoa + 0x00000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_ip4addr_aton + 0x00000000 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_str_to_ip4 + 0x00000000 0x32 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_str_to_ip6 + 0x00000000 0x32 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_handle_from_netif_impl + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_netif_impl + 0x00000000 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_deinit + 0x00000000 0x17 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_tcpip_exec + 0x00000000 0x1e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_handle_from_ifkey + 0x00000000 0x24 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_find_if + 0x00000000 0x2e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_destroy + 0x00000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_transmit + 0x00000000 0x12 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_get_status + 0x00000000 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_start + 0x00000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_hostname + 0x00000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_mac + 0x00000000 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_dhcps_option_api.str1.1 + 0x00000000 0x5c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_option_api + 0x00000000 0x1e6 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_ip_info + 0x00000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_get_clients_by_mac + 0x00000000 0x38 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_dns_info + 0x00000000 0x58 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_get_dns_info.str1.1 + 0x00000000 0x34 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_dns_info + 0x00000000 0x41 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_ip6_get_addr_type + 0x00000000 0x4f esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_create_ip6_linklocal + 0x00000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_ip6_linklocal + 0x00000000 0x42 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_ip6_global + 0x00000000 0x6e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_all_ip6 + 0x00000000 0x8f esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_all_preferred_ip6 + 0x00000000 0x93 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_route_prio + 0x00000000 0xe esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_option + 0x00000000 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcpc_option + 0x00000000 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_netif_impl_index + 0x00000000 0x17 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_netif_impl_name + 0x00000000 0x20 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_napt_enable + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_ppp_set_auth + 0x00000000 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_napt_disable + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_link_speed + 0x00000000 0x7 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_join_ip6_multicast_group + 0x00000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_leave_ip6_multicast_group + 0x00000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_add_ip6_address + 0x00000000 0x31 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_remove_ip6_address + 0x00000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0x1e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.__FUNCTION__$1 + 0x00000000 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.__func__$2 + 0x00000000 0x17 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .xt.lit 0x00000000 0x2d0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .xt.prop 0x00000000 0x20e8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .xt.prop 0x00000000 0x138 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .xt.prop 0x00000000 0xa8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .xt.prop 0x00000000 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .literal.sha384_vector + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.sha512_vector + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.crypto_hash_init + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.crypto_hash_update + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.crypto_hash_finish + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.hmac_sha384_vector + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.hmac_sha384 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.aes_128_ctr_encrypt + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.crypto_mod_exp + 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.crypto_dh_init + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.sha384_vector + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.sha512_vector + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.crypto_hash_init + 0x00000000 0xaf esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.crypto_hash_update + 0x00000000 0x21 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.crypto_hash_finish + 0x00000000 0xb2 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.hmac_sha384_vector + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.hmac_sha384 + 0x00000000 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.aes_128_ctr_encrypt + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.crypto_mod_exp + 0x00000000 0xbe esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.crypto_dh_init + 0x00000000 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.crypto_global_init + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.crypto_global_deinit + 0x00000000 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .xt.lit 0x00000000 0x110 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .xt.prop 0x00000000 0x99c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.rc4_skip + 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .xt.prop 0x00000000 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .xt.prop 0x00000000 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .xt.prop 0x00000000 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .xt.prop 0x00000000 0x108 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .literal.ccmp_encrypt_pv1 + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .literal.ccmp_256_decrypt + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .literal.ccmp_256_encrypt + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .text.ccmp_get_pn + 0x00000000 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .text.ccmp_encrypt_pv1 + 0x00000000 0x15a esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .text.ccmp_256_decrypt + 0x00000000 0x7f esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .text.ccmp_256_encrypt + 0x00000000 0xe7 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .xt.prop 0x00000000 0x264 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .literal.aes_gcm_ad + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + .text.aes_gcm_ad + 0x00000000 0x9c esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + .xt.lit 0x00000000 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + .xt.prop 0x00000000 0x348 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + .literal.hwaddr_aton2 + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .literal.printf_encode + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .literal.wpa_ssid_txt + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .literal.wpa_merge_byte_arrays + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .literal.str_clear_free + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .literal.os_gmtime + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .literal.os_mktime + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .literal.get_param + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.hwaddr_aton2 + 0x00000000 0x55 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .rodata.printf_encode.str1.1 + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.printf_encode + 0x00000000 0xa7 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.wpa_ssid_txt + 0x00000000 0x1f esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.__hide_aliasing_typecast + 0x00000000 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.wpa_is_hex + 0x00000000 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.has_ctrl_char + 0x00000000 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.wpa_merge_byte_arrays + 0x00000000 0x55 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.str_clear_free + 0x00000000 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.os_gmtime + 0x00000000 0x37 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.os_mktime + 0x00000000 0x65 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.rssi_to_rcpi + 0x00000000 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.get_param + 0x00000000 0x53 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .bss.ssid_txt$0 + 0x00000000 0x81 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .xt.lit 0x00000000 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .xt.prop 0x00000000 0x978 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + .xt.prop 0x00000000 0xcc esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .xt.prop 0x00000000 0x1ec esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .text 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .data 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .xt.prop 0x00000000 0x3c esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .literal.esp_wifi_deinit + 0x00000000 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .text 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .data 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .text.esp_wifi_deinit + 0x00000000 0x1a esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .text.ieee80211_ftm_attach + 0x00000000 0x7 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .xt.prop 0x00000000 0x234 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .literal.esp_wifi_set_default_wifi_sta_handlers + 0x00000000 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_wifi_set_default_wifi_ap_handlers + 0x00000000 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_wifi_set_default_wifi_nan_handlers + 0x00000000 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_wifi_clear_default_wifi_driver_and_handlers + 0x00000000 0x14 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_netif_create_default_wifi_ap + 0x00000000 0x34 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_netif_create_default_wifi_sta + 0x00000000 0x34 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_netif_destroy_default_wifi + 0x00000000 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_netif_create_wifi + 0x00000000 0x20 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .data 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.esp_wifi_set_default_wifi_sta_handlers + 0x00000000 0xd esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.esp_wifi_set_default_wifi_ap_handlers + 0x00000000 0xd esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.esp_wifi_set_default_wifi_nan_handlers + 0x00000000 0xd esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.esp_wifi_clear_default_wifi_driver_and_handlers + 0x00000000 0x5e esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.esp_netif_create_default_wifi_ap + 0x00000000 0x64 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.esp_netif_create_default_wifi_sta + 0x00000000 0x64 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.esp_netif_destroy_default_wifi + 0x00000000 0x17 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.esp_netif_create_wifi + 0x00000000 0x47 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .rodata.__func__$1 + 0x00000000 0x16 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .rodata.__func__$2 + 0x00000000 0x22 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .rodata.__func__$3 + 0x00000000 0x21 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .xt.lit 0x00000000 0xb0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .xt.prop 0x00000000 0x648 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_wifi_destroy_if_driver + 0x00000000 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .text 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .data 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .text.esp_wifi_destroy_if_driver + 0x00000000 0x26 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .xt.lit 0x00000000 0x50 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .xt.prop 0x00000000 0x2a0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .text 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .data 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .rodata.memset_func + 0x00000000 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .xt.lit 0x00000000 0x158 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .xt.prop 0x00000000 0xc54 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .literal.mbedtls_mpi_lt_mpi_ct + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_swap + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_read_string + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_read_file + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_mod_int + 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_write_string + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_write_file + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_gen_prime + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_self_test + 0x00000000 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mpi_get_digit + 0x00000000 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mbedtls_mpi_lt_mpi_ct + 0x00000000 0x64 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mbedtls_mpi_swap + 0x00000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mbedtls_mpi_read_string + 0x00000000 0x123 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mbedtls_mpi_read_file + 0x00000000 0xb1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .rodata.mbedtls_mpi_write_string.str1.1 + 0x00000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mbedtls_mpi_write_string + 0x00000000 0x159 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .rodata.mbedtls_mpi_write_file.str1.1 + 0x00000000 0x6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mbedtls_mpi_write_file + 0x00000000 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mbedtls_mpi_gen_prime + 0x00000000 0x208 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .rodata.mbedtls_mpi_self_test.str1.1 + 0x00000000 0x44c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mbedtls_mpi_self_test + 0x00000000 0x29f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .rodata.gcd_pairs + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .xt.lit 0x00000000 0x158 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .xt.prop 0x00000000 0x1668 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_core_add_if + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_mul + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_exp_mod + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_check_zero_ct + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .literal.mbedtls_mpi_core_from_mont_rep + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_clz + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_add_if + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_mul + 0x00000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_exp_mod_working_limbs + 0x00000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_exp_mod + 0x00000000 0x170 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_check_zero_ct + 0x00000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .text.mbedtls_mpi_core_from_mont_rep + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .xt.lit 0x00000000 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .xt.prop 0x00000000 0xa74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .literal.mbedtls_ct_uint_lt + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_ct_uint_ne + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.get_one_and_zeros_padding + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.get_zeros_padding + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.add_zeros_padding + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.get_pkcs_padding + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.get_zeros_and_len_padding + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_list + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_info_from_string + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_set_iv + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_update_ad + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_finish + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_set_padding_mode + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_write_tag + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_check_tag + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_crypt + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_auth_encrypt_ext + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_auth_decrypt_ext + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_ct_bool + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_ct_uint_lt + 0x00000000 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_ct_uint_ne + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.add_pkcs_padding + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.add_one_and_zeros_padding + 0x00000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.get_one_and_zeros_padding + 0x00000000 0x85 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.add_zeros_and_len_padding + 0x00000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.get_zeros_padding + 0x00000000 0x56 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.get_no_padding + 0x00000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.add_zeros_padding + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.get_pkcs_padding + 0x00000000 0x84 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.get_zeros_and_len_padding + 0x00000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_list + 0x00000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_info_from_string + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_set_iv + 0x00000000 0xa2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_reset + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_update_ad + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_finish + 0x00000000 0x13a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_set_padding_mode + 0x00000000 0x63 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_write_tag + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_check_tag + 0x00000000 0x65 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_crypt + 0x00000000 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_auth_encrypt_ext + 0x00000000 0x87 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_auth_decrypt_ext + 0x00000000 0x7f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .bss.supported_init + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .xt.lit 0x00000000 0xc8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .xt.prop 0x00000000 0xbac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .bss.mbedtls_cipher_supported + 0x00000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .xt.lit 0x00000000 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .xt.prop 0x00000000 0x894 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .literal.mbedtls_ct_memcpy_offset + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .text.mbedtls_ct_memcpy_offset + 0x00000000 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .xt.prop 0x00000000 0x150 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .literal.cmac_test_subkeys$constprop$0 + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .literal.mbedtls_cipher_cmac_reset + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .literal.mbedtls_cipher_cmac + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .literal.cmac_test_wth_cipher$constprop$0 + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .literal.mbedtls_aes_cmac_prf_128 + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .literal.mbedtls_cmac_self_test + 0x00000000 0x7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.cmac_test_subkeys$constprop$0.str1.1 + 0x00000000 0x43 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .text.cmac_test_subkeys$constprop$0 + 0x00000000 0x121 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .text.mbedtls_cipher_cmac_reset + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .text.mbedtls_cipher_cmac + 0x00000000 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.cmac_test_wth_cipher$constprop$0.str1.1 + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .text.cmac_test_wth_cipher$constprop$0 + 0x00000000 0xab esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .text.mbedtls_aes_cmac_prf_128 + 0x00000000 0x94 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.mbedtls_cmac_self_test.str1.1 + 0x00000000 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .text.mbedtls_cmac_self_test + 0x00000000 0x125 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.PRFT 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.PRFM 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.PRFKlen + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.PRFK 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_256_expected_result + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_256_subkeys + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_256_key + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_192_expected_result + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_192_subkeys + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_192_key + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_128_expected_result + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_128_subkeys + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_128_key + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.aes_message_lengths + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .rodata.test_message + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .xt.prop 0x00000000 0x5b8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .literal.mbedtls_md_clone + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .literal.mbedtls_md_error_from_psa + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .literal.mbedtls_md_list + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .literal.mbedtls_md_info_from_string + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .literal.mbedtls_md_get_name + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .literal.mbedtls_md_file + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .literal.mbedtls_md_hmac + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_clone + 0x00000000 0xac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_get_type + 0x00000000 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_error_from_psa + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_list + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_info_from_string + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_get_name + 0x00000000 0x1b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_info_from_ctx + 0x00000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.mbedtls_md_file.str1.1 + 0x00000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_file + 0x00000000 0xb7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_hmac + 0x00000000 0x5e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.str1.1 + 0x00000000 0x4d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.md_names + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.supported_digests + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .xt.lit 0x00000000 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .xt.prop 0x00000000 0xb40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .literal.mbedtls_md5_self_test + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .rodata.mbedtls_md5_self_test.str1.1 + 0x00000000 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .text.mbedtls_md5_self_test + 0x00000000 0x77 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .rodata.md5_test_sum + 0x00000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .rodata.md5_test_buflen + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .rodata.md5_test_buf + 0x00000000 0x237 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .xt.prop 0x00000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .literal.mbedtls_platform_set_calloc_free + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .text.mbedtls_platform_set_calloc_free + 0x00000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .text.mbedtls_platform_setup + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .text.mbedtls_platform_teardown + 0x00000000 0x5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .xt.prop 0x00000000 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .xt.prop 0x00000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .literal.convert_raw_to_der_single_int + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .literal.convert_der_to_raw_single_int + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .literal.psa_pk_status_to_mbedtls + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .literal.mbedtls_psa_get_random + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .literal.mbedtls_ecdsa_raw_to_der + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .literal.mbedtls_ecdsa_der_to_raw + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .text.convert_raw_to_der_single_int + 0x00000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .text.convert_der_to_raw_single_int + 0x00000000 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .text.psa_generic_status_to_mbedtls + 0x00000000 0x3f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .text.psa_status_to_mbedtls + 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .text.psa_pk_status_to_mbedtls + 0x00000000 0x8e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .text.mbedtls_ecc_group_to_psa + 0x00000000 0x7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .text.mbedtls_ecc_group_from_psa + 0x00000000 0x97 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .text.mbedtls_psa_get_random + 0x00000000 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .text.mbedtls_ecdsa_raw_to_der + 0x00000000 0xb3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .text.mbedtls_ecdsa_der_to_raw + 0x00000000 0xaa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .rodata.psa_to_pk_rsa_errors + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .rodata.psa_to_lms_errors + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .rodata.psa_to_md_errors + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .debug_frame 0x00000000 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .debug_info 0x00000000 0xa6a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .debug_abbrev 0x00000000 0x2a1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .debug_loc 0x00000000 0x74e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .debug_aranges + 0x00000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .debug_ranges 0x00000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .debug_line 0x00000000 0xe3f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .debug_str 0x00000000 0x6f4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .xt.prop 0x00000000 0x4a4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .literal.mbedtls_sha1_self_test + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .rodata.mbedtls_sha1_self_test.str1.1 + 0x00000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .text.mbedtls_sha1_self_test + 0x00000000 0xe9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .rodata.sha1_test_sum + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .rodata.sha1_test_buflen + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .rodata.sha1_test_buf + 0x00000000 0xab esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .xt.prop 0x00000000 0x114 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .literal.mbedtls_sha256_common_self_test + 0x00000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .literal.mbedtls_sha256_self_test + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .literal.mbedtls_sha224_self_test + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .rodata.mbedtls_sha256_common_self_test.str1.1 + 0x00000000 0x3b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .text.mbedtls_sha256_common_self_test + 0x00000000 0x129 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .text.mbedtls_sha256_self_test + 0x00000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .text.mbedtls_sha224_self_test + 0x00000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .rodata.sha256_test_sum + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .rodata.sha224_test_sum + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .rodata.sha_test_buflen + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .rodata.sha_test_buf + 0x00000000 0xab esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .xt.prop 0x00000000 0x1a4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .literal.mbedtls_sha512_common_self_test + 0x00000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .literal.mbedtls_sha512_self_test + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .literal.mbedtls_sha384_self_test + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .rodata.mbedtls_sha512_common_self_test.str1.1 + 0x00000000 0x3b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .text.mbedtls_sha512_common_self_test + 0x00000000 0x12e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .text.mbedtls_sha512_self_test + 0x00000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .text.mbedtls_sha384_self_test + 0x00000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .rodata.sha512_test_sum + 0x00000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .rodata.sha384_test_sum + 0x00000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .rodata.sha_test_buflen + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .rodata.sha_test_buf + 0x00000000 0x153 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .xt.prop 0x00000000 0x1a4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .literal.mbedtls_sha3_clone + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .literal.mbedtls_sha3_long_kat_test + 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .literal.mbedtls_sha3_kat_test + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .literal.mbedtls_sha3_self_test + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .text.mbedtls_sha3_clone + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .rodata.mbedtls_sha3_long_kat_test.str1.1 + 0x00000000 0x5f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .text.mbedtls_sha3_long_kat_test + 0x00000000 0xf8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .rodata.mbedtls_sha3_kat_test.str1.1 + 0x00000000 0x47 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .text.mbedtls_sha3_kat_test + 0x00000000 0xab esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .rodata.mbedtls_sha3_self_test.str1.1 + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .text.mbedtls_sha3_self_test + 0x00000000 0xaf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .rodata.long_kat_hash_sha3_512 + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .rodata.long_kat_hash_sha3_384 + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .rodata.long_kat_hash_sha3_256 + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .rodata.long_kat_hash_sha3_224 + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .rodata.test_hash_sha3_512 + 0x00000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .rodata.test_hash_sha3_384 + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .rodata.test_hash_sha3_256 + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .rodata.test_hash_sha3_224 + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .rodata.test_data_len + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .rodata.test_data + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .xt.prop 0x00000000 0x504 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .xt.prop 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .xt.prop 0x00000000 0x180 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .xt.prop 0x00000000 0xd8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .literal.esp_internal_aes_encrypt + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .literal.esp_aes_encrypt + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .literal.esp_internal_aes_decrypt + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .literal.esp_aes_decrypt + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .literal.esp_aes_crypt_cfb8 + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .text.esp_internal_aes_encrypt + 0x00000000 0x6a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .text.esp_aes_encrypt + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .text.esp_internal_aes_decrypt + 0x00000000 0x6a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .text.esp_aes_decrypt + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .text.esp_aes_crypt_cfb8 + 0x00000000 0xce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .xt.lit 0x00000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .xt.prop 0x00000000 0x5ac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .literal.esp_mpi_mul_mpi_mod + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .text.esp_mpi_mul_mpi_mod + 0x00000000 0xcc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .xt.prop 0x00000000 0x3a8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .literal.esp_mpi_hardware_words + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .literal.esp_mpi_interrupt_enable + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .literal.esp_mpi_interrupt_clear + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .literal.esp_mpi_mul_mpi_mod_hw_op + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .text.esp_mpi_hardware_words + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .text.esp_mpi_interrupt_enable + 0x00000000 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .text.esp_mpi_interrupt_clear + 0x00000000 0xb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .text.esp_mpi_mul_mpi_mod_hw_op + 0x00000000 0x73 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .xt.lit 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .xt.prop 0x00000000 0x1f8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .literal.mbedtls_sha1_clone + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .text.mbedtls_sha1_clone + 0x00000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .xt.prop 0x00000000 0x258 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .literal.mbedtls_sha256_clone + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .literal.mbedtls_internal_sha256_process + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_clone + 0x00000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_internal_sha256_process + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .xt.lit 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .xt.prop 0x00000000 0x2c4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .literal.mbedtls_sha512_clone + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .literal.mbedtls_internal_sha512_process + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .text.mbedtls_sha512_clone + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .text.mbedtls_internal_sha512_process + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .xt.lit 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .xt.prop 0x00000000 0x5f4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .literal.esp_aes_gcm_starts + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .literal.esp_aes_gcm_update_ad + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .literal.esp_aes_gcm_finish + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .literal.esp_aes_gcm_crypt_and_tag + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .literal.esp_aes_gcm_auth_decrypt + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .text.esp_aes_gcm_starts + 0x00000000 0x263 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .rodata.esp_aes_gcm_update_ad.str1.1 + 0x00000000 0x5e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .text.esp_aes_gcm_update_ad + 0x00000000 0x91 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .text.esp_aes_gcm_finish + 0x00000000 0x84 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .text.esp_aes_gcm_crypt_and_tag + 0x00000000 0x73 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .text.esp_aes_gcm_auth_decrypt + 0x00000000 0x65 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .xt.prop 0x00000000 0x4bc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .literal.esp_md5_process + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .literal.esp_md5_clone + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .text.esp_md5_process + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .text.esp_md5_clone + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .xt.prop 0x00000000 0x15c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .literal.mbedtls_aria_self_test + 0x00000000 0x138 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.mbedtls_aria_self_test.str1.1 + 0x00000000 0xbe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .text.mbedtls_aria_self_test + 0x00000000 0x3fe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_test2_ctr_ct + 0x00000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_test2_cfb_ct + 0x00000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_test2_cbc_ct + 0x00000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_test2_iv + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_test2_pt + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_test2_key + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_test1_ecb_ct + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_test1_ecb_pt + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_test1_ecb_key + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .xt.lit 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .xt.prop 0x00000000 0x4c8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .literal.asn1_get_sequence_of_cb + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_get_len + 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_get_bool + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_get_enum + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_get_bitstring + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_traverse_sequence_of + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_sequence_free + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_get_sequence_of + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_get_alg_null + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_free_named_data_list + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_free_named_data_list_shallow + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_find_named_data + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.asn1_get_sequence_of_cb + 0x00000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_get_bool + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_get_enum + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_get_bitstring + 0x00000000 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_traverse_sequence_of + 0x00000000 0xb2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_sequence_free + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_get_sequence_of + 0x00000000 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_get_alg_null + 0x00000000 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_free_named_data_list + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_free_named_data_list_shallow + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_find_named_data + 0x00000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .xt.lit 0x00000000 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .xt.prop 0x00000000 0x654 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.asn1_write_tagged_int + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_raw_buffer + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_null + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_oid + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_algorithm_identifier_ext + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_algorithm_identifier + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_bool + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_int + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_enum + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_tagged_string + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_utf8_string + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_printable_string + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_ia5_string + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_bitstring + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_named_bitstring + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_octet_string + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_store_named_data + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.asn1_write_tagged_int + 0x00000000 0x53 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_raw_buffer + 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_null + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_oid + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_algorithm_identifier_ext + 0x00000000 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_algorithm_identifier + 0x00000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_bool + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_int + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_enum + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_tagged_string + 0x00000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_utf8_string + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_printable_string + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_ia5_string + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_bitstring + 0x00000000 0x6e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_named_bitstring + 0x00000000 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_octet_string + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_store_named_data + 0x00000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .xt.lit 0x00000000 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .xt.prop 0x00000000 0x5dc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.ccm_calculate_first_block_if_ready + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.mbedtls_ccm_starts + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.mbedtls_ccm_set_lengths + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.mbedtls_ccm_update_ad + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.mbedtls_ccm_finish + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.ccm_auth_crypt + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.mbedtls_ccm_star_encrypt_and_tag + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.mbedtls_ccm_encrypt_and_tag + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.mbedtls_ccm_star_auth_decrypt + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.mbedtls_ccm_auth_decrypt + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.mbedtls_ccm_self_test + 0x00000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.ccm_calculate_first_block_if_ready + 0x00000000 0x96 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_starts + 0x00000000 0x74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_set_lengths + 0x00000000 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_update_ad + 0x00000000 0xd2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_finish + 0x00000000 0x8c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.ccm_auth_crypt + 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_star_encrypt_and_tag + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_encrypt_and_tag + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_star_auth_decrypt + 0x00000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_auth_decrypt + 0x00000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.mbedtls_ccm_self_test.str1.1 + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_self_test + 0x00000000 0x176 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.res_test_data + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.tag_len_test_data + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.msg_len_test_data + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.add_len_test_data + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.iv_len_test_data + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.msg_test_data + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.ad_test_data + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.iv_test_data + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.key_test_data + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .xt.lit 0x00000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .xt.prop 0x00000000 0x5c4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.psa_key_policy_algorithm_intersection + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_algorithm_permits + 0x00000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_check_nonce_length + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_check_algorithm + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_tls12_prf_set_key + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_tls12_prf_input + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_verify_check_alg + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_wipe_tag_output_buffer + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_get_and_lock_key_slot_with_policy + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_get_and_lock_transparent_key_slot_with_policy$constprop$0 + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_start_hmac + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_finalize_alg_and_key_validation$isra$0 + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_compute_internal + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_finish_key_creation$isra$0 + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_start_key_creation$isra$0 + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_can_do_hash + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_can_do_cipher + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_generate_random_internal + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_allocate_buffer_to_slot + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_copy_key_material_into_slot + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_import_key_into_slot + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_remove_key_data_from_memory + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_wipe_key_slot + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_destroy_key + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_get_key_attributes + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_export_key_internal + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_export_public_key_internal + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_copy_key + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_abort + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_setup + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_setup_kdf + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_clone + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_abort + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_setup + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_sign_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_verify_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_hash_builtin + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_message_builtin + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_internal + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_verify_hash_builtin + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_verify_message_builtin + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_interruptible_set_max_ops + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_interruptible_get_max_ops + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_abort + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_setup + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_encrypt_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_decrypt_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_abort + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_setup + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_encrypt_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_decrypt_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_set_nonce_internal + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_set_lengths + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_abort + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_input_internal + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_setup + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_input_integer + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_input_key + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_agreement_raw_builtin + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_generate_key_internal + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_generate_key_ext + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_generate_key + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.mbedtls_psa_crypto_configure_entropy_sources + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.mbedtls_psa_crypto_free + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_crypto_init + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_crypto_local_input_alloc + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_crypto_local_input_free + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_import_key + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_update + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_verify + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_compare + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_update + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_verify_finish + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_verify + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_verify_message + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_verify_hash + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_hash_start + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_verify_hash_start + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_set_iv + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_set_nonce + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_update_ad + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_input_bytes + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_key_agreement + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_crypto_local_output_alloc + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_crypto_local_output_free + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_export_key + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_export_public_key + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_finish + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_hash_compute + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_sign_finish + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_tls12_prf_generate_next_block + 0x00000000 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_mac_compute + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_message + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_hash + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_asymmetric_encrypt + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_asymmetric_decrypt + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_sign_hash_complete + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_generate_iv + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_update + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_finish + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_encrypt + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_cipher_decrypt + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_encrypt + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_decrypt + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_generate_nonce + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_update + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_finish + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_verify + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_output_bytes + 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_output_key_ext + 0x00000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_key_derivation_output_key + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_raw_key_agreement + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_generate_random + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_key_can_do + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_policy_algorithm_intersection + 0x00000000 0x33a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_algorithm_permits + 0x00000000 0x327 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_check_nonce_length + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_check_algorithm + 0x00000000 0x7f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_tls12_prf_set_key + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_tls12_prf_input + 0x00000000 0x8b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_verify_check_alg + 0x00000000 0xc3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_final_checks + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_wipe_tag_output_buffer + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_get_and_lock_key_slot_with_policy + 0x00000000 0xdd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_get_and_lock_transparent_key_slot_with_policy$constprop$0 + 0x00000000 0x2f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_start_hmac + 0x00000000 0xe5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_finalize_alg_and_key_validation$isra$0 + 0x00000000 0x1df esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_compute_internal + 0x00000000 0x9b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_finish_key_creation$isra$0 + 0x00000000 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_start_key_creation$isra$0 + 0x00000000 0x86 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_can_do_hash + 0x00000000 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_can_do_cipher + 0x00000000 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_to_psa_error + 0x00000000 0x3c6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_generate_random_internal + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_validate_unstructured_key_bit_size + 0x00000000 0x6d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_allocate_buffer_to_slot + 0x00000000 0x23 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_copy_key_material_into_slot + 0x00000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_import_key_into_slot + 0x00000000 0x93 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_remove_key_data_from_memory + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_wipe_key_slot + 0x00000000 0x43 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_destroy_key + 0x00000000 0x56 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_get_key_attributes + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_export_key_internal + 0x00000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_export_public_key_internal + 0x00000000 0x8f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_copy_key + 0x00000000 0x142 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_abort + 0x00000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_setup + 0x00000000 0x47 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_setup_kdf + 0x00000000 0xab esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_clone + 0x00000000 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_abort + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_setup + 0x00000000 0xae esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_sign_setup + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_verify_setup + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_hash_builtin + 0x00000000 0x7f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_message_builtin + 0x00000000 0xa2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_internal + 0x00000000 0xab esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_hash_builtin + 0x00000000 0x7f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_message_builtin + 0x00000000 0x9c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_interruptible_set_max_ops + 0x00000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_interruptible_get_max_ops + 0x00000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_hash_get_num_ops + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_hash_get_num_ops + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_hash_abort + 0x00000000 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_hash_complete + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_hash_abort + 0x00000000 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_interruptible_set_max_ops + 0x00000000 0x5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_sign_hash_get_num_ops + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_verify_hash_get_num_ops + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_sign_hash_start + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_sign_hash_complete + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_sign_hash_abort + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_verify_hash_start + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_verify_hash_complete + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_verify_hash_abort + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_abort + 0x00000000 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_setup + 0x00000000 0x12b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_encrypt_setup + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_decrypt_setup + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_abort + 0x00000000 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_setup + 0x00000000 0x123 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_encrypt_setup + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_decrypt_setup + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_set_nonce_internal + 0x00000000 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_set_lengths + 0x00000000 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_abort + 0x00000000 0x8f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_input_internal + 0x00000000 0x212 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_get_capacity + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_set_capacity + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_production_parameters_are_default + 0x00000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_setup + 0x00000000 0x6f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_input_integer + 0x00000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_input_key + 0x00000000 0x5e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_agreement_raw_builtin + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_generate_key_internal + 0x00000000 0x63 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_generate_key_ext + 0x00000000 0x161 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_generate_key + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_crypto_configure_entropy_sources + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.mbedtls_psa_crypto_free + 0x00000000 0x64 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_crypto_init + 0x00000000 0xb5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_crypto_local_input_alloc + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_crypto_local_input_free + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_import_key + 0x00000000 0xee esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_update + 0x00000000 0x53 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_verify + 0x00000000 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_compare + 0x00000000 0x94 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_update + 0x00000000 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_verify_finish + 0x00000000 0x5d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_verify + 0x00000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_message + 0x00000000 0x94 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_hash + 0x00000000 0x9c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_hash_start + 0x00000000 0xb7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_verify_hash_start + 0x00000000 0xcc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_set_iv + 0x00000000 0x72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_set_nonce + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_update_ad + 0x00000000 0x82 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_input_bytes + 0x00000000 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_key_agreement + 0x00000000 0x103 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_crypto_local_output_alloc + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_crypto_local_output_free + 0x00000000 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_export_key + 0x00000000 0x72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_export_public_key + 0x00000000 0x72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_finish + 0x00000000 0x47 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_hash_compute + 0x00000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_sign_finish + 0x00000000 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_tls12_prf_generate_next_block + 0x00000000 0x18f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_mac_compute + 0x00000000 0x69 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_message + 0x00000000 0x65 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_hash + 0x00000000 0x65 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_asymmetric_encrypt + 0x00000000 0x10e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_asymmetric_decrypt + 0x00000000 0xf2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_sign_hash_complete + 0x00000000 0x7f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_generate_iv + 0x00000000 0xc6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_update + 0x00000000 0x87 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_finish + 0x00000000 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_encrypt + 0x00000000 0x18f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_cipher_decrypt + 0x00000000 0x157 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_encrypt + 0x00000000 0x12e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_decrypt + 0x00000000 0x12e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_generate_nonce + 0x00000000 0xcb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_update + 0x00000000 0xae esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_finish + 0x00000000 0xb1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_aead_verify + 0x00000000 0xba esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_output_bytes + 0x00000000 0x1e3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_output_key_ext + 0x00000000 0x32a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_key_derivation_output_key + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_raw_key_agreement + 0x00000000 0xf4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .text.psa_generate_random + 0x00000000 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .rodata.default_production_parameters + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .data.psa_interruptible_max_ops + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .bss.global_data + 0x00000000 0x1fc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .debug_frame 0x00000000 0xca0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .debug_info 0x00000000 0x10235 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .debug_abbrev 0x00000000 0x626 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .debug_loc 0x00000000 0xb4b7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .debug_aranges + 0x00000000 0x448 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .debug_ranges 0x00000000 0xfb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .debug_line 0x00000000 0xdc5a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .debug_str 0x00000000 0x436f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .xt.lit 0x00000000 0x388 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .xt.prop 0x00000000 0x3990 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .literal.psa_aead_setup$isra$0 + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_encrypt_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_decrypt_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_set_nonce + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_set_lengths + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_update_ad + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_update + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_finish + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_abort + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_encrypt + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_psa_aead_decrypt + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.psa_aead_setup$isra$0 + 0x00000000 0xb9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_encrypt_setup + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_decrypt_setup + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_set_nonce + 0x00000000 0x47 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_set_lengths + 0x00000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_update_ad + 0x00000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_update + 0x00000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_finish + 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_abort + 0x00000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_encrypt + 0x00000000 0xc2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .text.mbedtls_psa_aead_decrypt + 0x00000000 0xd6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .debug_frame 0x00000000 0x118 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .debug_info 0x00000000 0x1756 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .debug_abbrev 0x00000000 0x444 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .debug_loc 0x00000000 0xaa4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .debug_aranges + 0x00000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .debug_ranges 0x00000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .debug_line 0x00000000 0xf28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .debug_str 0x00000000 0xcd4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .xt.prop 0x00000000 0x420 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .literal.mbedtls_cipher_values_from_psa + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_cipher_info_from_psa + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.psa_cipher_setup$isra$0 + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_encrypt_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_decrypt_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_set_iv + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_update + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_finish + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_abort + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_encrypt + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.mbedtls_psa_cipher_decrypt + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_cipher_values_from_psa + 0x00000000 0x13c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_cipher_info_from_psa + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.psa_cipher_setup$isra$0 + 0x00000000 0x135 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_encrypt_setup + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_decrypt_setup + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_set_iv + 0x00000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_update + 0x00000000 0x13b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_finish + 0x00000000 0x56 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_abort + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_encrypt + 0x00000000 0xa6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .text.mbedtls_psa_cipher_decrypt + 0x00000000 0xa5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .debug_frame 0x00000000 0x118 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .debug_info 0x00000000 0x158c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .debug_abbrev 0x00000000 0x427 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .debug_loc 0x00000000 0xd25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .debug_aranges + 0x00000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .debug_ranges 0x00000000 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .debug_line 0x00000000 0x13c2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .debug_str 0x00000000 0xbb7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .xt.prop 0x00000000 0x564 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .literal.psa_reset_key_attributes + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .text.psa_reset_key_attributes + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .debug_frame 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .debug_info 0x00000000 0x21e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .debug_abbrev 0x00000000 0x120 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .debug_aranges + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .debug_ranges 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .debug_line 0x00000000 0x313 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .debug_str 0x00000000 0x3b1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .xt.prop 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .literal.psa_driver_wrapper_export_public_key + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .text.psa_driver_wrapper_get_key_buffer_size + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .text.psa_driver_wrapper_export_public_key + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .text.psa_driver_wrapper_get_builtin_key + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .debug_frame 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .debug_info 0x00000000 0x4c0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .debug_abbrev 0x00000000 0x1b6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .debug_loc 0x00000000 0x180 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .debug_aranges + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .debug_ranges 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .debug_line 0x00000000 0x409 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .debug_str 0x00000000 0x54d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .xt.prop 0x00000000 0x84 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .literal.mbedtls_psa_ecp_load_representation + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_ecp_export_key + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_ecp_import_key + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_ecp_export_public_key + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_ecp_generate_key + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_ecdsa_sign_hash + 0x00000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_ecp_load_public_part + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_ecdsa_verify_hash + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_key_agreement_ecdh + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecp_load_representation + 0x00000000 0x1b1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecp_export_key + 0x00000000 0x7f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecp_import_key + 0x00000000 0x6c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecp_export_public_key + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecp_generate_key + 0x00000000 0x96 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecdsa_sign_hash + 0x00000000 0x14f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecp_load_public_part + 0x00000000 0x2f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_ecdsa_verify_hash + 0x00000000 0xbf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .text.mbedtls_psa_key_agreement_ecdh + 0x00000000 0x136 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .debug_frame 0x00000000 0xe8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .debug_info 0x00000000 0x1afd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .debug_abbrev 0x00000000 0x3c6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .debug_loc 0x00000000 0x97d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .debug_aranges + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .debug_ranges 0x00000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .debug_line 0x00000000 0x12ab esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .debug_str 0x00000000 0xced esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .xt.lit 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .xt.prop 0x00000000 0x438 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .literal.mbedtls_psa_hash_abort + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .literal.mbedtls_psa_hash_setup + 0x00000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .literal.mbedtls_psa_hash_clone + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .literal.mbedtls_psa_hash_update + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .literal.mbedtls_psa_hash_finish + 0x00000000 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .literal.mbedtls_psa_hash_compute + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .text.mbedtls_psa_hash_abort + 0x00000000 0x7b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .text.mbedtls_psa_hash_setup + 0x00000000 0x163 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .text.mbedtls_psa_hash_clone + 0x00000000 0x8b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .text.mbedtls_psa_hash_update + 0x00000000 0x7f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .text.mbedtls_psa_hash_finish + 0x00000000 0x133 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .text.mbedtls_psa_hash_compute + 0x00000000 0x4d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .debug_frame 0x00000000 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .debug_info 0x00000000 0xe79 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .debug_abbrev 0x00000000 0x28c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .debug_loc 0x00000000 0x469 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .debug_aranges + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .debug_ranges 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .debug_line 0x00000000 0xb94 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .debug_str 0x00000000 0x8ef esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .xt.prop 0x00000000 0x4d4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .literal.psa_mac_finish_internal + 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.mbedtls_psa_mac_abort + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.psa_mac_setup + 0x00000000 0x74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.mbedtls_psa_mac_sign_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.mbedtls_psa_mac_verify_setup + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.mbedtls_psa_mac_update + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.mbedtls_psa_mac_sign_finish + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.mbedtls_psa_mac_verify_finish + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.mbedtls_psa_mac_compute + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.psa_mac_finish_internal + 0x00000000 0x157 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.mbedtls_psa_mac_abort + 0x00000000 0x61 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.psa_mac_setup + 0x00000000 0x1fe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.mbedtls_psa_mac_sign_setup + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.mbedtls_psa_mac_verify_setup + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.mbedtls_psa_mac_update + 0x00000000 0x4d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.mbedtls_psa_mac_sign_finish + 0x00000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.mbedtls_psa_mac_verify_finish + 0x00000000 0x42 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .text.mbedtls_psa_mac_compute + 0x00000000 0x64 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .debug_frame 0x00000000 0xe8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .debug_info 0x00000000 0x1a1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .debug_abbrev 0x00000000 0x48a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .debug_loc 0x00000000 0xd4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .debug_aranges + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .debug_ranges 0x00000000 0xf8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .debug_line 0x00000000 0x11cd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .debug_str 0x00000000 0xc00 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .xt.lit 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .xt.prop 0x00000000 0x480 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .literal.psa_rsa_oaep_set_padding_mode + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.psa_rsa_decode_md_type + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_rsa_load_representation + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_rsa_export_key + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_rsa_import_key + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_rsa_export_public_key + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_rsa_generate_key + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_rsa_sign_hash + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_rsa_verify_hash + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_asymmetric_encrypt + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.mbedtls_psa_asymmetric_decrypt + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.psa_rsa_oaep_set_padding_mode + 0x00000000 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.psa_rsa_decode_md_type + 0x00000000 0x7f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_rsa_load_representation + 0x00000000 0xa5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_rsa_export_key + 0x00000000 0x87 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_rsa_import_key + 0x00000000 0x5a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_rsa_export_public_key + 0x00000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_rsa_generate_key + 0x00000000 0x77 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_rsa_sign_hash + 0x00000000 0xe3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_rsa_verify_hash + 0x00000000 0x101 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_asymmetric_encrypt + 0x00000000 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .text.mbedtls_psa_asymmetric_decrypt + 0x00000000 0xc3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .debug_frame 0x00000000 0x118 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .debug_info 0x00000000 0x1b40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .debug_abbrev 0x00000000 0x46e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .debug_loc 0x00000000 0xca3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .debug_aranges + 0x00000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .debug_ranges 0x00000000 0xe0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .debug_line 0x00000000 0x14b5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .debug_str 0x00000000 0xad1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .xt.prop 0x00000000 0x420 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .literal.psa_is_valid_key_id + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_get_and_lock_key_slot_in_memory + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_initialize_key_slots + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_wipe_all_key_slots + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_reserve_free_key_slot + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_get_and_lock_key_slot + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_unregister_read + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_unregister_read_under_mutex + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_open_key + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_close_key + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_purge_key + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.mbedtls_psa_get_stats + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_register_read + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_is_valid_key_id + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_get_and_lock_key_slot_in_memory + 0x00000000 0x74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_initialize_key_slots + 0x00000000 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_wipe_all_key_slots + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_reserve_free_key_slot + 0x00000000 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_get_and_lock_key_slot + 0x00000000 0xb3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_unregister_read + 0x00000000 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_unregister_read_under_mutex + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_validate_key_location + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_validate_key_persistence + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_open_key + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_close_key + 0x00000000 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.psa_purge_key + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .text.mbedtls_psa_get_stats + 0x00000000 0x6a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .bss.global_data + 0x00000000 0x504 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .debug_frame 0x00000000 0x178 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .debug_info 0x00000000 0xf71 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .debug_abbrev 0x00000000 0x4f0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .debug_loc 0x00000000 0x8a2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .debug_aranges + 0x00000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .debug_ranges 0x00000000 0x128 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .debug_line 0x00000000 0x1252 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .debug_str 0x00000000 0x964 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .xt.lit 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .xt.prop 0x00000000 0x4d4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .literal.psa_is_key_present_in_storage + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_destroy_persistent_key + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_format_key_data_for_storage + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_parse_key_data_from_storage + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_save_persistent_key + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_free_persistent_key_data + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_load_persistent_key + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_is_key_present_in_storage + 0x00000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_destroy_persistent_key + 0x00000000 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .rodata 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_format_key_data_for_storage + 0x00000000 0xbe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_parse_key_data_from_storage + 0x00000000 0x13a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_save_persistent_key + 0x00000000 0xa2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_free_persistent_key_data + 0x00000000 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .text.psa_load_persistent_key + 0x00000000 0x9e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .debug_frame 0x00000000 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .debug_info 0x00000000 0x1224 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .debug_abbrev 0x00000000 0x3ca esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .debug_loc 0x00000000 0x988 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .debug_aranges + 0x00000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .debug_ranges 0x00000000 0xe0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .debug_line 0x00000000 0xf6b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .debug_str 0x00000000 0x756 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .xt.prop 0x00000000 0x270 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .literal.psa_its_fill_filename + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .literal.psa_its_read_file$constprop$0 + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .literal.psa_its_get_info + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .literal.psa_its_get + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .literal.psa_its_set + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .literal.psa_its_remove + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .rodata.psa_its_fill_filename.str1.1 + 0x00000000 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .text.psa_its_fill_filename + 0x00000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .rodata.psa_its_read_file$constprop$0.str1.1 + 0x00000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .rodata 0x00000000 0x9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .text.psa_its_read_file$constprop$0 + 0x00000000 0xa2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .text.psa_its_get_info + 0x00000000 0x23 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .text.psa_its_get + 0x00000000 0x82 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .rodata.psa_its_set.str1.1 + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .text.psa_its_set + 0x00000000 0xce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .text.psa_its_remove + 0x00000000 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .debug_frame 0x00000000 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .debug_info 0x00000000 0x129e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .debug_abbrev 0x00000000 0x37c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .debug_loc 0x00000000 0x430 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .debug_aranges + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .debug_ranges 0x00000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .debug_line 0x00000000 0xaa1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .debug_str 0x00000000 0x86c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .xt.prop 0x00000000 0x204 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .literal.myrand + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.asn1_get_nonzero_mpi + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_import + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_export_raw + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_export + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_write_pubkey + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_export_crt + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_write_key + 0x00000000 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_set_padding + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_rsassa_pss_sign_no_mode_check + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_rsassa_pss_sign_ext + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_parse_key + 0x00000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_gen_key + 0x00000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_copy + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_self_test + 0x00000000 0xc4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.myrand 0x00000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.asn1_get_nonzero_mpi + 0x00000000 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_import + 0x00000000 0x85 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_export_raw + 0x00000000 0xd6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_export + 0x00000000 0xcc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_write_pubkey + 0x00000000 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_export_crt + 0x00000000 0x9e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_write_key + 0x00000000 0x1a2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_set_padding + 0x00000000 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_get_padding_mode + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_get_md_alg + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_rsassa_pss_sign_no_mode_check + 0x00000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_rsassa_pss_sign_ext + 0x00000000 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_parse_key + 0x00000000 0x1b3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_gen_key + 0x00000000 0x215 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_copy + 0x00000000 0x103 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .rodata.mbedtls_rsa_self_test.str1.1 + 0x00000000 0x3a0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .rodata 0x00000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_self_test + 0x00000000 0x294 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .xt.lit 0x00000000 0x178 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .xt.prop 0x00000000 0x162c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .xt.prop 0x00000000 0x354 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .literal.esp_sha_lock_engine + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text.esp_sha_lock_engine + 0x00000000 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .xt.lit 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .xt.prop 0x00000000 0x228 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .literal.ctr_drbg_self_test_entropy + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .literal.mbedtls_ctr_drbg_update + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .literal.mbedtls_ctr_drbg_write_seed_file + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .literal.mbedtls_ctr_drbg_update_seed_file + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .literal.mbedtls_ctr_drbg_self_test + 0x00000000 0x7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.ctr_drbg_self_test_entropy + 0x00000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_set_prediction_resistance + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_set_entropy_len + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_set_nonce_len + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_set_reseed_interval + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_update + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.mbedtls_ctr_drbg_write_seed_file.str1.1 + 0x00000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_write_seed_file + 0x00000000 0x5e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.mbedtls_ctr_drbg_update_seed_file.str1.1 + 0x00000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_update_seed_file + 0x00000000 0x97 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.mbedtls_ctr_drbg_self_test.str1.1 + 0x00000000 0x42 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_self_test + 0x00000000 0x13b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .bss.test_offset + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.result_nopr + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.result_pr + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.pers_nopr + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.pers_pr + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.entropy_source_nopr + 0x00000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.entropy_source_pr + 0x00000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .xt.lit 0x00000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .xt.prop 0x00000000 0x5b8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .literal.mbedtls_ecdh_setup + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .literal.mbedtls_ecdh_make_params + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .literal.mbedtls_ecdh_read_params + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .literal.mbedtls_ecdh_get_params + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .literal.mbedtls_ecdh_make_public + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .literal.mbedtls_ecdh_read_public + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.mbedtls_ecdh_can_do + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.mbedtls_ecdh_get_grp_id + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.mbedtls_ecdh_setup + 0x00000000 0x56 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.mbedtls_ecdh_make_params + 0x00000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.mbedtls_ecdh_read_params + 0x00000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.mbedtls_ecdh_get_params + 0x00000000 0x5f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.mbedtls_ecdh_make_public + 0x00000000 0x4a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text.mbedtls_ecdh_read_public + 0x00000000 0x3b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .xt.prop 0x00000000 0x330 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .literal.mbedtls_ecdsa_sign + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .literal.mbedtls_ecdsa_sign_det_ext + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .literal.mbedtls_ecdsa_verify + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .literal.mbedtls_ecdsa_genkey + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .literal.mbedtls_ecdsa_from_keypair + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_can_do + 0x00000000 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_sign + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_sign_det_ext + 0x00000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_verify + 0x00000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_genkey + 0x00000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_from_keypair + 0x00000000 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .xt.lit 0x00000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .xt.prop 0x00000000 0x45c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .literal.self_test_rng + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_curve_list + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_curve_info_from_grp_id + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_curve_info_from_tls_id + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_curve_info_from_name + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_point_read_string + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_point_write_binary + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_tls_read_point + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_tls_write_point + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_tls_read_group_id + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_tls_read_group + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_tls_write_group + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.self_test_point$constprop$0 + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_gen_keypair_base + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_gen_keypair + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_gen_key + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_set_public_key + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_read_key + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_write_key_ext + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_write_public_key + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_keypair_calc_public + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_export + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_self_test + 0x00000000 0x7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.self_test_rng + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_curve_list + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_curve_info_from_grp_id + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_curve_info_from_tls_id + 0x00000000 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_curve_info_from_name + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_point_read_string + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_point_write_binary + 0x00000000 0xcf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_tls_read_point + 0x00000000 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_tls_write_point + 0x00000000 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_tls_read_group_id + 0x00000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_tls_read_group + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_tls_write_group + 0x00000000 0x3b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata.self_test_point$constprop$0.str1.1 + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.self_test_point$constprop$0 + 0x00000000 0xde esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_gen_keypair_base + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_gen_keypair + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_gen_key + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_set_public_key + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_read_key + 0x00000000 0x145 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_write_key_ext + 0x00000000 0x5d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_write_public_key + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_keypair_calc_public + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_keypair_get_group_id + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_export + 0x00000000 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata.mbedtls_ecp_self_test.str1.1 + 0x00000000 0x367 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_self_test + 0x00000000 0x17c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .data.state$0 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .xt.lit 0x00000000 0x200 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .xt.prop 0x00000000 0x192c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_fix_negative + 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .xt.prop 0x00000000 0x2184 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .literal.entropy_dummy_source + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.mbedtls_entropy_source_self_test_gather$constprop$0 + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.mbedtls_entropy_update_manual + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.mbedtls_entropy_gather + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.mbedtls_entropy_write_seed_file + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.mbedtls_entropy_update_seed_file + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.mbedtls_entropy_source_self_test + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.mbedtls_entropy_self_test + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.entropy_dummy_source + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_source_self_test_gather$constprop$0 + 0x00000000 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_update_manual + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_gather + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .rodata.mbedtls_entropy_write_seed_file.str1.1 + 0x00000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_write_seed_file + 0x00000000 0x6a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .rodata.mbedtls_entropy_update_seed_file.str1.1 + 0x00000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_update_seed_file + 0x00000000 0x8e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .rodata.mbedtls_entropy_source_self_test.str1.1 + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_source_self_test + 0x00000000 0xeb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .rodata.mbedtls_entropy_self_test.str1.1 + 0x00000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_self_test + 0x00000000 0xfd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .xt.lit 0x00000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .xt.prop 0x00000000 0x504 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.hmac_drbg_self_test_entropy + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .literal.mbedtls_hmac_drbg_seed + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .literal.mbedtls_hmac_drbg_write_seed_file + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .literal.mbedtls_hmac_drbg_update_seed_file + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .literal.mbedtls_hmac_drbg_self_test + 0x00000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.hmac_drbg_self_test_entropy + 0x00000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_seed + 0x00000000 0x72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_set_prediction_resistance + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_set_entropy_len + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_set_reseed_interval + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .rodata.mbedtls_hmac_drbg_write_seed_file.str1.1 + 0x00000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_write_seed_file + 0x00000000 0x5e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .rodata.mbedtls_hmac_drbg_update_seed_file.str1.1 + 0x00000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_update_seed_file + 0x00000000 0x95 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .rodata.mbedtls_hmac_drbg_self_test.str1.1 + 0x00000000 0x45 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_self_test + 0x00000000 0x13b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .bss.test_offset + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .rodata.result_nopr + 0x00000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .rodata.entropy_nopr + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .rodata.result_pr + 0x00000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .rodata.entropy_pr + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .xt.lit 0x00000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .xt.prop 0x00000000 0x504 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .literal.oid_parse_number + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.oid_sig_alg_from_asn1$part$0 + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_attr_short_name + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_x509_ext_type + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_extended_key_usage + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_certificate_policies + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_sig_alg_desc + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_sig_alg + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_oid_by_sig_alg + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_oid_by_pk_alg + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_oid_by_ec_grp + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_oid_by_ec_grp_algid + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_cipher_alg + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_md_alg + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_md_hmac + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_pkcs12_pbe_alg + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_numeric_string + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_from_numeric_string + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.oid_parse_number + 0x00000000 0x4a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.oid_subidentifier_encode_into + 0x00000000 0x4f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.oid_sig_alg_from_asn1$part$0 + 0x00000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_attr_short_name + 0x00000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_x509_ext_type + 0x00000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_extended_key_usage + 0x00000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_certificate_policies + 0x00000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_sig_alg_desc + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_sig_alg + 0x00000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_oid_by_sig_alg + 0x00000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_oid_by_pk_alg + 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_oid_by_ec_grp + 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_oid_by_ec_grp_algid + 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_cipher_alg + 0x00000000 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_md_alg + 0x00000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_md_hmac + 0x00000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_pkcs12_pbe_alg + 0x00000000 0x3b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.mbedtls_oid_get_numeric_string.str1.1 + 0x00000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_numeric_string + 0x00000000 0xa3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_from_numeric_string + 0x00000000 0x162 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_pkcs12_pbe_alg + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_md_hmac + 0x00000000 0xc8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_cipher_alg + 0x00000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_sig_alg + 0x00000000 0x150 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_certificate_policies + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_ext_key_usage + 0x00000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_x509_ext + 0x00000000 0xb4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_x520_attr_type + 0x00000000 0x1a4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .xt.lit 0x00000000 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .xt.prop 0x00000000 0xb1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .xt.prop 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .literal.esp_mesh_get_rx_pending + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_ie_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_wifi_event_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_wifi_event_deinit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_stop_recv + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_parse_option + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_add_option + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_chain_header_add_ttl + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_send_process_topo + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_send_process_flag + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_send_sem_wait + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_send_sem_signal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_send_mgmt + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_send + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_recv_add_option + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_recv_process_flag + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_recv + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_recv + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_encrypt_ie_plain_key + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_config + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_router + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_router + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_set_id + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_id + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_id + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_type + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_type + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_max_layer + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_ap_password + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_ap_authmode + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_ap_authmode + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_ap_connections + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_ap_connections + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_non_mesh_connections + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_config + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_non_mesh_connections + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_layer + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_parent_bssid + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_is_root + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_print_rxQ_waiting + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_push_to_myself_queue + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_push_to_tcpip_queue + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_flush_tcpip_queue + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_recv_release + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_recv_toDS + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_max_layer + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_self_organized + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_self_organized + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_set_parent + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_parent + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_waive_root + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_waive_root + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_send_stop_vote + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_send_stop_vote + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_vote_percentage + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_vote_percentage + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_root_addr + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_attempts + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_attempts + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_push_to_xmit_state_queue + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_stop + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_deinit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_start + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_total_node_num + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_switch_parent_paras + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_switch_parent_paras + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_xon_qsize + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_xon_qsize + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_is_my_group + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_insert_group_addr + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_delete_group_addr + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_group_id + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_delete_group_id + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_group_num + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_group_list + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_capacity_num + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_capacity_num + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_is_my_ie_encrypted + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_set_ie_crypto_funcs + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_ie_crypto_funcs + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_set_ie_crypto_key + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_ie_crypto_key + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_ie_crypto_key + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_root_healing_delay + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_root_healing_delay + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_passive_scan_time + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_passive_scan_time + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_fix_root + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_is_root_fixed + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_announce_interval + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_announce_interval + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_subnet_nodes_num + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_subnet_nodes_list + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_switch_channel + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_look_for_network + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_topology + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_topology + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_is_device_active + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_enable_ps + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_disable_ps + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_is_ps_enabled + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_ps_get_duties + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_rx_pending + 0x00000000 0x13f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_config + 0x00000000 0x72 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_router + 0x00000000 0x74 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_type + 0x00000000 0xb2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_type + 0x00000000 0x60 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_ap_authmode + 0x00000000 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_non_mesh_connections + 0x00000000 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_recv_toDS + 0x00000000 0x1da /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_max_layer + 0x00000000 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_self_organized + 0x00000000 0x74 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_parent + 0x00000000 0x15a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_waive_root + 0x00000000 0xa0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_vote_percentage + 0x00000000 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_root_addr + 0x00000000 0xaa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_attempts + 0x00000000 0xae /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_attempts + 0x00000000 0x74 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_deinit + 0x00000000 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_total_node_num + 0x00000000 0x5a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_switch_parent_paras + 0x00000000 0xb9 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_switch_parent_paras + 0x00000000 0x76 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_xon_qsize + 0x00000000 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_insert_group_addr + 0x00000000 0x141 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_delete_group_addr + 0x00000000 0x1a6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_group_id + 0x00000000 0x3c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_delete_group_id + 0x00000000 0x3c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_group_num + 0x00000000 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_group_list + 0x00000000 0x8a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_capacity_num + 0x00000000 0x86 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_capacity_num + 0x00000000 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_ie_crypto_funcs + 0x00000000 0x107 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_ie_crypto_key + 0x00000000 0x1a4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_ie_crypto_key + 0x00000000 0xf2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_root_healing_delay + 0x00000000 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_root_healing_delay + 0x00000000 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_passive_scan_time + 0x00000000 0x25 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_passive_scan_time + 0x00000000 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_fix_root + 0x00000000 0x44 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_announce_interval + 0x00000000 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_subnet_nodes_num + 0x00000000 0xec /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_subnet_nodes_list + 0x00000000 0x12a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_switch_channel + 0x00000000 0x124 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_look_for_network + 0x00000000 0x60 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_is_device_active + 0x00000000 0x32 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_disable_ps + 0x00000000 0x24 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_ps_get_duties + 0x00000000 0xe6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$9883 + 0x00000000 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$9871 + 0x00000000 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .data.libmesh_reversion_git + 0x00000000 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .xt.lit 0x00000000 0x338 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .xt.prop 0x00000000 0x375c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.nvs_op2str + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .literal.esp_mesh_nvs_operate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .literal.esp_mesh_nvs_set_layer + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .literal.esp_mesh_nvs_set_assoc + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .literal.esp_mesh_nvs_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .literal.esp_mesh_nvs_deinit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .text.nvs_op2str + 0x00000000 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .xt.lit 0x00000000 0x30 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .xt.prop 0x00000000 0x378 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .literal.esp_mesh_io_sem_wait + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .literal.esp_mesh_io_sem_signal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .literal.mesh_set_io_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .literal.esp_mesh_stop_parent_reconnection + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .literal.mesh_set_router + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .literal.mesh_set_self_organized + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .literal.mesh_set_type + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .literal.mesh_csa_set_bssid + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .literal.mesh_switch_channel + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .literal.mesh_look_for_network + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .literal.mesh_nwk_io_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .text.esp_mesh_stop_parent_reconnection + 0x00000000 0x6e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .xt.lit 0x00000000 0x58 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .xt.prop 0x00000000 0x744 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .literal.mesh_process_mgmt_announce$part$6 + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.mesh_process_mgmt_routing_table$part$7 + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.optype2str + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.esp_mesh_get_optlen + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.esp_mesh_mcast_cover_node + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.mesh_remove_myself_from_forwarding + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.esp_mesh_delivery_toDS + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.esp_mesh_delivery_toSelf + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.mesh_process_mcast_cover_node + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.esp_mesh_process_mcast + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.esp_mesh_process_bcast + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.mesh_process_mgmt_root_switch + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.mesh_process_mgmt_root_waive + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.mesh_process_mgmt_announce + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.mesh_process_mgmt_routing_table + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.esp_mesh_process_options + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.esp_mesh_process_ucast + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.esp_mesh_forward_packet + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.optype2str + 0x00000000 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .rodata.CSWTCH$144 + 0x00000000 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .xt.lit 0x00000000 0x90 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .xt.prop 0x00000000 0x13a4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.esp_mesh_channel_enable_jp + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .literal.esp_mesh_scan_done_get_channel + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .literal.mesh_nwk_process_reselect + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .literal.mesh_nwk_process_look_for_network + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .literal.mesh_nwk_process_allow_switch + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .xt.lit 0x00000000 0x28 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .xt.prop 0x00000000 0x4ec /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .literal.mesh_set_root_candidate$part$17 + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_set_root_candidate_ie$part$18 + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_sta_auth_expire_time + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_register_timer_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_ie_update_rssi + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_set_ie + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.is_mesh_last_parent + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_send_root_switch + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_is_switch_parent + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_compute_my_votes + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_check_rc_expire + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_change_layer + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_set_parent_candidate_config + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_parent_check_root_conflict + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.route_announce_timer_start + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.route_announce_timeout_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.route_announce_timer_stop + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_ie_monitor + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_ie_monitor_timeout_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_bcn_change_timer_start + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_root_connect_timer_start + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.candidate_monitor_timer_stop + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_disable_parent_switch_monitor + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.candidate_monitor_timer_start + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_ps_control_check_awake + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_ps_control_set_awake + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_ps_control_set_sleep + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_ps_control_get_min_duty + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_ps_control_timeout_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_find_conflict_roots + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_remove_conflict_roots + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.is_self_mac_greater + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_is_yield_root + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_add_conflict_roots + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_yield_roots_announce + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_yield_roots_monitor + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_delete_timers + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_send_roots_gone + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_send_roots_fixed + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_send_roots_stop + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_check_conflict_roots + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_send_rmv_announcement + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_is_scan_allowed + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_rt_change_debug + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_is_rt_change_debug + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_vote_done + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_disconnected + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_scan_request + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_rootless + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_check_no_parent_found + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_root_process_connect + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_child_set_ps_duty + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_child_clr_ps_duty + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_process_ps_type + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_is_better_parent + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.is_mesh_child + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_flush_scan_result + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_scan_done + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.scan_result_print + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_scan_done_process_weak + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_conn_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_conn_deinit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_parent_insert_candidate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_scan_done_vote + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_scan_done + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_update_current_parent + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_set_root_candidate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_update_ie_rssi + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_set_root_candidate_ie + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_compute_votes + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_process_root_candidate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_process_same_root_candidate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_add_invalid_rc + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal._mesh_find_root_competitor + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.print_rc_info + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_is_last_rc_existing + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_update_rcandidate_rssi + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_init_rcandidate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_check_last_rcandidate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_find_root_competitor + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_vote_root_candidate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_select_router + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_nvs_settings + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_select_is_better_parent + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_select_parent_compute_rank + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_select_set_ignore + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_select_parent_limit_layer2_cap + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_select_parent_try_rssi + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_select_parent_try_layer + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_select_parent + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_get_child_num + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_process_ps_awake + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_child_event + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_process_child_macconnected + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.print_txupQ_pending + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_get_child_idx + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_get_child_idx_lock + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_insert_child + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_remove_child + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_remove_children + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_leaf + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_no_parent + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_clear_parent + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_node_process_disconnect + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_revote_root + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_node_process_healing + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_push_to_nwk_queue + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_route_announce_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_ie_monitor_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_bcn_change_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_root_connect_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_candidate_monitor_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_candidate_monitor_timeout_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_ps_control_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_sta_connect + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_connect_to_router + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_connect_to_candidate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_root_connect_timeout_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_root_process_disconnect + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_manual_networking + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_sta_disconnect + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_connect + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_disconnect + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_parent_reselect + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_check_layer + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_ie_change + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_conflict_discnx + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_node_process_cycle + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_wifi_event_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_post_toDS_state + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_set_rssi_threshold + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_get_rssi_threshold + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_set_default_rssi_threshold + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_is_nwk_inited + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_is_nwk_running + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_process_parent_organized + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_task_deinit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_nwk_task_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_nwk_task_deinit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_get_beacon_interval + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_adjust_passive_scan_time + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_set_beacon_interval + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_parent_select_done + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_parent_select + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_bcn_change_timeout_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_task_main + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_ps_get_duties + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_print_scan_result + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_sta_auth_expire_time + 0x00000000 0x47 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_register_timer_cb + 0x00000000 0x11 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_root_connect_timer_start + 0x00000000 0x2a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_ps_control_set_awake + 0x00000000 0x5c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_rt_change_debug + 0x00000000 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_child_set_ps_duty + 0x00000000 0x2d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.print_rc_info + 0x00000000 0x5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_select_parent_compute_rank + 0x00000000 0x6e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_select_parent_limit_layer2_cap + 0x00000000 0x25e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_select_parent_try_layer + 0x00000000 0x14c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_process_ps_awake + 0x00000000 0x145 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_connect + 0x00000000 0x86 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_disconnect + 0x00000000 0x86 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_post_toDS_state + 0x00000000 0x60 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_print_scan_result + 0x00000000 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .xt.lit 0x00000000 0x488 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .xt.prop 0x00000000 0x6b64 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.is_zero_addr + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_get_vnd_ext_assoc_len + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_ps_duty_ext_get_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_ssid + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_roots_announce + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_roots_yield + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_roots_fixed + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_roots_gone + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_ps + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_parse_ext_assoc_ie + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_sync_interface_tsf + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_ext_assoc + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._wifi_vnd_ext_mesh_roots_free$part$14 + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_roots_process_fixed$part$15 + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_get_conflict_root_state$part$31 + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.is_my_ie_encrypted + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_get_vnd_ssid_len + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_coding_ie_key + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_encrypt_vnd_ie + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_add_mesh_assoc_ie + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_decrypt_vnd_ie + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_check_vnd_ie + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_set_ie_crypto_config + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_mesh_quick_set + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_mesh_quick_get + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_sta_monitor_rssi + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_map_reject_connection + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_map_change_beacon_interval + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_vnd_mesh_quick_set + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_vnd_mesh_quick_get + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_add_ie_esp_mesh_head + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_add_mesh_ssid_ie + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_add_mesh_ext_assoc_ie + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_add_mesh_ps_ie + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_add_mesh_duty_signaling + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_init_mesh_assoc_ie + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.roots_type2str + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._wifi_vnd_ext_mesh_roots_free + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._wifi_vnd_ext_mesh_roots_malloc + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._print_roots_count + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_roots_num_reach_max + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_reset_window_open_time + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_roots_process_announce + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_roots_process_fixed + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_vnd_mesh_roots_get + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_valid + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_announce + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_yield + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_announce_used + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_yield_used + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_fixed + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_gone + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_get_vnd_roots_len + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_add_mesh_roots_ie + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_map_stop_beacon + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_check_window_close_expire + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_check_window_open_expire + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_timer_process_fixed + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_timer_process_gone + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.print_roots_ie + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_duty_signaling + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_ps_set_new_duty + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_nwk_duty_post_event + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_nwk_duty_master_is_root + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_parse_ps_entire_rule + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_parse_ps_uplink_rule + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_nwk_duty_check_duration_expire + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_nwk_duty_set_master_identity + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_nwk_duty_clr_master_identity + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_nwk_duty_clr_remaining + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_nwk_duty_set_remaining + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_nwk_duty_check_allowed + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_ps_duty_cycle_set_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_parse_ps_ie + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_recv_mesh_duty_signaling + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_nwk_duty_process_remaining + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_root_process_duty_duration_expire + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_ps_duty_cycle_get_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_is_new_root_found + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_is_new_root_invalid + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_is_ie_ignored + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_is_same_router + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_get_conflict_root_state + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_check_roots_gone + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_timer_process_announce + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_timer_process_conflict_root + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_remove_conflict_root + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_roots_process_yield + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_roots_process_conflict_table + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_find_conflict_root + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_update_conflict_root + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_add_conflict_root + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_is_new_found_conflict_root + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_vnd_mesh_roots_set + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_remove_gone + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_roots_process_gone + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_roots_process_stop + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_process_roots_ie_ttl + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_timer_process_yield + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_root_process_roots_ie + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_process_roots_ie + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_parse_conflict_roots_ie + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_parse_conflict_roots_ie + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_check_conflict_beacon + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_parse_conflict_assoc_ie + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_set_parent_candidate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_clear_parent_candidate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_get_parent_candidate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_post_parent_switch_candidate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_post_parent_weak_rssi + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_post_parent_assoc_ie + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_monitor_parent_candidate_ie + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_set_parent_monitor_config + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_get_parent_monitor_config + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_get_sub_ie + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_set_flag_roots_found + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_get_vnd_roots_len + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_monitor_parent_ie + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_map_probe_response + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_monitor_vote_candidate_rssi + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_parse_beacon + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_set_rssi_threshold + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_get_rssi_threshold + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_quick_funcs_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_init_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_quick_funcs_deinit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_deinit_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.roots_type2str + 0x00000000 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._print_roots_count + 0x00000000 0x5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_roots_num_reach_max + 0x00000000 0x21 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_roots_process_fixed + 0x00000000 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_vnd_mesh_roots_get + 0x00000000 0x36 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_is_mesh_roots_announce_used + 0x00000000 0x11 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_is_mesh_roots_yield_used + 0x00000000 0x11 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.print_roots_ie + 0x00000000 0x29a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_get_parent_candidate + 0x00000000 0x22 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_get_parent_monitor_config + 0x00000000 0x29 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.16 + 0x00000000 0x5f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.15 + 0x00000000 0x53 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.14 + 0x00000000 0x43 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.13 + 0x00000000 0x1d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.12 + 0x00000000 0x6e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .xt.lit 0x00000000 0x3d8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .xt.prop 0x00000000 0x4c14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_rt_change_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_route_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_route_deinit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.mesh_rt_change_timer_start + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.mesh_rt_change_timeout_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_match_self + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_get_total_children_num + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_lookup_sub_route + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_lookup_route + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_print_route_table + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_get_sub_capacity + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.routetype2str + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.mesh_update_route_table + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_delete_sub_children + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_send_add_announcement + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.mesh_fill_rmv_sub_child + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.mesh_malloc_rmv_announcement + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.mesh_construct_rmv_announcement + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.mesh_pack_rmv_announcement + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_pack_rmv_announcement + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_pack_multi_routing_table + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_ie_update_capacity + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_check_nonassociated_children + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_monitor_nonassociated_children + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_remove_nonassociated_children + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_copy_mgmt_announce + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_process_redundant_subchildren + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_combine_multi_redundant_ack + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_check_multi_redundant_ack + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_refresh_routing_table + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_get_routing_table_size + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_get_routing_table + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.mesh_get_subnet_nodes_num + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.mesh_get_subnet_nodes_list + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_send_rtable_request + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_send_rtable_ack + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_nwk_redundant_route + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_print_route_table + 0x00000000 0x9f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_get_sub_capacity + 0x00000000 0x59 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.routetype2str + 0x00000000 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.CSWTCH$137 + 0x00000000 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .xt.lit 0x00000000 0x120 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .xt.prop 0x00000000 0x1860 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.mesh_print_txQ_waiting + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_print_txQ_waiting + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_get_tx_pending + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_get_tx_pending + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_send_block_event + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_send_block_start + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_forward_check_active + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_check_tid_mbox_full + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_push_to_ack_state_queue + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_tx_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_best_effort_tx + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_push_to_wnd_queue + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_operation_rxseqno + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_txupQ_pending_get_cidx + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_txupQ_pending_insert_child + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_txupQ_pending_delete_child + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_txupQ_pending_get_xonseq + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_txupQ_pending_clear_xonseq + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_txupQ_pending + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_process_txupQ_pending + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_push_to_tx_queue + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_force_txupQ_pending + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_available_txupQ_num + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_flush_txQ + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_tx_tid_flush + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_tx_tid_stop + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_push_to_ps_tx_queue + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_ps_tx + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.tx_task_main + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_discard_context + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_send_xon + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_recv_xon + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_tx_task_main + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_xon_deliver_packet + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_xon_flush_packets + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_xon_process_disconnected + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_xon_process_expired + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_flush_upstream_packets + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.xon_task_main + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_xon_process_no_wnd + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_xon_task_main + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_tx_task_deinit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_tx_task_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_tx_task_deinit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_send_block_deinit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_send_block_deinit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_send_block_main + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_send_block_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_flush_upstream_packets + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_send_block_time + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_get_tx_pending + 0x00000000 0x62 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_flush_upstream_packets + 0x00000000 0x6e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_send_block_time + 0x00000000 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .xt.lit 0x00000000 0x190 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .xt.prop 0x00000000 0x30e4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_pm_tbtt_start + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .literal.esp_mesh_pm_tbtt_timeout_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .literal.esp_mesh_pm_rx_beacon_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .literal.esp_mesh_pm_tx_data_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .literal.esp_mesh_pm_tx_null_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .literal.mesh_pm_set_null + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .literal.esp_mesh_pm_go_to_sleep + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .literal.esp_mesh_pm_go_to_wake + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .literal.esp_mesh_is_start_pm_now + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .text.mesh_pm_set_null + 0x00000000 0x2a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .xt.lit 0x00000000 0x40 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .xt.prop 0x00000000 0x444 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .literal.mesh_timer_route_announce + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .literal.mesh_timer_mie_monitor + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .literal.mesh_timer_bcn_change + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .literal.mesh_timer_root_connect + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .literal.mesh_timer_candidate_monitor + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .literal.mesh_timer_rt_change + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .literal.mesh_timer_ps_control + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .literal.mesh_timer_do_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .xt.lit 0x00000000 0x40 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .xt.prop 0x00000000 0x210 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .literal.mesh_mutex_lock + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.mesh_mutex_unlock + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.esp_mesh_create_mbox + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.esp_mesh_free_mbox + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.mesh_malloc + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.mesh_free + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.esp_mesh_create_context + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.esp_mesh_free_context + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.mesh_create_task + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.wifi_event_id2str + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.nwk_event_id2str + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.tx_msg_id2str + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.tx_state_id2str + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.discnx_reason_id2str + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.mesh_ie_type2str + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.scan_status2str + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.vote_done2str + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.vote_start2str + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.txq_opr2str + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.tx_wifi_err2str + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.io_cfg2str + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.opt_type2str + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.reconnect_type2str + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.dutytype2str + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.mesh_create_task + 0x00000000 0x3d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.tx_wifi_err2str + 0x00000000 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$51 + 0x00000000 0x44 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .xt.lit 0x00000000 0xc0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .xt.prop 0x00000000 0xaf8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.esp_mesh_push_to_rx_queue + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .literal.mesh_topo_get_ttl + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .literal.esp_mesh_wifi_recv_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .literal.esp_mesh_rx_task_deinit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .literal.mesh_rx_task_deinit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .literal.mesh_rx_task_main + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .literal.esp_mesh_rx_task_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .xt.lit 0x00000000 0x38 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .xt.prop 0x00000000 0x510 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .literal.esp_mesh_ap_list_clear + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .literal.esp_mesh_ap_list_find_expire + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .literal.esp_mesh_ap_list_clear_expire + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .literal.esp_mesh_ap_list_find_invalid + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .literal.esp_mesh_ap_list_clear_invalid + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .literal.esp_mesh_ap_list_update_invalid + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .literal.esp_mesh_ap_list_find + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .literal.esp_mesh_ap_enqueue + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .text.esp_mesh_ap_list_clear_invalid + 0x00000000 0xc2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .xt.lit 0x00000000 0x40 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .xt.prop 0x00000000 0x570 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .literal.esp_wifi_ftm_get_report_local + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ftm_resp_set_offset_local + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_config_channel_local + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_negotiated_channel_local + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_negotiated_bw_local + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_sta_get_aid_local + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_sta_get_negotiated_phymode_local + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_inactive_time_local + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ap_get_sta_aid_local + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_reg_netstack_buf_cb_local + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_send_deauth_local + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ftm_end_session_local + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_get_init_state + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_is_stop_in_progress + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_api_lock + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_api_unlock + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_init_completed + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_inactive_time_local + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_station_get_config_local$part$5 + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_softap_get_config + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_station_get_config + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_station_get_config_default + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_station_get_current_ap_id + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_station_ap_check + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_softap_cacl_mac + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_sta_get_rssi + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_softap_get_station_num + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_softap_deauth + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_register_user_ie_manufacturer_recv_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_unregister_user_ie_manufacturer_recv_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_set_user_ie + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_get_user_ie + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_check_chan_param + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_deinit_in_caller_task + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_init_in_caller_task + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_osi_ready + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_osi_funcs_register + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_osi_funcs_md5_check + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_crypto_funcs_md5_check + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_wifi_type_md5_check + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_esp_wifi_md5_check + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_esp_wifi_he_md5_check + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_wifi_he_type_md5_check + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.net80211_softap_funcs_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.net80211_funcs_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.net80211_funcs_deinit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_init_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_deinit_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_mode + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ftm_initiate_session + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_mode + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_restart + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_start + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_stop + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_connect + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_disconnect + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_clear_fast_connect + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_deauth_sta + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_promiscuous_scan_start + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.get_total_scan_time + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_start + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_stop + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_get_ap_num + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_get_ap_records + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_get_ap_record + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_clear_ap_list + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_config + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_config + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ap_get_sta_list + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_connectionless_module_set_wake_interval + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_ps + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_ps + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_protocol + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_protocol + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_config_11b_rate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_config_espnow_rate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_config_80211_tx_rate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_bandwidth + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_bandwidth + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_channel + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_home_channel + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_channel + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_country + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_country_code + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_country + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_country_code + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_mac + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_mac + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_sta_get_ap_info + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_promiscuous_filter + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_promiscuous_filter + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_promiscuous_ctrl_filter + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_promiscuous_ctrl_filter + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_promiscuous + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_promiscuous_rx_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_promiscuous + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_storage + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_reg_rxcb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_set_sta_ip + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_auto_connect + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_auto_connect + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_restore + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_vendor_ie + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_vendor_ie_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_event_post + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_mesh_event_post + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_lora_enable + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_lora_disable + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_max_tx_power + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_max_tx_power + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_event_mask + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_event_mask + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_csi + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_csi_config + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_csi_rx_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_ant_gpio + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_ant_gpio + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_ant + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_ant + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_set_fix_rate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_get_fix_rate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_sta_rx_probe_req + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ipc_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ftm_end_session + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ftm_get_report + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ftm_resp_set_offset + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .wifislpiram.42.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_set_log_level + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_set_log_mod + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_get_log + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_ioctl + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_configure_wake_window + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_force_wakeup_acquire + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_force_wakeup_release + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_on_coex_start + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_on_coex_schm_phase + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_coex_pwr_configure + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_update_listen_interval + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_update_light_sleep_default_params + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_sleep_min_active_time + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_keep_alive_time + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_beacon_monitor_configure + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_sleep_wait_broadcast_data_time + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_reg_netstack_buf_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_get_config_channel + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_issue_disconnect + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_improve_contention_ability + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_get_negotiated_channel + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_get_negotiated_bandwidth + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ap_get_sta_aid + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_sta_get_aid + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_sta_get_negotiated_phymode + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_tsf_time + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_tx_done_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_inactive_time + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_inactive_time + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_statis_dump + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_set_spp_amsdu + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_disable_pmf_config + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_phy_apply_phy_init_data + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_nan_internal_publish_service + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_nan_internal_subscribe_service + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_nan_internal_send_followup + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_nan_internal_datapath_req + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_nan_internal_datapath_resp + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_nan_internal_datapath_end + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_mesh_reg_rxcb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_ap_assoc_expire + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_ap_assoc_expire + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_router_bssid + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_router_bssid + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_beacon_interval + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_beacon_interval + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_map_deauth + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_sta_disassoc + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_get_cur_ap_info + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_scan_get_ap_ie_len + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_get_cur_ap_record + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_scan_get_ap_record + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_mesh_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_mesh_deinit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_mesh_set + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_mesh_get + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_roots_set + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_roots_get + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_allow_root_conflicts + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_is_root_conflicts_allowed + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_parent_monitor_config + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_parent_monitor_config + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_ie_crypto_funcs_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_ie_crypto_key_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_sort_ap_records + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_sort_get_cur_ap_info + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_sort_get_cur_ap_record + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_parent_candidate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_clear_parent_candidate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_parent_candidate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_rssi_threshold_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_rssi_threshold_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_is_roots_found + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_storage + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_switch_channel_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_active_duty_cycle + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_active_duty_cycle + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_network_duty_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_network_duty_cycle + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_network_duty_cycle + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_running_active_duty_cycle + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_ps_get_ext_duty + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_ps_duty_signaling + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_non_mesh_connections + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_dynamic_cs + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_eb_tx_status_success_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_ftm_get_report_local + 0x00000000 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_ftm_resp_set_offset_local + 0x00000000 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_config_channel_local + 0x00000000 0x82 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_negotiated_channel_local + 0x00000000 0xb8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_negotiated_bw_local + 0x00000000 0xce /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_sta_get_aid_local + 0x00000000 0x26 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_sta_get_negotiated_phymode_local + 0x00000000 0x61 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_inactive_time_local + 0x00000000 0x77 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_ftm_end_session_local + 0x00000000 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_inactive_time_local + 0x00000000 0x84 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.wifi_station_get_config + 0x00000000 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.wifi_station_get_config_default + 0x00000000 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.wifi_station_get_current_ap_id + 0x00000000 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.wifi_station_ap_check + 0x00000000 0x3e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.wifi_softap_cacl_mac + 0x00000000 0x3a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_sta_get_rssi + 0x00000000 0x4d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.wifi_softap_get_station_num + 0x00000000 0x63 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.wifi_register_user_ie_manufacturer_recv_cb + 0x00000000 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.wifi_unregister_user_ie_manufacturer_recv_cb + 0x00000000 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.wifi_set_user_ie + 0x00000000 0x18e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.wifi_get_user_ie + 0x00000000 0x3a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.wifi_get_user_ie + 0x00000000 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.wifi_osi_ready + 0x00000000 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_osi_funcs_md5_check + 0x00000000 0x4c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_crypto_funcs_md5_check + 0x00000000 0x4c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_wifi_type_md5_check + 0x00000000 0x4c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_esp_wifi_md5_check + 0x00000000 0x4c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_esp_wifi_he_md5_check + 0x00000000 0x4c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_wifi_he_type_md5_check + 0x00000000 0x4c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_ftm_initiate_session + 0x00000000 0x68 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_restart + 0x00000000 0x3c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_clear_fast_connect + 0x00000000 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_promiscuous_scan_start + 0x00000000 0xac /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_get_ap_records + 0x00000000 0xb0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_get_ap_record + 0x00000000 0x82 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_clear_ap_list + 0x00000000 0x68 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_connectionless_module_set_wake_interval + 0x00000000 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_protocol + 0x00000000 0x8e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_protocol + 0x00000000 0x72 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_config_11b_rate + 0x00000000 0x102 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_config_espnow_rate + 0x00000000 0x72 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_config_80211_tx_rate + 0x00000000 0x72 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_bandwidth + 0x00000000 0x60 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_bandwidth + 0x00000000 0x72 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_channel + 0x00000000 0x76 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_home_channel + 0x00000000 0x76 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_channel + 0x00000000 0x7c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_country_code + 0x00000000 0xc6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_country + 0x00000000 0x6a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_country_code + 0x00000000 0x8e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_mac + 0x00000000 0x88 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_sta_get_ap_info + 0x00000000 0x6a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_promiscuous_filter + 0x00000000 0x62 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_promiscuous_filter + 0x00000000 0x2e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_promiscuous_ctrl_filter + 0x00000000 0x62 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_promiscuous_ctrl_filter + 0x00000000 0x2e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_promiscuous + 0x00000000 0x84 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_promiscuous_rx_cb + 0x00000000 0x28 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_promiscuous + 0x00000000 0x41 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_auto_connect + 0x00000000 0x56 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_auto_connect + 0x00000000 0x3d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_restore + 0x00000000 0x58 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_vendor_ie + 0x00000000 0x62 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_vendor_ie_cb + 0x00000000 0x64 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_max_tx_power + 0x00000000 0x7e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_max_tx_power + 0x00000000 0x4b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_event_mask + 0x00000000 0x62 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_csi + 0x00000000 0x9c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_csi_config + 0x00000000 0xc6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_csi_rx_cb + 0x00000000 0x2a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_ant_gpio + 0x00000000 0x66 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_ant_gpio + 0x00000000 0x53 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_ant + 0x00000000 0x66 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_ant + 0x00000000 0x36 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_set_fix_rate + 0x00000000 0x86 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_get_fix_rate + 0x00000000 0x50 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_sta_rx_probe_req + 0x00000000 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_ftm_end_session + 0x00000000 0x52 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_ftm_get_report + 0x00000000 0x66 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_ftm_resp_set_offset + 0x00000000 0x5e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_set_log_mod + 0x00000000 0x62 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_get_log + 0x00000000 0x40 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_ioctl + 0x00000000 0x68 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_configure_wake_window + 0x00000000 0x8a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_force_wakeup_acquire + 0x00000000 0x6a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_force_wakeup_release + 0x00000000 0x67 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_coex_pwr_configure + 0x00000000 0x53 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_update_listen_interval + 0x00000000 0x64 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_update_light_sleep_default_params + 0x00000000 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_beacon_monitor_configure + 0x00000000 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_get_config_channel + 0x00000000 0x38 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_improve_contention_ability + 0x00000000 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_get_negotiated_channel + 0x00000000 0x36 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_get_negotiated_bandwidth + 0x00000000 0x36 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_sta_get_aid + 0x00000000 0x28 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_sta_get_negotiated_phymode + 0x00000000 0x28 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_tsf_time + 0x00000000 0xa7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_tx_done_cb + 0x00000000 0x28 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_inactive_time + 0x00000000 0x66 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_inactive_time + 0x00000000 0x48 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_statis_dump + 0x00000000 0x34 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_set_spp_amsdu + 0x00000000 0x7d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_disable_pmf_config + 0x00000000 0x5e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_phy_apply_phy_init_data + 0x00000000 0x30 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_nan_internal_publish_service + 0x00000000 0x76 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_nan_internal_subscribe_service + 0x00000000 0x78 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_nan_internal_send_followup + 0x00000000 0x6c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_nan_internal_datapath_req + 0x00000000 0x6a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_nan_internal_datapath_resp + 0x00000000 0x6c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_nan_internal_datapath_end + 0x00000000 0x6c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_scan_get_ap_ie_len + 0x00000000 0x25 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_scan_get_ap_record + 0x00000000 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_vnd_roots_get + 0x00000000 0x7e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_allow_root_conflicts + 0x00000000 0x84 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_get_parent_monitor_config + 0x00000000 0x74 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_get_parent_candidate + 0x00000000 0x7a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_network_duty_internal + 0x00000000 0x6a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_ps_get_ext_duty + 0x00000000 0x52 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_ps_duty_signaling + 0x00000000 0x64 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_dynamic_cs + 0x00000000 0x6a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_eb_tx_status_success_internal + 0x00000000 0x2c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .bss.token$14747 + 0x00000000 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.40 + 0x00000000 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.39 + 0x00000000 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.36 + 0x00000000 0x29 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.35 + 0x00000000 0xd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.34 + 0x00000000 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.33 + 0x00000000 0x29 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.32 + 0x00000000 0xd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.31 + 0x00000000 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_info.30 + 0x00000000 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_info.29 + 0x00000000 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_info.28 + 0x00000000 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_info.27 + 0x00000000 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.26 + 0x00000000 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.25 + 0x00000000 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.15 + 0x00000000 0x22 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.14 + 0x00000000 0x22 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .data.g_esp_wifi_he_md5 + 0x00000000 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .data.g_wifi_he_type_md5 + 0x00000000 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .data.g_esp_wifi_md5 + 0x00000000 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .data.g_wifi_type_md5 + 0x00000000 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .data.g_wifi_crypto_funcs_md5 + 0x00000000 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .data.g_wifi_osi_funcs_md5 + 0x00000000 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .xt.lit 0x00000000 0x690 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .xt.prop 0x00000000 0x4c08 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.ieee80211_freedom_inside_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_send_sa_query + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_send_sa_query_resp + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_send_sa_query_req + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_recv_sa_query_resp + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_recv_sa_query_req + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_rate_ref_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_freedom_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_user_ie_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_ifattach + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_ifdetach + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.wifi_create_nan + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.wifi_destroy_nan + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.wifi_destroy_softap + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.wifi_destroy_sta + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.wifi_recycle_rx_pkt + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.wifi_get_rand_macaddr + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.wifi_get_rand_macaddr_keep_oui + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_find_elem_match + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_find_ie_match + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_find_ie + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_find_elem + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_find_ext_ie + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_find_ext_elem + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_setup_pmf + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.wifi_create_softap + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.wifi_create_sta + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.wifi_mode_set + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_is_robust_mgmt_frm + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .text.wifi_recycle_rx_pkt + 0x00000000 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .text.wifi_get_rand_macaddr + 0x00000000 0x2e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .text.wifi_get_rand_macaddr_keep_oui + 0x00000000 0x2e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .text.ieee80211_find_ie_match + 0x00000000 0x24 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .text.ieee80211_find_elem + 0x00000000 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .text.ieee80211_find_ext_ie + 0x00000000 0x28 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .text.ieee80211_find_ext_elem + 0x00000000 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .rodata.ieee80211_opcap + 0x00000000 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .data.libnet80211_reversion_remote + 0x00000000 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .data.libnet80211_reversion_git + 0x00000000 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .xt.lit 0x00000000 0xe0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .xt.prop 0x00000000 0x984 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_crypto_attach + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .literal.ieee80211_crypto_available + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .literal.ieee80211_crypto_setkey + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .literal.ieee80211_crypto_encap + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .literal.ieee80211_crypto_decap + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .literal.ieee80211_crypto_aes_128_cmac_encrypt + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .literal.ieee80211_crypto_aes_128_cmac_decrypt + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .literal.ieee80211_crypto_gmac_decrypt + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .literal.ieee80211_get_cipher_mic_len + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .text.ieee80211_crypto_available + 0x00000000 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .text.ieee80211_crypto_setkey + 0x00000000 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .xt.lit 0x00000000 0x28 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .xt.prop 0x00000000 0x3c0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .literal.wifi_log + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .literal.dbg_hmac_rxtx_statis_dump + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .literal.dbg_hmac_statis_dump + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .text.dbg_hmac_rxtx_statis_dump + 0x00000000 0x297 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .text.dbg_hmac_statis_dump + 0x00000000 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.14 + 0x00000000 0x24 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.13 + 0x00000000 0x2e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.12 + 0x00000000 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.11 + 0x00000000 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.10 + 0x00000000 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.9 + 0x00000000 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.8 + 0x00000000 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.7 + 0x00000000 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.6 + 0x00000000 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.5 + 0x00000000 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.4 + 0x00000000 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.3 + 0x00000000 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .rodata_wlog_info.2 + 0x00000000 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .xt.lit 0x00000000 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .xt.prop 0x00000000 0xc0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .literal.unlikely.is_non_esp_oui + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.unlikely.is_esp_manufacturer_oui + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.ieee80211_is_action_category_robust + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.ieee80211_hostapd_beacon_txcb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.ieee80211_hostap_send_beacon + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_handle_timer + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.ap_try_sa_query + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.ap_sa_query_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.ieee80211_hostapd_ps_txcb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .wifi0iram.46.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.ieee80211_free_beacon_eb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.ieee80211_hostap_send_beacon_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_delete_ptk + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.ieee80211_hostap_attach + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_deliver_data + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_handle_timer_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.ieee80211_hostapd_data_txcb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.wifi_ap_reg_rxcb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.ap_rx_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_auth_open + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_recv_ctl + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.wifi_softap_start + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.wifi_softap_stop + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.ap_sa_query_timeout_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.ap_try_sa_query_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_recv_mgmt + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_input + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.add_mic_ie_bip + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .wifi0iram.46 0x00000000 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .bss.APRecvBcnStartTick + 0x00000000 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .xt.lit 0x00000000 0xd8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .xt.prop 0x00000000 0x1a4c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + COMMON 0x00000000 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.addba_get_rap_from_private + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.addba_stop_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ampdu_tx_stop + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.addba_response_txcb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.addba_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_stop_age_timer$part$0 + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_add_htcap_body + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ht_recv_action_ba_addba_response + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ht_attach + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ampdu_free_rx_ba_index + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ampdu_rx_stop + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ht_recv_action_ba_delba + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ampdu_alloc_rx_ba_index + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ampdu_rx_start + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ht_recv_action_ba_addba_request + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ht_deattach + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_cal_tx_pps + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_enable + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.addba_timeout_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_request + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_stop + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .wifirxiram.27.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ampdu_dispatch_movement + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .wifirxiram.29.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .wifirxiram.31.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .wifirxiram.33.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_age_bss + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_start_age_timer + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_age_all + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ampdu_process_multicast_address_qos_frame + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .wifirxiram.37.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_recv_bar + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ht_node_cleanup + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ht_node_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_parse_htcap + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_has_ht40_bss + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_update_channel + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ht_updatehtcap + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ht_updateparams + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_setup_htrates + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_setup_basic_htrates + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_add_htcap + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_add_htcap_vendor + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_add_htinfo_body + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_add_htinfo + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_add_htinfo_vendor + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ht_action_output + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ht_send_action_ba_delba + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ht_send_action_ba_addba + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_decap1 + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_decap_amsdu + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .text.ieee80211_cal_tx_pps + 0x00000000 0x4d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .text.ieee80211_ampdu_stop + 0x00000000 0x56 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .xt.lit 0x00000000 0x188 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .xt.prop 0x00000000 0x1d70 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_add_ie_vendor_esp_head + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .literal.ieee80211_add_ie_vendor_esp_mesh_group + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .literal.ieee80211_add_ie_vendor_esp_simple_pair + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .literal.ieee80211_add_ie_vendor_esp_freq_annon + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .literal.ieee80211_add_ie_vendor_esp_now + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .literal.ieee80211_add_ie_vendor_esp_ssid + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .literal.ieee80211_add_ie_vendor_esp_manufacturer + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .text.ieee80211_add_ie_vendor_esp_mesh_group + 0x00000000 0x35 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .text.ieee80211_add_ie_vendor_esp_simple_pair + 0x00000000 0x58 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .text.ieee80211_add_ie_vendor_esp_freq_annon + 0x00000000 0x37 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .text.ieee80211_add_ie_vendor_esp_now + 0x00000000 0x32 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .text.ieee80211_add_ie_vendor_esp_ssid + 0x00000000 0x50 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .xt.lit 0x00000000 0x38 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .xt.prop 0x00000000 0x168 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .literal.wpa_cipher + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.rsn_cipher + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_deliver_data + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_decap + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_is_support_rate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_is_11b_rate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_setup_rates + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_set_max_rate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_is_lr_only + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_setup_phy_mode + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_setup_lr_rates + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_alloc_challenge + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_parse_beacon + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_parse_wpa + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_rsn_cipher_priority + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_better_rsn_pairwise_cipher + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_amsdu_negotiate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_parse_rsn + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_is_ht_cipher + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_parse_wapi + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_parse_action + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_setup_rateset + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .text.ieee80211_deliver_data + 0x00000000 0x5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .text.ieee80211_is_11b_rate + 0x00000000 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .xt.lit 0x00000000 0x88 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .xt.prop 0x00000000 0x1788 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.wifi_wps_stop + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_wps_start + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ioctl_ht2040_get + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_pmk_is_valid + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_ioctl_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_station_set_config_local_2 + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ioctl_ht2040_set + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.current_task_is_wifi_task + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.adc2_wifi_acquire + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.adc2_wifi_release + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_station_get_reconnect_policy + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal._do_wifi_stop + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal._do_wifi_start + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_set_phy_2nd_chan + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_phy_2nd_chan_is_valid + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_set_phy_bw + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_set_phy_mode + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_phy_2nd_chan_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_station_save_ap_channel + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.print_sta_pmk + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_sta_connect + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_sta_disconnect + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal._do_wifi_disconnect + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_sta_scan + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_mac_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_promis_filter_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_promis_ctrl_filter_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_sta_set_ap_num_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_auto_connect_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_softap_max_support_num + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_softap_set_config + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_macaddr + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.chip_post_deinit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.chip_enable + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.chip_disable + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_reset_mac + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .wifislprxiram.38.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .wifislprxiram.40.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_hw_start + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_txq_empty + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_stop_sw_txq + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_hw_stop + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_promis_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_mode_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.esp_wifi_internal_set_baw + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_menuconfig_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_crypto_deinit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wpa_crypto_funcs_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_crypto_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_hmac_deinit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_hmac_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_lmac_deinit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_lmac_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_deinit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_init_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_deinit_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_start_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_stop_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_connect_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_sta_disconnect + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_disconnect_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_scan_start_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_scan_stop_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ant_to_ant_type + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.cipher_map_net80211_to_public_cipher + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_clear_ap_list_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_copy_ap_record + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_ap_list_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_ap_record_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_ap_info_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_sta_list_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_protocol_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_protocol_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_bw_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_bw_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_channel_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_home_channel_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_channel_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_chan_range + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_ps_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_country + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_country + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_restart_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_rxcb_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_restore_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_vnd_ie_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_vnd_ie_cb_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_max_tpw + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_event_mask + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_csi + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_csi_set_config + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ant_config_check + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .wifirxiram.88.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_ant + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_ant_gpio + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_fix_rate_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_deauth_sta_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_wps_is_started + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_wps_start_flag + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_wpa2_is_started + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_wpa2_ent_enable_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_wpa2_ent_disable_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_log_mod_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_wps_type_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_wps_status_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ipc_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_set_appie + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_appie_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_wps_cb_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_internal_ioctl_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_tsf_time_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ftm_start_initiator_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_send_mgmt_frame + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_rssi_threshold + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_register_mgmt_frame + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_roc_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_nan_set_config_local + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_config_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_nan_publish_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_nan_subscribe_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_nan_followup_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ndp_req_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ndp_resp_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ndp_end_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_action_tx_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_configure_wake_window_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_disable_pmf_config_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ap_remove_sta_node_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ap_sta_sae_auth_done_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_force_wakeup_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_update_listen_interval_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_coex_pwr_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_on_coex_start_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_on_coex_schm_phase_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ie_set_progress + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ie_get_progress + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_roots_ie_set_progress + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_roots_ie_get_progress + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ie_init_progress + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ie_deinit_progress + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_sta_disassoc + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_map_deauth_progress + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_sta_disassoc_progress + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_set_beacon_interval_progress + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_assoc_expire_set_progress + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_router_bssid_set_progress + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_router_bssid_get_progress + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_root_conflicts_set_progress + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ie_crypto_funcs_set_progress + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ie_crypto_key_set_progress + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_parent_monitor_set_progress + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_parent_monitor_get_progress + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_parent_candidate_set_progress + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_parent_candidate_clear_progress + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_parent_candidate_get_progress + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_rssi_threshold_set_progress + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_rssi_threshold_get_progress + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_is_roots_found_progress + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_switch_channel_progress + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ps_duty_cycle_set_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ps_duty_cycle_get_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ps_duty_ext_get_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_act_duty_signaling_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_ioctl_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_ioctl_deinit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_ioctl + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_dynamic_cs_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_wps_stop + 0x00000000 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_wps_start + 0x00000000 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_ioctl_ht2040_get + 0x00000000 0x1d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_ioctl_ht2040_set + 0x00000000 0x74 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.ieee80211_set_phy_2nd_chan + 0x00000000 0x41 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.ieee80211_phy_2nd_chan_is_valid + 0x00000000 0xa1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.ieee80211_set_phy_mode + 0x00000000 0x321 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_phy_2nd_chan_process + 0x00000000 0x52 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.print_sta_pmk + 0x00000000 0x1cc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_mac_process + 0x00000000 0x19a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_promis_filter_process + 0x00000000 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_promis_ctrl_filter_process + 0x00000000 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_sta_set_ap_num_process + 0x00000000 0x4e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_auto_connect_process + 0x00000000 0x78 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.chip_post_deinit + 0x00000000 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata 0x00000000 0x6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_promis_process + 0x00000000 0x92 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.esp_wifi_internal_set_baw + 0x00000000 0x30 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_crypto_deinit + 0x00000000 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_hmac_deinit + 0x00000000 0x11 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_lmac_deinit + 0x00000000 0x11 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_sta_disconnect + 0x00000000 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_ant_to_ant_type + 0x00000000 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.cipher_map_net80211_to_public_cipher + 0x00000000 0x1d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_clear_ap_list_process + 0x00000000 0x5c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_copy_ap_record + 0x00000000 0x105 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_get_ap_list_process + 0x00000000 0x216 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_get_ap_record_process + 0x00000000 0x90 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_get_ap_info_process + 0x00000000 0x17a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_protocol_process + 0x00000000 0xf1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_get_protocol_process + 0x00000000 0x8f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_bw_process + 0x00000000 0xfa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_get_bw_process + 0x00000000 0x2b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_channel_process + 0x00000000 0x162 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_home_channel_process + 0x00000000 0x38 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_get_channel_process + 0x00000000 0x41 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_get_country + 0x00000000 0x69 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_restart_process + 0x00000000 0x3c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_restore_process + 0x00000000 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_vnd_ie_process + 0x00000000 0x115 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_vnd_ie_cb_process + 0x00000000 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_max_tpw + 0x00000000 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_event_mask + 0x00000000 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_csi + 0x00000000 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_csi_set_config + 0x00000000 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_ant_config_check + 0x00000000 0x5a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .wifirxiram.88 + 0x00000000 0xa9 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_ant + 0x00000000 0x4f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_ant_gpio + 0x00000000 0xb7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_fix_rate_process + 0x00000000 0x7a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_wps_start_flag + 0x00000000 0x34 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_wpa2_ent_enable_process + 0x00000000 0x48 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_wpa2_ent_disable_process + 0x00000000 0x48 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_log_mod_process + 0x00000000 0x88 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_wps_type_process + 0x00000000 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_wps_status_process + 0x00000000 0x37 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_wps_cb_process + 0x00000000 0x2c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_internal_ioctl_process + 0x00000000 0x6f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_get_tsf_time_process + 0x00000000 0x78 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_ftm_start_initiator_process + 0x00000000 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_rssi_threshold + 0x00000000 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_roc_process + 0x00000000 0xd8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_nan_publish_process + 0x00000000 0x3c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_nan_subscribe_process + 0x00000000 0x3c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_nan_followup_process + 0x00000000 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_ndp_req_process + 0x00000000 0x30 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_ndp_resp_process + 0x00000000 0x30 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_ndp_end_process + 0x00000000 0x30 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_action_tx_process + 0x00000000 0xf4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_configure_wake_window_process + 0x00000000 0x26 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_disable_pmf_config_process + 0x00000000 0x17a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_force_wakeup_process + 0x00000000 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_update_listen_interval_process + 0x00000000 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_coex_pwr_process + 0x00000000 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_roots_ie_get_progress + 0x00000000 0x2d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_root_conflicts_set_progress + 0x00000000 0x29 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_parent_monitor_get_progress + 0x00000000 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_parent_candidate_get_progress + 0x00000000 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_ps_duty_ext_get_process + 0x00000000 0x32 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_act_duty_signaling_process + 0x00000000 0x32 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_dynamic_cs_process + 0x00000000 0x9a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata.CSWTCH$225 + 0x00000000 0xb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.131 + 0x00000000 0x24 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.130 + 0x00000000 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.129 + 0x00000000 0x2f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.120 + 0x00000000 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.119 + 0x00000000 0x51 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.118 + 0x00000000 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.117 + 0x00000000 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.116 + 0x00000000 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.115 + 0x00000000 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.114 + 0x00000000 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.113 + 0x00000000 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.109 + 0x00000000 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.108 + 0x00000000 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.103 + 0x00000000 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.102 + 0x00000000 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.101 + 0x00000000 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .data.s_ioctl_table + 0x00000000 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.100 + 0x00000000 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.99 + 0x00000000 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.95 + 0x00000000 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.94 + 0x00000000 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.93 + 0x00000000 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.92 + 0x00000000 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.91 + 0x00000000 0x2c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.90 + 0x00000000 0x11 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.89 + 0x00000000 0x2a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.87 + 0x00000000 0x45 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.86 + 0x00000000 0x2f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.81 + 0x00000000 0x5b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.80 + 0x00000000 0x29 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_verbose.79 + 0x00000000 0x2b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.78 + 0x00000000 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_verbose.77 + 0x00000000 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_verbose.76 + 0x00000000 0x29 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.75 + 0x00000000 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.74 + 0x00000000 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.47 + 0x00000000 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.14 + 0x00000000 0xac /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.13 + 0x00000000 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.10 + 0x00000000 0x24 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.9 + 0x00000000 0x2c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .xt.lit 0x00000000 0x500 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .xt.prop 0x00000000 0x4a1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_public_action_recv_mesh_awake + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .literal.ieee80211_mesh_quick_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .literal.ieee80211_mesh_quick_deinit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .literal.ieee80211_vnd_mesh_update_beacon + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .literal.ieee80211_vnd_mesh_fully_associated + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .literal.is_esp_mesh_assoc + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .literal.ieee80211_public_action_send_mesh_awake + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .xt.lit 0x00000000 0x38 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .xt.prop 0x00000000 0x2b8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .literal.nan_mgmt_txcb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_get_random_word + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_get_random_byte + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_get_tsf + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_is_in_dw + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_update_tsf + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_action_frames_queued + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_flush_action_q + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_get_clust_id + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_disc_enable_rx + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_disc_disable_rx + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.wifi_nan_reg_rxcb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_set_update_sdf_pending + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_set_trc + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_input + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_rx_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_transmit_bcn + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_alloc_beacon + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_alloc_sdf + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_alloc_action + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_post_event + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_transmit_action + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_tx_action_frame + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_tx_queued_action_frames + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_start + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_stop + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_set_config_local + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_mgmt_txcb + 0x00000000 0xa2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_get_random_word + 0x00000000 0x11 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_get_random_byte + 0x00000000 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_is_in_dw + 0x00000000 0x2a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_update_tsf + 0x00000000 0x28 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_action_frames_queued + 0x00000000 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_flush_action_q + 0x00000000 0x31 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_disc_enable_rx + 0x00000000 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_disc_disable_rx + 0x00000000 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_input + 0x00000000 0x3ec /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_transmit_bcn + 0x00000000 0xa6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata.str1.1 + 0x00000000 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_alloc_beacon + 0x00000000 0x18a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_alloc_sdf + 0x00000000 0x17f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_alloc_action + 0x00000000 0x17f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_transmit_action + 0x00000000 0x93 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_tx_action_frame + 0x00000000 0x37 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_tx_queued_action_frames + 0x00000000 0x3d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_start + 0x00000000 0x110 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .text.nan_stop + 0x00000000 0xca /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata_wlog_error.18 + 0x00000000 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata_wlog_error.17 + 0x00000000 0x9 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata_wlog_error.16 + 0x00000000 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata_wlog_error.15 + 0x00000000 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata_wlog_error.14 + 0x00000000 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata_wlog_error.13 + 0x00000000 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata_wlog_error.12 + 0x00000000 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata_wlog_error.11 + 0x00000000 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata_wlog_error.10 + 0x00000000 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata_wlog_error.9 + 0x00000000 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata_wlog_error.8 + 0x00000000 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata_wlog_error.7 + 0x00000000 0x9 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata_wlog_error.5 + 0x00000000 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata_wlog_debug.4 + 0x00000000 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .bss.s_nan_rx_enabled + 0x00000000 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata.NAN_NETWORK_ID + 0x00000000 0x6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata.NAN_STANDARD_BSSID + 0x00000000 0x6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata.NAN_ACTION_OUI + 0x00000000 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata.NAN_STANDARD_OUI + 0x00000000 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .xt.lit 0x00000000 0xd8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .xt.prop 0x00000000 0x990 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .literal.nan_dp_clear_tmp_data + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_ndp_resp_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.ndc_txop_end + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.ndc_txop_start + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .wifi0iram.8.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_sched_in_ndc_slot + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_sched_is_peer_available + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_sched_alloc_time_slots + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_sched_get_chan_bitmap + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_sched_allocate_crbs + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_sched_alloc_conditional + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_sched_reset_avail_flags_sdf + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_sched_avail_entries_len + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_sched_add_entry + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_sched_construct_availability + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_send_indication_event + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_send_confirm_event + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_send_terminated_event + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_node_available + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_alloc_node + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_remove_node + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .wifi0iram.10.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_get_peer_ndp + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_get_peer_ndl + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_alloc_ndp + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_alloc_ndl + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_delete_peer + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_setup_peer + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_confirm_peer + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_construct_device_caps + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_post_tx + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_ndp_resp_timeout_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_construct_ndp_confirm + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_construct_ndp_terminate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_construct_ndp_resp + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_construct_ndp_req + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_send_ndp_confirm + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_send_ndp_terminate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_send_ndp_resp + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_send_ndp_req + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_parse_ndpa + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_parse_ndla + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_parse_elem_container + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_parse_dev_caps + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_chan_from_bitmap + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_parse_time_bitmap + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_parse_ndca + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_sched_parse_avail_entries + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_parse_availability + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_parse_ndp_req + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_parse_ndp_resp + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_parse_ndp_confirm + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_parse_ndp_terminate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_get_attr + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_rx_naf + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_naf_txcb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_datapath_send_req + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_datapath_send_resp + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_datapath_end + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_sched_init_availability + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_deinit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_indicate_ndc_start + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_indicate_faw_start + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_schedule_next_faw + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_dp_schedule_ndc_start + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_ndp_resp_timeout + 0x00000000 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.ndc_txop_end + 0x00000000 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.ndc_txop_start + 0x00000000 0x3e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_sched_alloc_time_slots + 0x00000000 0x47 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_sched_get_chan_bitmap + 0x00000000 0x6a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_sched_allocate_crbs + 0x00000000 0x134 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata 0x00000000 0x3 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_sched_alloc_conditional + 0x00000000 0xfc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_sched_reset_avail_flags_sdf + 0x00000000 0x72 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_sched_avail_entries_len + 0x00000000 0x34 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_sched_add_entry + 0x00000000 0xb4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_sched_construct_availability + 0x00000000 0x107 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_send_indication_event + 0x00000000 0x5b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_send_terminated_event + 0x00000000 0x37 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_node_available + 0x00000000 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_alloc_node + 0x00000000 0xf4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .wifi0iram.10 0x00000000 0x4b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_get_peer_ndp + 0x00000000 0x7e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_get_peer_ndl + 0x00000000 0x83 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_alloc_ndp + 0x00000000 0x56 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_alloc_ndl + 0x00000000 0x8c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_setup_peer + 0x00000000 0xaa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_confirm_peer + 0x00000000 0x75 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_construct_device_caps + 0x00000000 0x5e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_construct_ndp_confirm + 0x00000000 0xc8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_construct_ndp_terminate + 0x00000000 0xa3 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_construct_ndp_resp + 0x00000000 0x32e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_construct_ndp_req + 0x00000000 0x19b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_send_ndp_confirm + 0x00000000 0x6c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_send_ndp_terminate + 0x00000000 0x70 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_send_ndp_resp + 0x00000000 0x9a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_send_ndp_req + 0x00000000 0x6a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_parse_ndpa + 0x00000000 0xdd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_parse_ndla + 0x00000000 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_parse_elem_container + 0x00000000 0xe5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_parse_dev_caps + 0x00000000 0x2c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_chan_from_bitmap + 0x00000000 0x4c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_parse_time_bitmap + 0x00000000 0xc2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_parse_ndca + 0x00000000 0x38 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_sched_parse_avail_entries + 0x00000000 0x116 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_parse_availability + 0x00000000 0x171 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_parse_ndp_req + 0x00000000 0x18a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_parse_ndp_resp + 0x00000000 0x154 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_parse_ndp_confirm + 0x00000000 0xba /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_parse_ndp_terminate + 0x00000000 0x4b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_get_attr + 0x00000000 0x2c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_rx_naf + 0x00000000 0x17c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata.nan_rx_naf + 0x00000000 0x60 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_naf_txcb + 0x00000000 0x42 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_datapath_send_req + 0x00000000 0x204 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_datapath_send_resp + 0x00000000 0xaa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_datapath_end + 0x00000000 0x56 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_sched_init_availability + 0x00000000 0x67 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_init + 0x00000000 0x65 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_deinit + 0x00000000 0x80 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_indicate_ndc_start + 0x00000000 0x88 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_indicate_faw_start + 0x00000000 0x6a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_schedule_next_faw + 0x00000000 0xfb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .text.nan_dp_schedule_ndc_start + 0x00000000 0x86 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.44 + 0x00000000 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.43 + 0x00000000 0x38 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.42 + 0x00000000 0x22 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.41 + 0x00000000 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.40 + 0x00000000 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.39 + 0x00000000 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.38 + 0x00000000 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.37 + 0x00000000 0x2b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.36 + 0x00000000 0x22 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.35 + 0x00000000 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.34 + 0x00000000 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.33 + 0x00000000 0x28 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.32 + 0x00000000 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_debug.31 + 0x00000000 0x29 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.30 + 0x00000000 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_debug.29 + 0x00000000 0x2a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.28 + 0x00000000 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_debug.27 + 0x00000000 0x29 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.26 + 0x00000000 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.25 + 0x00000000 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.24 + 0x00000000 0x32 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.23 + 0x00000000 0x31 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.22 + 0x00000000 0x30 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.21 + 0x00000000 0x26 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.20 + 0x00000000 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.19 + 0x00000000 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.18 + 0x00000000 0x24 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.17 + 0x00000000 0x24 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.16 + 0x00000000 0x38 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.15 + 0x00000000 0x2a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.11 + 0x00000000 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_debug.7 + 0x00000000 0x2b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .bss.s_avail_seq + 0x00000000 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.6 + 0x00000000 0x28 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_info.5 + 0x00000000 0x37 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_info.4 + 0x00000000 0x4a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .data.g_opclass_chan_tbl + 0x00000000 0xd2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .data.g_def_2g_channels + 0x00000000 0xb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .xt.lit 0x00000000 0x1f0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .xt.prop 0x00000000 0x1e90 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .literal.nan_in_transit_event_hdlr + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_schedule_next_dwstart + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_fill_dynamic_attr + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_compare_mr + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_update_amr_for_non_anchor + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_common_dwstart_ops + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_common_dwend_ops + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_ndc_start_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_faw_end_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_faw_start_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_action_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_disc_bcn_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_sync_bcn_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_dwend_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_warmup_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_scan_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_dwstart_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_is_ambtt_too_old$isra$0 + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_update_tsf_from_bcn$isra$1 + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_adjust_non_anchor_tsf + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_recycle_rx_bcn$isra$2 + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_stop_handler + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_init_event_hdlr + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_update_bcn_stats + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_nms_event_hdlr + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_nmns_event_hdlr + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_send_started_event + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_scan_event_hdlr + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_schedule_disc_bcn + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_am_event_hdlr + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_master_event_hdlr + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_sm_handle_event_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_sm_handle_event + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_warmup_timeout_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_scan_timeout_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_dw_start_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_dw_end_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_send_disc_bcn_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_send_sync_bcn_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_send_action_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_faw_start_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_faw_end_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_ndc_start_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_sm_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_sm_deinit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_sm_start + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_sm_stop + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_in_transit_event_hdlr + 0x00000000 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_schedule_next_dwstart + 0x00000000 0x4b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_fill_dynamic_attr + 0x00000000 0x80 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_compare_mr + 0x00000000 0xa4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_update_amr_for_non_anchor + 0x00000000 0x21d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_common_dwstart_ops + 0x00000000 0x2a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_common_dwend_ops + 0x00000000 0x157 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_ndc_start_timeout + 0x00000000 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_faw_end_timeout + 0x00000000 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_faw_start_timeout + 0x00000000 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_action_timeout + 0x00000000 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_disc_bcn_timeout + 0x00000000 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_sync_bcn_timeout + 0x00000000 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_dwend_timeout + 0x00000000 0x63 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_warmup_timeout + 0x00000000 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_scan_timeout + 0x00000000 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_dwstart_timeout + 0x00000000 0xdb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_is_ambtt_too_old$isra$0 + 0x00000000 0x4e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_update_tsf_from_bcn$isra$1 + 0x00000000 0xce /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_adjust_non_anchor_tsf + 0x00000000 0xae /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_recycle_rx_bcn$isra$2 + 0x00000000 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_stop_handler + 0x00000000 0x18f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_init_event_hdlr + 0x00000000 0x152 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_update_bcn_stats + 0x00000000 0xee /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_nms_event_hdlr + 0x00000000 0x18a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_nmns_event_hdlr + 0x00000000 0x157 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_send_started_event + 0x00000000 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .rodata.str1.1 + 0x00000000 0xd1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_scan_event_hdlr + 0x00000000 0x419 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_schedule_disc_bcn + 0x00000000 0x76 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_am_event_hdlr + 0x00000000 0x398 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_master_event_hdlr + 0x00000000 0x19e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_sm_handle_event_internal + 0x00000000 0x2f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_sm_handle_event + 0x00000000 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_sm_deinit + 0x00000000 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .text.nan_sm_stop + 0x00000000 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .rodata.gNanSm + 0x00000000 0x38 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .rodata_wlog_debug.4 + 0x00000000 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .data.nan_state_str + 0x00000000 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .xt.lit 0x00000000 0x170 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .xt.prop 0x00000000 0x1470 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .literal.nan_prepare_filter + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_all_wildcard_filter + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_construct_sdea + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_construct_publish_sdf + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_construct_subscribe_sdf + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_construct_followup_sdf + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_get_peer_svc_record + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_insert_peer_svc_record + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_send_discovery_result + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_send_replied_event + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_send_receive_event + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_static_sdfs_present + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_send_static_sdfs + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_send_solicited_publish + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_match_filters + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_sd_parse_sdea + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_sd_parse_dev_caps + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_sd_parse_availability + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_service_type_diff + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_sd_receive_ctrl + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_rx_sdf + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_get_service_idx + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_get_service_by_index + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_get_service_by_id + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_sdf_txcb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_update_static_sdfs + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_tolower + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_compute_service_hash + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_start_publish_service + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_start_subscribe_service + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.cleanup_peer_list + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_cancel_service + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_services_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_services_deinit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.nan_send_followup_msg + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .rodata.str1.1 + 0x00000000 0x2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_prepare_filter + 0x00000000 0x7c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_all_wildcard_filter + 0x00000000 0x34 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_construct_sdea + 0x00000000 0x2d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_construct_publish_sdf + 0x00000000 0x1e2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_construct_subscribe_sdf + 0x00000000 0x175 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_construct_followup_sdf + 0x00000000 0xec /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_get_peer_svc_record + 0x00000000 0x2f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_insert_peer_svc_record + 0x00000000 0x63 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_send_discovery_result + 0x00000000 0x54 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_send_replied_event + 0x00000000 0x37 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_send_receive_event + 0x00000000 0x78 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_static_sdfs_present + 0x00000000 0x2b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_send_static_sdfs + 0x00000000 0x5b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_send_solicited_publish + 0x00000000 0xb4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_match_filters + 0x00000000 0x81 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_sd_parse_sdea + 0x00000000 0x5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_sd_parse_dev_caps + 0x00000000 0x5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_sd_parse_availability + 0x00000000 0x56 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_service_type_diff + 0x00000000 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_sd_receive_ctrl + 0x00000000 0x2a4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_rx_sdf + 0x00000000 0xcd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_get_service_idx + 0x00000000 0x5d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_get_service_by_index + 0x00000000 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_get_service_by_id + 0x00000000 0x3a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_sdf_txcb + 0x00000000 0xa6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_update_static_sdfs + 0x00000000 0x122 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_tolower + 0x00000000 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_compute_service_hash + 0x00000000 0x86 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_start_publish_service + 0x00000000 0x1b6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_start_subscribe_service + 0x00000000 0x1ae /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.cleanup_peer_list + 0x00000000 0x38 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_cancel_service + 0x00000000 0x74 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_services_init + 0x00000000 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_services_deinit + 0x00000000 0x68 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .text.nan_send_followup_msg + 0x00000000 0xd6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .rodata_wlog_error.13 + 0x00000000 0x24 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .rodata_wlog_error.12 + 0x00000000 0x25 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .rodata_wlog_error.11 + 0x00000000 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .rodata_wlog_error.10 + 0x00000000 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .rodata_wlog_error.9 + 0x00000000 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .rodata_wlog_error.8 + 0x00000000 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .rodata_wlog_error.7 + 0x00000000 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .rodata_wlog_error.6 + 0x00000000 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .rodata_wlog_error.5 + 0x00000000 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .rodata_wlog_debug.4 + 0x00000000 0x2f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .comment 0x00000000 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .xt.lit 0x00000000 0xf0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .xt.prop 0x00000000 0xeac /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + COMMON 0x00000000 0x4c4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .literal.wifi_nvs_cfg_item_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_cfg_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_sta_restore + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_ap_restore + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_get + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.ieee80211_nvs_set_default_ssid + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_commit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_set + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.ieee80211_adjust_2nd_chan + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_compare_cfg_diff + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_set_default_ssid + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_validate_ap_ssid + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_validate_ap_password + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_validate_sta_password + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_validate_country + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_validate_ap_chan + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_validate_ap_num + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_validate_sta_listen_interval + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_load + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_restore + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_get_sta_listen_interval + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_set_sta_listen_interval + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_reset_current_ap_info + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_deinit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .text.wifi_nvs_sta_restore + 0x00000000 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .text.wifi_nvs_ap_restore + 0x00000000 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .text.ieee80211_nvs_set_default_ssid + 0x00000000 0x56 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .text.wifi_nvs_restore + 0x00000000 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .text.wifi_nvs_set_sta_listen_interval + 0x00000000 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.7 + 0x00000000 0x10 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.6 + 0x00000000 0x11 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .xt.lit 0x00000000 0xc8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .xt.prop 0x00000000 0xaf8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.add_appie + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_vnd_ie_size$part$5 + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.esp_wifi_internal_tx_is_stop + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_reg_encap_amsdu_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_reg_netstack_buf_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_set_hmac_stop + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.wifi_is_started + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .wifiextrairam.6.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_recycle_cache_eb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_empty_txq + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.is_wapi_alloc_tx_buf + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_wapi_alloc_tx_buf + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.get_wifi_internal_state + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_copy_eb_header + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_amsdu_adjust_head + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_amsdu_adjust_last_length + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_amsdu_length_check + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_output_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_send_setup + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_tx_mgt_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .wifiextrairam.19.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_classify + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_rates + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_dsparams + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_xrates + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_probe_resp_app_ies + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_beacon_app_ies + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_assoc_resp_ies + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_assoc_req_ies + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_probe_req_ies + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_wme_param + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_csa + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_extcap + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_vnd_ie_size + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_vnd_ie_set + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_vnd_lora_ie_size + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_vnd_lora_ie_set + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_setup_robust_mgmtframe + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_mgmt_output + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_getcapinfo + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_assoc_req_construct + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_assoc_resp_construct + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_auth_construct + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_get_robustmgtframe + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_deauth_construct + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_disassoc_construct + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .wifi0iram.37.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_search_node + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .wifiextrairam.5.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .wifiextrairam.7.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.esp_wifi_internal_tx_by_ref + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_output + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .wifiextrairam.10.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.esp_wifi_mesh_tx + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_output_pending_eb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_amsdu_send_check + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_amsdu_encap_check + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_encap_amsdu + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_alloc_proberesp + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_alloc_deauth + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_output_raw_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_raw_frame_sanity_check + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.esp_wifi_80211_tx + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_beacon_construct + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .wifiextrairam.60.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_send_nulldata + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .wifi0iram.20.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .wifi0iram.11.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_send_probereq + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_send_mgmt + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_send_proberesp + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_send_deauth + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_beacon_alloc + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_encap_null_data + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_pm_tx_null_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text.esp_wifi_internal_tx_is_stop + 0x00000000 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text.ieee80211_reg_encap_amsdu_cb + 0x00000000 0x11 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text.wifi_is_started + 0x00000000 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text.ieee80211_amsdu_adjust_last_length + 0x00000000 0x34 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text.ieee80211_vnd_ie_size + 0x00000000 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text.esp_wifi_internal_tx_by_ref + 0x00000000 0x1d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text.ieee80211_raw_frame_sanity_check + 0x00000000 0x208 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text.esp_wifi_80211_tx + 0x00000000 0x154 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.54 + 0x00000000 0x44 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.53 + 0x00000000 0x44 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.52 + 0x00000000 0x45 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.51 + 0x00000000 0x42 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.50 + 0x00000000 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.49 + 0x00000000 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.48 + 0x00000000 0x2e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.47 + 0x00000000 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.46 + 0x00000000 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.45 + 0x00000000 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .xt.lit 0x00000000 0x248 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .xt.prop 0x00000000 0x2a0c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_phy_deinit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .literal.ieee80211_phy_type_get + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .literal.ieee80211_phy_mode_show + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .literal.ieee80211_setup_ratetable + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .literal.ieee80211_phy_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .literal.ieee80211_set_user_sup_rate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .text.ieee80211_set_user_sup_rate + 0x00000000 0x27 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .xt.lit 0x00000000 0x30 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .xt.prop 0x00000000 0x300 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .literal.ieee80211_psq_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_gpsq_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_psq_cleanup + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_psq_find_max_bss + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_set_tim + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_psq_take_head + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_psq_take_tail + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_psq_drop_one_pkt + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_psq_send_one_pkt + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_psq_is_buff_pkt + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_pwrsave + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.pwrsave_flushq + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_node_pwrsave + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_pwrsave_node_cleanup + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_pwrsave_txcb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_is_bufferable_mmpdu + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .text.ieee80211_psq_cleanup + 0x00000000 0x5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .text.ieee80211_psq_take_tail + 0x00000000 0x49 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .xt.lit 0x00000000 0x70 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .xt.prop 0x00000000 0x5ac /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_proto_attach + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .literal.ieee80211_gettid + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .literal.ieee80211_set_shortslottime + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .literal.ieee80211_iserp_rateset + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .literal.ieee80211_wme_initparams + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .literal.ieee80211_wme_updateparams + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .literal.ieee80211_mlme_connect_bss + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .text.ieee80211_iserp_rateset + 0x00000000 0x4a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .text.ieee80211_wme_initparams + 0x00000000 0x5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .rodata.rates$10325 + 0x00000000 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .xt.lit 0x00000000 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .xt.prop 0x00000000 0x258 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .literal.get_country_chan_info + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + .literal.ieee80211_get_chan_info + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + .literal.ieee80211_is_40mhz_valid_bw + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + .xt.lit 0x00000000 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + .xt.prop 0x00000000 0x1e0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + .literal.ieee80211_regdomain_max_tx_power + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_get_country + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_update_phy_country + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_update + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_update_in_scan + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_update_in_connect + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_add_countryie + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_max_chan + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_ap_max_chan + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_min_chan + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_ap_min_chan + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_chan_num + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_policy + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_chan_in_range + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_is_active_scan + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .text.ieee80211_regdomain_max_tx_power + 0x00000000 0x3c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .text.ieee80211_regdomain_chan_num + 0x00000000 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .data.s_map 0x00000000 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .xt.lit 0x00000000 0x78 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .xt.prop 0x00000000 0x414 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_rfid_locp_recv_open + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .literal.ieee80211_rfid_locp_recv_close + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .literal.ieee80211_rfid_locp_recv_reset + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .literal.ieee80211_rfid_locp_recv + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .literal.register_ieee80211_rfid_locp_recv_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .literal.unregister_ieee80211_rfid_locp_recv_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .text.ieee80211_rfid_locp_recv_open + 0x00000000 0x29 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .text.ieee80211_rfid_locp_recv_close + 0x00000000 0x5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .text.register_ieee80211_rfid_locp_recv_cb + 0x00000000 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .text.unregister_ieee80211_rfid_locp_recv_cb + 0x00000000 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .xt.lit 0x00000000 0x28 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .xt.prop 0x00000000 0x138 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .literal.scan_enter_oper_channel + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_inter_channel_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_op_start + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.unlikely.sta_update_owe_bssid + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.ieee80211_scan_attach + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.ieee80211_scan_deattach + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_get_apnum + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_pm_channel_op_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_flush_all_tx_buf + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_cancel + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_add_bssid + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_remove_bssid + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_hidden_ssid + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_set_act_duration + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_set_pas_duration + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_set_home_chan_dwell_time + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_add_probe_ssid + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_remove_probe_ssid + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_prefer_chan + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_update_scan_history + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_build_chan_list + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_set_desChan + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_get_type + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.cannel_scan_connect_state + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_check_hidden + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.unlikely.scan_add_ssid_do + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.unlikely.scan_add_ssid + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_reset_cipher_and_akm + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_profile_check + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.free_bss_info + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.clear_bss_queue + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_done + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_next_channel + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_enter_oper_channel_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_inter_channel_timeout_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_op_end + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_start + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_connect_state + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.check_bss_queue + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_set_scan_id + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_get_scan_id + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_parse_ht2040_coex + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_fill_wps_scan_ie + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_get_owe_channel_info + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_validate_owe_scenarios + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_parse_beacon + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .text.scan_pm_channel_op_cb + 0x00000000 0x36 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .text.cannel_scan_connect_state + 0x00000000 0x21 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .text.scan_connect_state + 0x00000000 0x53 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .xt.lit 0x00000000 0x160 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .xt.prop 0x00000000 0x1cd4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.ieee80211_is_action_category_robust + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_eapol_txdone_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_assoc_comeback + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_try_sa_query + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_sa_query_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.wifi_sta_reg_eapol_txdone_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .wifiextrairam.39.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.wifi_sta_reg_rxcb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_michael_mic_failure + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.ieee80211_wme_standard_ac_to_esp_ac + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.ieee80211_parse_wmeparams + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_rx_csa + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.reset_cs_thres + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.ieee80211_parse_obss_scan_param + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_recv_ctl + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.wifi_station_start + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.wifi_station_stop + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_bip_check + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_is_wpa3_enabled + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_is_11r_enabled + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_is_wifi_ent_enabled + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_get_owe_data + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_update_power_off_reset_flag + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.ieee80211_sta_new_state + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_auth_ft + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_auth_open + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_auth_shared + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_auth_sae + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_retry_assoc + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_recv_assoc + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_sa_query_process_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_try_sa_query_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_recv_mgmt + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .wifirxiram.45.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .wifirxiram.51.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .xt.lit 0x00000000 0x110 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .xt.prop 0x00000000 0x1fb0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.wifi_sta_connect_internal_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_get_prof_pmk_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_prof_pmk_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_update_ap_info_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_ap_info_prof_pmk_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_get_prof_ap_ssid_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_prof_ssid_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_get_prof_authmode_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_get_max_sta_conn + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_get_prof_pairwise_cipher_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_prof_authmode_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_pmf_config_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_config_sae_pwe_h2e_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_rsnxe + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_disable_wpa2_authmode_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_config_sae_pk_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_disable_sae_pk_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_enable_sae_pk_only_mode_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_disable_owe_trans_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_notify_node_sae_auth_done + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_is_sta_sae_reauth_node + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_sae_identifier_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_is_ap_notify_completed_rsne_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_get_prof_password_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.wifi_sta_get_prof_password + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.wifi_ap_pmf_enabled + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_prof_password_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_reset_param_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_set_reset_param_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_prof_is_wpa_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_prof_is_wpa2_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_prof_is_wapi_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_prof_is_rsn_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_pairwise_cipher_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_group_cipher_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_get_key + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_set_key + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_get_sta_gtk_index + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_set_sta_gtk_index + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_set_gtk + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_get_ptk + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_get_spp + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_wpa_ptk_init_done_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_enable_sta_privacy_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_is_running_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_auth_done_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_unregister_wpa2_cb_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_register_wpa2_cb_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_unregister_wapi_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_register_wapi_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_unregister_wpa_cb_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_register_wpa_cb_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_assoc_bssid_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_sta_is_connected + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_hostap_private_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_deauthenticate_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_spp_attrubute_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_user_init_flag_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.wifi_set_rx_policy + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_espnow_get_init_flag + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_espnow_set_init_flag + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_mt_key_is_mask + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_mt_key_is_mask_zero + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_mt_key_set_mask + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_mt_key_clear_mask + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_get_mac_addr_from_frame + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_del_key_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_key_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_key_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_register_tx_cb_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_register_eapol_txdonecb_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_macaddr_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_deauth_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.wifi_init_key + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_ap_key_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ppInstallKey + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_sta_key_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_sta_key_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_appie_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_appie_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_unset_appie_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_wpa2_ent_enable_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_wpa2_ent_disable_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_wpa2_ent_state_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_wps_type_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_wps_type_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_wps_status_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_disarm_sta_connection_timer_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_wps_status_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_wps_cb_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_internal_supplicant_header_md5_check + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_wps_start_flag_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_pmf_enabled + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_mgmt_group_cipher + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_igtk_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211w_get_active_igtk_key_id + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211w_get_igtk_from_keyidx + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_skip_supp_pmkcaching + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_rssi_threshold + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_is_rm_enabled_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_is_btm_enabled_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_is_mbo_enabled_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_is_ft_enabled_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_register_mgmt_frame_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_send_mgmt_frm_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_action_tx_req + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_remain_on_channel + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_connect_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_sta_get_prof_pmk_internal + 0x00000000 0x11 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_sta_disable_sae_pk_internal + 0x00000000 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_get_sta_gtk_index + 0x00000000 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_enable_sta_privacy_internal + 0x00000000 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_sta_is_running_internal + 0x00000000 0x22 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_unregister_wpa2_cb_internal + 0x00000000 0x2a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_register_wpa2_cb_internal + 0x00000000 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_unregister_wapi_cb + 0x00000000 0x2a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_register_wapi_cb + 0x00000000 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_get_assoc_bssid_internal + 0x00000000 0x5e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_espnow_get_init_flag + 0x00000000 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_espnow_set_init_flag + 0x00000000 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_mt_key_is_mask + 0x00000000 0x28 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_mt_key_is_mask_zero + 0x00000000 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_mt_key_set_mask + 0x00000000 0x27 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_mt_key_clear_mask + 0x00000000 0x27 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_get_mac_addr_from_frame + 0x00000000 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_del_key_internal + 0x00000000 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_set_key_internal + 0x00000000 0x6f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_get_key_internal + 0x00000000 0x26 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_register_tx_cb_internal + 0x00000000 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_get_appie_internal + 0x00000000 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_sta_wpa2_ent_enable_internal + 0x00000000 0x6a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_sta_wpa2_ent_disable_internal + 0x00000000 0x6a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_set_wpa2_ent_state_internal + 0x00000000 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_set_wps_type_internal + 0x00000000 0x54 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_get_wps_type_internal + 0x00000000 0x10 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_disarm_sta_connection_timer_internal + 0x00000000 0x5a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_set_wps_status_internal + 0x00000000 0x54 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_set_wps_cb_internal + 0x00000000 0x62 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_internal_supplicant_header_md5_check + 0x00000000 0x4c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_set_wps_start_flag_internal + 0x00000000 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_set_rssi_threshold + 0x00000000 0x62 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_is_rm_enabled_internal + 0x00000000 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_is_btm_enabled_internal + 0x00000000 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_is_mbo_enabled_internal + 0x00000000 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_is_ft_enabled_internal + 0x00000000 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_action_tx_req + 0x00000000 0x94 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_remain_on_channel + 0x00000000 0x74 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .data.g_wifi_supplicant_funcs_md5 + 0x00000000 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .xt.lit 0x00000000 0x358 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .xt.prop 0x00000000 0x1ddc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_nan_ndp_resp_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_nan_ndc_start + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_nan_faw_end + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_nan_faw_start + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_nan_send_action + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_nan_send_sync_bcn + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_nan_send_disc_bcn + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_nan_dw_end + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_nan_dw_start + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_nan_scan_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_nan_warmup_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_ampdu_age_handle + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_addba + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_ap_try_sa_query + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_ap_sa_query_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_sta_retry_assoc + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_sta_sa_query_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_sta_try_sa_query + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_assoc + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_auth + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_chm_dwell + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_handshake + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_beacon + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_probe_send + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_csa + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_scan_enter_op_chan + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_scan_inter_chan + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_timer_connect + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_hostap_handle + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_send_beacon + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_register_hostap_timer + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_timer_do_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_timer_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .xt.lit 0x00000000 0x108 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .xt.prop 0x00000000 0x9e4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.chm_end_op_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_phy_change_channel$constprop$2 + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_mhz2num + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_deinit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_release_lock + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_end_op + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_end_op_timeout_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_cancel_op + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_acquire_lock + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_get_current_channel + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .wifi0iram.12.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_get_home_channel + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_set_home_channel + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_get_chan_info + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_set_current_channel + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_change_channel + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_start_op + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_return_home_channel + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .xt.lit 0x00000000 0x98 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .xt.prop 0x00000000 0x5e8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.cnx_sta_connect_led_timer_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_cal_rc_util + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_get_next_rc + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_traverse_rc_lis_done + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_connect_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_handshake_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_csa_fn + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.mgd_probe_send_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_beacon_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_connect_op + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_probe_rc + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_connect_to_bss + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.ieee80211_cnx_attach + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal._cnx_start_connect_without_scan + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_can_do_obss_scan + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_obss_scan + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_obss_scan_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_sta_scan_cmd + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_auth_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_assoc_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.wl_is_ap_no_lr + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.wl_clear_ap_no_lr + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_csa_fn_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_validate_owe_bss + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_bss_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_get_authtype_strength + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_check_bssid_in_blacklist + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_remove_from_blacklist + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_add_to_blacklist + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_clear_blacklist + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_choose_rc + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_rc_search + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_do_handoff_internal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_add_rc + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_remove_all_rc + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_do_handoff + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_connect_next_ap + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_start_handoff_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_remove_rc + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_sta_connect_cmd + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_connect_timeout_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_auth_timeout_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_assoc_timeout_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_handshake_timeout_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_bss_alloc + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_remove_rc_except + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_rc_update_rssi + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_rc_update_state_metric + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_probe_rc_tx_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_rc_update_age + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_update_bss + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.esp_mesh_get_tsf_time + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.send_ap_probe + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.mgd_probe_send_timeout_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_node_alloc + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_node_remove + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .wifi0iram.93.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .wifi0iram.95.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_is_any_node_connecting + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.wifi_softap_staconnected_event_policy + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.wifi_softap_toomany_deny + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_sta_pm + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_update_bss_more + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_beacon_timeout_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.ic_set_sta + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_sta_leave + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_sta_associated + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_node_leave + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_node_join + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_start_obss_scan + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_obss_scan_done_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_stop_obss_scan + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_auth_done + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .wifislprxiram.118.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .wifislprxiram.119.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .text.esp_mesh_get_tsf_time + 0x00000000 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .text.cnx_is_any_node_connecting + 0x00000000 0x42 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .text.wifi_softap_staconnected_event_policy + 0x00000000 0x42 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .text.wifi_softap_toomany_deny + 0x00000000 0x36 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .text.cnx_stop_obss_scan + 0x00000000 0x36 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .wifislprxiram.119 + 0x00000000 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .xt.lit 0x00000000 0x250 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .xt.prop 0x00000000 0x26a0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.offchan_in_progress + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .literal.offchan_recv_action + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .literal.offchan_send_action_tx_status + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .literal.roc_op_start + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .literal.roc_op_end + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .literal.offchan_txop_end + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .literal.offchan_txop_start + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .text.roc_op_start + 0x00000000 0x43 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .text.roc_op_end + 0x00000000 0x64 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .text.offchan_txop_end + 0x00000000 0x82 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .text.offchan_txop_start + 0x00000000 0x292 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .rodata_wlog_error.3 + 0x00000000 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .rodata_wlog_error.2 + 0x00000000 0x31 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .data.s_global_offchan_seq + 0x00000000 0x2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .xt.lit 0x00000000 0x38 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .xt.prop 0x00000000 0x27c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .literal.send_inval + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .literal.recv_inval + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .literal.ieee80211_send_action_register + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .literal.ieee80211_send_action_unregister + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .literal.ieee80211_send_action + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .literal.ieee80211_recv_action_register + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .literal.ieee80211_recv_action_unregister + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .literal.ieee80211_recv_action + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .text.ieee80211_send_action_unregister + 0x00000000 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .text.ieee80211_recv_action_unregister + 0x00000000 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .xt.lit 0x00000000 0x30 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .xt.prop 0x00000000 0x4ec /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .literal.get_iav_key + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .literal.ieee80211_recv_action_vendor_spec + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .literal.register_ieee80211_action_vendor_get_key_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .literal.unregister_ieee80211_action_vendor_get_key_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .literal.ieee80211_add_action_vendor_spec_esp + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .literal.ieee80211_alloc_action_vendor_spec + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .literal.ieee80211_send_action_vendor_spec + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .literal.ieee80211_action_vendor_spec_attach + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .literal.register_ieee80211_action_vendor_spec_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .literal.unregister_ieee80211_action_vendor_spec_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .text.register_ieee80211_action_vendor_get_key_cb + 0x00000000 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .text.unregister_ieee80211_action_vendor_get_key_cb + 0x00000000 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .rodata.str1.1 + 0x00000000 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .text.ieee80211_add_action_vendor_spec_esp + 0x00000000 0x6b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .text.ieee80211_alloc_action_vendor_spec + 0x00000000 0xfd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .text.ieee80211_send_action_vendor_spec + 0x00000000 0x3d8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .text.register_ieee80211_action_vendor_spec_cb + 0x00000000 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .text.unregister_ieee80211_action_vendor_spec_cb + 0x00000000 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .data.s_global_vendor_seq$10922 + 0x00000000 0x2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .bss.avs_tx_content + 0x00000000 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .xt.lit 0x00000000 0x50 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .xt.prop 0x00000000 0x42c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .literal.ccmp_encap + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .literal.ccmp_decap + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .literal.ieee80211_decrypt_espnow_pkt + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .literal.ieee80211_ccmp_decrypt + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .literal.ieee80211_ccmp_encrypt + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .xt.lit 0x00000000 0x28 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .xt.prop 0x00000000 0x2ac /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .literal.sms4_decap + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + .literal.sms4_encap + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + .xt.lit 0x00000000 0x10 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + .xt.prop 0x00000000 0xf0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + .literal.tkip_decap + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + .literal.tkip_encap + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + .xt.lit 0x00000000 0x10 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + .xt.prop 0x00000000 0xcc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + .literal.wep_encap + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + .literal.wep_decap + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + .xt.lit 0x00000000 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + .xt.prop 0x00000000 0x78 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + .literal.ieee80211_getmgtframe + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + .literal.ieee80211_getbcnframe + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + .xt.lit 0x00000000 0x10 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + .xt.prop 0x00000000 0x9c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + .literal.esf_buf_alloc_dynamic_default_handler + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .wifiextrairam.5.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .literal.esf_buf_alloc_default_handler + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .wifislprxiram.7.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .literal.esf_buf_recycle_default_handler + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .wifirxiram.9.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .literal.esf_buf_setup_for_mesh + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .literal.esf_buf_setup_static + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .literal.esf_buf_free_static + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .literal.esf_buf_setdown + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .literal.esf_buf_setup + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .literal.esf_buf_statis_dump + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata.str1.1 + 0x00000000 0x34 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .text.esf_buf_statis_dump + 0x00000000 0xc6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata_wlog_info.20 + 0x00000000 0x26 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata_wlog_info.19 + 0x00000000 0x26 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata_wlog_info.18 + 0x00000000 0x9 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .xt.lit 0x00000000 0x60 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .xt.prop 0x00000000 0x654 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .literal.bb_intr_handl + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_addr + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .wifislprxiram.3.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_is_pure_sta + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_ptk_alg + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_disable_crypto + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_key + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_key + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_obtain_key + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_rssi + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_tx_pkt + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_ebuf_alloc + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_ebuf_recycle_tx + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_ebuf_recycle_rx + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.esp_wifi_internal_free_rx_buffer + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_tx_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_rx_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_timer_post_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_michael_mic_failure_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_pp_tx_done_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_promis_filter + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_promis_filter + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_promis_ctrl_filter + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_promis_ctrl_filter + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_promis_rx_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_csi_rx_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_config_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_is_mgmt_hwdecr_enabled + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_pm_tx_null_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_net80211_tx_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_timer_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_ftm_callbacks + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_nan_callbacks + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_pp_post + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_enable_sniffer + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_disable_sniffer + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_vif + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_next_tbtt + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_del_rx_ba + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_reset_rx_ba + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_add_rx_ba + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_reset_tbtt + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_del_key_all + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_del_key + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_ac_param + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_ampdu_op + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.esp_mesh_set_6m_rate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_trc + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_bb_check_noise_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_deinit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_interrupt_handler + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_clear_interrupt_handler + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_enable_rx + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_disable_rx + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_beacon_int + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_mac + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_bssid + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_current_channel + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_random + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_trc + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_tx_is_idle + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_pp_hdl + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_rx_policy_ubssid_check + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_rx_policy + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_sta_auth_flag + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_interface + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_trc_set_per_pkt_rate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_trc_update_ifx_phy_mode + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_stop_hw_txq + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_stop_sw_txq + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_txq_empty + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_fix_rate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_fix_rate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_create_wifi_task + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_delete_wifi_task + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_csi + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .wifislprxiram.13.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .wifislprxiram.14.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_csi_set_config + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_update_light_sleep_default_params + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_sleep_min_active_time + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_keep_alive_time + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_sleep_wait_broadcast_data_time + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_beacon_monitor_configure + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_update_listen_interval + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_rx_disable_bssid_check + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_rx_enable_bssid_check + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_bar_rate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_trc_update_def_rate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_espnow_rate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_80211_tx_rate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_espnow_rate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_80211_tx_rate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_default_sched + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_G6M_sched + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_connectionless_module_set_wake_interval + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.bb_intr_handl + 0x00000000 0x11 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_is_pure_sta + 0x00000000 0x2d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_get_rssi + 0x00000000 0x2b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_register_pp_tx_done_cb + 0x00000000 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_set_promis_filter + 0x00000000 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_get_promis_filter + 0x00000000 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_set_promis_ctrl_filter + 0x00000000 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_get_promis_ctrl_filter + 0x00000000 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_register_promis_rx_cb + 0x00000000 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_register_csi_rx_cb + 0x00000000 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_register_ftm_callbacks + 0x00000000 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_register_nan_callbacks + 0x00000000 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_pp_post + 0x00000000 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.esp_mesh_set_6m_rate + 0x00000000 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_bb_check_noise_init + 0x00000000 0x46 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_tx_is_idle + 0x00000000 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_set_fix_rate + 0x00000000 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_get_fix_rate + 0x00000000 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_set_csi + 0x00000000 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_csi_set_config + 0x00000000 0x84 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_update_light_sleep_default_params + 0x00000000 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_beacon_monitor_configure + 0x00000000 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_update_listen_interval + 0x00000000 0x28 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_rx_disable_bssid_check + 0x00000000 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_rx_enable_bssid_check + 0x00000000 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_set_bar_rate + 0x00000000 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_trc_update_def_rate + 0x00000000 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_get_espnow_rate + 0x00000000 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_get_80211_tx_rate + 0x00000000 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_set_espnow_rate + 0x00000000 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_set_80211_tx_rate + 0x00000000 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_get_default_sched + 0x00000000 0x11 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_get_G6M_sched + 0x00000000 0x11 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_connectionless_module_set_wake_interval + 0x00000000 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .rodata_wlog_info.11 + 0x00000000 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .xt.lit 0x00000000 0x300 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .xt.prop 0x00000000 0x150c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.lmacIsIdle + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacGetTxFrame + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacReachShortLimit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacReachLongLimit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacIsLongFrame + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.3.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.4.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifiextrairam.5.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacSetAcParam + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacInitAc + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacInit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessTxopSuccess + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.17.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacEndRetryAMPDUFail + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .iram1.28.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .iram1.32.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .iram1.33.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .iram1.34.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.38.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.dbg_cnt_lmac_drop + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.esp_wifi_internal_set_retry_counter + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.esp_wifi_internal_set_msdu_lifetime + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.esp_wifi_internal_get_mib + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.esp_wifi_internal_set_rts + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.esp_wifi_internal_get_rts + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.54.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.55.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmac_record_txtime + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmac_update_tx_statistic + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.59.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacDiscardMSDU + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.18.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacRetryTxFrame + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifiextrairam.20.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.19.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.22.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.13.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifiextrairam.15.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessShortRetryFail + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessCtsTimeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessLongRetryFail + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessCollision + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessCollisions_task + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessAckTimeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessTxRtsError + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessTxseckiderr + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessTxError + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifiextrairam.35.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacRxDone + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacDisableTransmit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessTxTimeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacStopTransmit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.dbg_lmac_get_acs + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmac_stop_hw_txq + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.63.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.esp_wifi_set_11b_tx_plcp + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.lmacReachShortLimit + 0x00000000 0x1d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.lmacReachLongLimit + 0x00000000 0x1d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.3 0x00000000 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.4 0x00000000 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.lmacProcessTxopSuccess + 0x00000000 0xa4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.dbg_cnt_lmac_drop + 0x00000000 0x8d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.esp_wifi_internal_get_mib + 0x00000000 0x22 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.esp_wifi_internal_set_rts + 0x00000000 0x5c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.esp_wifi_internal_get_rts + 0x00000000 0x3d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.lmac_record_txtime + 0x00000000 0x5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.lmac_update_tx_statistic + 0x00000000 0x5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.13 0x00000000 0x68 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.dbg_lmac_get_acs + 0x00000000 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.esp_wifi_set_11b_tx_plcp + 0x00000000 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$10298 + 0x00000000 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$10281 + 0x00000000 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_info.53 + 0x00000000 0x3a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.14 + 0x00000000 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.12 + 0x00000000 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.10 + 0x00000000 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.9 + 0x00000000 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .data.txopstart_index + 0x00000000 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .xt.lit 0x00000000 0x1a0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .xt.prop 0x00000000 0x18c0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.hal_pm_unblock_txq + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_incr_active_cnt + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_incr_coex_active_cnt + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_disable_active_timer + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_beacon_monitor_tbtt_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_beacon_monitor_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_connectionless_wake_window_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_connectionless_wake_interval_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_disconnected_sleep_delay_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_coex_slice_wifi_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_sleep_delay_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_active_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_dream_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_tbtt_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.wifi_apb80m_request + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.wifi_apb80m_release + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.3.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_is_dream + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_is_sleeping + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_is_open + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.4.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_allow_tx + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislpiram.5.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.6.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.8.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_mac_sleep_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_mac_sleep_deinit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_noise_check_disable + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_noise_check_enable + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifirxiram.18.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislpiram.19.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislpiram.20.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.21.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_enable_sleep_delay_timer + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_disable_disconnected_sleep_delay_timer + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_enable_disconnected_sleep_delay_timer + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_noise_check + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_pend_noise_check + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_noise_check_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_register_pm_tx_null_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_send_nullfunc + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_mac_wakeup + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_mac_sleep + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.23.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.24.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.25.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.26.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.27.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.28.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.29.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.30.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_disconnected_wake + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.31.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_disconnected_sleep + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.is_off_channel + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_wake_up + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_send_probe_start + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_off_channel + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_wake_done + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_coex_separate_connectionless_window + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislpiram.22.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.32.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_go_to_sleep + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_set_next_tbtt + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_mesh_set_next_tbtt + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislpiram.34.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislpiram.36.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_beacon_timestamp_statistic + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_beacon_misc_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_is_in_wifi_slice_threshold + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.38.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_coex_schm_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_coex_schm_process_restart + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_coex_slice_timeout_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_dream_timeout_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_sleep_delay_timeout_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.40.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_disconnected_sleep_delay_timeout_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislpiram.42.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislpiram.43.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifirxiram.47.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifirxiram.48.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_tx_data_done_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_tx_null_data_done_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_go_to_wake + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_send_probe_stop + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_on_channel + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_update_params + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.39.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.45.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_coex_tbtt_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.44.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.41.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_active_timeout_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifiextrairam.46.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_send_sleep_null_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_send_wake_null_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_on_coex_schm_process_restart + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_on_coex_schm_status_config + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_on_coex_start + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_on_probe_resp_rx + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.50.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifirxiram.51.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifiextrairam.52.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_on_data_tx_done + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_disconnected_start + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_disconnected_stop + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_start + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_stop + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_attach + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_deattach + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_set_sleep_type + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_get_sleep_type + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_beacon_monitor_configure + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_update_light_sleep_default_params + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_set_sleep_min_active_time + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_set_keep_alive_time + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_set_sleep_wait_broadcast_data_time + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_scan_lock + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_scan_unlock + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_try_scan_unlock + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_force_scan_unlock + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_get_idle_wait_time + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_enable_sta_disconnected_power_management + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_register_connectionless_wake_window + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_unregister_connectionless_wake_window + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_connectionless_module_set_wake_interval + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.wifi_apb80m_request + 0x00000000 0x5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.wifi_apb80m_release + 0x00000000 0x5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_mac_sleep_init + 0x00000000 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_mac_sleep_deinit + 0x00000000 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_pend_noise_check + 0x00000000 0x5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifislprxiram.25 + 0x00000000 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.is_off_channel + 0x00000000 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_beacon_misc_process + 0x00000000 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_beacon_monitor_configure + 0x00000000 0x3e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_update_light_sleep_default_params + 0x00000000 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_scan_lock + 0x00000000 0x5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_scan_unlock + 0x00000000 0x5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_try_scan_unlock + 0x00000000 0x5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_get_idle_wait_time + 0x00000000 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_register_connectionless_wake_window + 0x00000000 0x6a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_unregister_connectionless_wake_window + 0x00000000 0x57 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_connectionless_module_set_wake_interval + 0x00000000 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .xt.lit 0x00000000 0x3a0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .xt.prop 0x00000000 0x315c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_coex_reconnect_policy + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_coex.o) + .literal.pm_coex_set_reconnect_policy + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_coex.o) + .wifislprxiram.4.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_coex.o) + .iram1.2.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_coex.o) + .wifislprxiram.5.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_coex.o) + .literal.pm_coex_pwr_configure + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_coex.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_coex.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_coex.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_coex.o) + .text.pm_coex_pwr_configure + 0x00000000 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_coex.o) + .xt.lit 0x00000000 0x30 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_coex.o) + .xt.prop 0x00000000 0x1e0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_coex.o) + .literal.pp_delete_task_manually + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifislpiram.6.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.getle32 + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.putle32 + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.rotl 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.rotr 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.xswap + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_set_cut_rx + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_set_cut_evt + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_can_cut_sevt + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_can_cut_evt + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.RxNodeNum + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.TxNodeNum + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.SigSpaceMalloc + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.SigSpaceFree + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.DefFreqCalTimerCB + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifirxiram.7.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_register_net80211_tx_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_register_config_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_register_timer_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_register_michael_mic_failure_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.8.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_default_event_handler + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.12.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppAddTimCount + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppRegisterPromisRxCallback + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppRegisterTxDoneUserActionCallback + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppRegisterRxCallback + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppRegisterTxCallback + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppUnregisterTxCallback + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_register_tx_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_unregister_tx_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifiextrairam.17.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppRecycleTxBuf + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppCheckTxQIdle + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppCheckIsConnTraffic + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppCheckTxConnTrafficIdle + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifiextrairam.19.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.20.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppSetInterface + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.23.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifislprxiram.25.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_gettid + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppAssembleMicHdr + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppCalTkipMic + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppClearRxFragment + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifirxiram.27.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppGetTxQFirstAvail_Locked + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppFetchTxQFirstAvail + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppDequeueTxQ + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppRollBackTxQ + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppSetBarRate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppFillAMPDUBar + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifiextrairam.32.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.33.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.34.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.35.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppCheckTxAMPDUlength + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifiextrairam.36.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.37.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppReSendBar + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppRecordBarRRC + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifiextrairam.43.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifiextrairam.47.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifiextrairam.49.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifiextrairam.21.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifislprxiram.50.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifislprxiram.51.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifislprxiram.29.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.emul_timeout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_create_task + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_deattach + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifiextrairam.59.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppInitTxq + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppEnableQueue + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.62.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppTxqEmpty + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .iram1.66.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_delete_task + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifiextrairam.63.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifiextrairam.64.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppProcessWaitQ + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppDisableQueue + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppCheckTxIdle + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifiextrairam.61.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.60.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.65.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppDiscardMPDU + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.68.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.70.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.13.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppPrepareBarFrame + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_attach + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifiextrairam.38.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifiextrairam.40.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.41.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.24.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.44.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.10.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifiextrairam.71.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppClearTxq + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_stop_sw_txq + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifiextrairam.72.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifiextrairam.73.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppGetTaskHdl + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppMessageInQ + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.74.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.rotl 0x00000000 0xb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.rotr 0x00000000 0xb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.pp_set_cut_rx + 0x00000000 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.pp_set_cut_evt + 0x00000000 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.pp_can_cut_sevt + 0x00000000 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.pp_can_cut_evt + 0x00000000 0x21 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.RxNodeNum + 0x00000000 0x27 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.TxNodeNum + 0x00000000 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.SigSpaceMalloc + 0x00000000 0x52 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.SigSpaceFree + 0x00000000 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.DefFreqCalTimerCB + 0x00000000 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.ppAddTimCount + 0x00000000 0x198 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.ppRegisterPromisRxCallback + 0x00000000 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.ppRegisterTxDoneUserActionCallback + 0x00000000 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.ppRecycleTxBuf + 0x00000000 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.ppGetTxQFirstAvail_Locked + 0x00000000 0x46 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.ppFetchTxQFirstAvail + 0x00000000 0x5b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.ppRollBackTxQ + 0x00000000 0x36 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.ppSetBarRate + 0x00000000 0x2d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifiextrairam.32 + 0x00000000 0x24 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifiextrairam.36 + 0x00000000 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.emul_timeout + 0x00000000 0x5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.ppProcessWaitQ + 0x00000000 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.ppMessageInQ + 0x00000000 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .data.CanDoFreqCal + 0x00000000 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.LowestFreqOffsetInOneChk + 0x00000000 0x2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.HighestFreqOffsetInOneChk + 0x00000000 0x2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .data.NoiseTimerInterval + 0x00000000 0x2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.pend_flag_periodic_cal + 0x00000000 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.CurSigIdxToBeUse + 0x00000000 0x2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.CurFreeSigIdx + 0x00000000 0x2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.pp_allow_cut_sevt + 0x00000000 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.pp_need_cut_rx + 0x00000000 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .data.libpp_reversion_git + 0x00000000 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .xt.lit 0x00000000 0x2f0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .xt.prop 0x00000000 0x2ef8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + COMMON 0x00000000 0x1a4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .iram1.4.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .iram1.5.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_lmac_rxtx_statis_dump + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_lmac_hw_statis_dump + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_lmac_diag_statis_dump + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_lmac_ps_statis_dump + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_lmac_ps_statis_reset + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_lmac_statis_dump + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_his_lmac_eb_show + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_his_lmac_event_show + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_his_lmac_int_show + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_his_lmac_rx_show + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_his_lmac_tx_show + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_ebuf_loc_show + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_perf_path_show + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_perf_path_set + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_perf_throughput_cal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_lmac_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .iram1.5 0x00000000 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata.str1.1 + 0x00000000 0x1c0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_lmac_rxtx_statis_dump + 0x00000000 0x21e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_lmac_hw_statis_dump + 0x00000000 0x2ff /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_lmac_diag_statis_dump + 0x00000000 0x1be /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_lmac_ps_statis_dump + 0x00000000 0x192 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_lmac_statis_dump + 0x00000000 0x46 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_his_lmac_eb_show + 0x00000000 0x5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_his_lmac_event_show + 0x00000000 0x5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_his_lmac_int_show + 0x00000000 0x5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_his_lmac_rx_show + 0x00000000 0x5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_his_lmac_tx_show + 0x00000000 0x5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_ebuf_loc_show + 0x00000000 0x5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_perf_path_show + 0x00000000 0x5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_perf_path_set + 0x00000000 0x5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_perf_throughput_cal + 0x00000000 0xa1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.36 + 0x00000000 0x3 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .bss.s_t_old 0x00000000 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .bss.s_total 0x00000000 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.35 + 0x00000000 0x55 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.34 + 0x00000000 0x51 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.33 + 0x00000000 0xd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.32 + 0x00000000 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.31 + 0x00000000 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.30 + 0x00000000 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.29 + 0x00000000 0x24 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.28 + 0x00000000 0x24 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.27 + 0x00000000 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.26 + 0x00000000 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.25 + 0x00000000 0x2e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.24 + 0x00000000 0x2e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.23 + 0x00000000 0x29 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.22 + 0x00000000 0x29 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.21 + 0x00000000 0x29 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.20 + 0x00000000 0x29 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.19 + 0x00000000 0xb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.18 + 0x00000000 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.17 + 0x00000000 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.16 + 0x00000000 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.15 + 0x00000000 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.14 + 0x00000000 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.13 + 0x00000000 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.12 + 0x00000000 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.11 + 0x00000000 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.10 + 0x00000000 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.9 + 0x00000000 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.8 + 0x00000000 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.7 + 0x00000000 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata_wlog_info.6 + 0x00000000 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .xt.lit 0x00000000 0x48 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .xt.prop 0x00000000 0x3fc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.pp_timer_beacon_monitor_tbtt + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.pp_timer_beacon_monitor + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.pp_timer_connectionless_wake_window + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.pp_timer_connectionless_wake_interval + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.pp_timer_disconnected_sleep_delay + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.pp_timer_sleep_delay + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.pp_timer_coex_slice + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.pp_timer_active + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.pp_timer_dream + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .wifislpiram.3.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.pp_timer_noise_check + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .wifislpiram.4.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.pp_timer_register_post_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.pp_timer_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .xt.lit 0x00000000 0x70 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .xt.prop 0x00000000 0x360 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.RC_GetDuration + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .literal.RC_SetBasicRate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .literal.RC_GetAckRate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .literal.RC_GetRtsRate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .literal.RC_GetAckTime + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .literal.RC_GetCtsTime + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .literal.RC_GetBlockAckTime + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .text.RC_GetAckRate + 0x00000000 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .text.RC_GetRtsRate + 0x00000000 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .xt.lit 0x00000000 0x30 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .xt.prop 0x00000000 0x198 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .literal.rc11NRate2SchedIdx + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc11GRate2SchedIdx + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc11BRate2SchedIdx + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcLoRaRate2SchedIdx + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcBuildIndex + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_calc_duration + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rx11NRate2AMPDULimit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trcAmpduSetState + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcSetTxAmpduLimit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcUpdateAMPDUParam + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcGet11NHighestRateIdx + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcGet11GHighestRateIdx + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcGet11BHighestRateIdx + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcGetDefaultHigestRateIdx + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcGetHighestRateIdx + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcClearCurStat + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcClearCurSched + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcClearCurAMPDUSched + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcUpdatePhyMode + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcLowerSched + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcUpSched + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcUpdateAckSnr + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcTxUpdatePer + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .wifi0iram.8.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .wifirxiram.9.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_onAmpduOp + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_set_per_pkt_rate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcSetBarRate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_get_default_sched + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_get_G6M_sched + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcGetAmpduSched + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .wifiextrairam.13.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rssi_margin + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.TRC_PER_IS_GOOD + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.TRC_AMPDU_PER_DOWN_THRESHOLD + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcAmpduLowerRate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.TRC_AMPDU_PER_UP_THRESHOLD + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .wifi0iram.10.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcUpdateRate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .wifi0iram.11.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcReachRetryLimit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcAttach + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_NeedRTS + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_onDisconnect + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_onScanStart + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_onScanDone + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_isAmpduOn + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .wifiextrairam.19.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_SetTxAmpduState + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .wifi0iram.20.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .wifi0iram.21.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_get_mask + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_disable_trc + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_disable_trc_by_interface + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_get_sta_trc + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .wifirxiram.25.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_get_trc_by_index + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_get_trc_default + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_only_sta_trc + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_update_def_rate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_update_ifx_phy_mode + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_deinit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_set_per_conn_fix_rate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_enable_trc + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_get_fix_rate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_set_fix_rate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_get_espnow_rate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_set_espnow_rate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_get_80211_tx_rate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_set_80211_tx_rate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rcClearCurStat + 0x00000000 0x10 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rcSetBarRate + 0x00000000 0x28 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rc_get_default_sched + 0x00000000 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rc_get_G6M_sched + 0x00000000 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.trc_NeedRTS + 0x00000000 0x62 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata.trc_NeedRTS + 0x00000000 0x68 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.trc_onDisconnect + 0x00000000 0x5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.trc_onScanStart + 0x00000000 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.trc_onScanDone + 0x00000000 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.trc_isAmpduOn + 0x00000000 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.trc_SetTxAmpduState + 0x00000000 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rc_get_mask + 0x00000000 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rc_get_sta_trc + 0x00000000 0x38 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rc_get_trc_default + 0x00000000 0x2e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rc_only_sta_trc + 0x00000000 0x30 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.trc_update_def_rate + 0x00000000 0xbf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rc_get_fix_rate + 0x00000000 0x35 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rc_set_fix_rate + 0x00000000 0x98 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.trc_get_espnow_rate + 0x00000000 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.trc_set_espnow_rate + 0x00000000 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.trc_get_80211_tx_rate + 0x00000000 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.trc_set_80211_tx_rate + 0x00000000 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_warning.27 + 0x00000000 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .data.BAROFDMSched + 0x00000000 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .bss.g_80211_tx_rate + 0x00000000 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .bss.g_espnow_rate + 0x00000000 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .xt.lit 0x00000000 0x1b8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .xt.prop 0x00000000 0x2028 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .iram1.49.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifiorslpiram.27.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_SetCurChannel + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_SetAuthed + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_Set_Beacon_Int + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_Reset_TBTT + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_reset_bcnSendTick + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_Mesh_Enable_Tsf + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_Mesh_Set_TBTT + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_Get_Next_TBTT + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifi0iram.5.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifi0iram.6.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifi0iram.7.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifi0iram.8.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifi0iram.9.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifi0iram.10.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_mac_sleep_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_mac_sleep_deinit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifi0iram.13.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifi0iram.14.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifi0iram.15.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifislpiram.16.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_csi_hw_bug_check + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_csi_rx_process + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_set_promis_misc_pkt + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .iram1.19.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_pop_promis_misc_buf + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_process_misc_pkt + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_set_promis_misc_buf + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_set_promis_ctrl_pkt + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_set_promis + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_set_promis_filter + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_get_promis_filter + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_set_promis_ctrl_filter + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_get_promis_ctrl_filter + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_SnifferRxAmpdu + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_SnifferRxData + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_IndicateCtrlFrame + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_RxSecError + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifirxiram.28.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_nan_set_callbacks + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_nan_is_in_dw + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_FetchFirstDesc + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_Rxbuf_Deinit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_Rxbuf_Init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_disable_low_rate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_enable_low_rate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_is_low_rate_enable + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .iram1.46.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .iram1.47.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .iram1.50.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifislprxiram.54.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifislpiram.26.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifislprxiram.23.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifirxiram.25.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifislprxiram.29.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifislprxiram.31.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_Insert_KeyEntry + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_remove_KeyEntry + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_remove_KeyEntry_all_cnx + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_Crypto_Disable + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifislprxiram.58.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_set_csi_rx_cb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_is_mgmt_hwdecr_enabled + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_csi_enable + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_ampdu_rx_enable + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_ampdu_tx_enable + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_amsdu_tx_enable + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_nvs_enable + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_rx_baw + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_static_rx_buffer_num + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_dynamic_rx_buffer_num + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_tx_buffer_type + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_static_tx_buffer_num + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_dynamic_tx_buffer_num + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_rx_mgmt_buffer_type + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_rx_mgmt_buffer_num + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_cache_tx_buffer_num + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_task_stack_size + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_timer_task_stack_size + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_wps_task_stack_size + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_wpa2_task_stack_size + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_coexist_task_stack_size + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_pm_task_stack_size + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_task_core_id + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_beacon_max_len + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_mgmt_sbuf_num + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_feature_capabilities + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_espnow_max_encrypt_num + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_is_cache_tx_buf_enabled + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.config_get_wifi_sta_disconnected_pm + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.wdev_mac_sleep_init + 0x00000000 0x66 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.wdev_mac_sleep_deinit + 0x00000000 0x26 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.wdev_set_promis_filter + 0x00000000 0x3e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.wdev_get_promis_filter + 0x00000000 0x32 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.wdev_set_promis_ctrl_filter + 0x00000000 0x3e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.wdev_get_promis_ctrl_filter + 0x00000000 0x32 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifirxiram.28 + 0x00000000 0x5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.wdev_nan_set_callbacks + 0x00000000 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.wDev_FetchFirstDesc + 0x00000000 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.wdev_set_csi_rx_cb + 0x00000000 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.config_get_wifi_csi_enable + 0x00000000 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.config_get_wifi_timer_task_stack_size + 0x00000000 0x21 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.config_get_wifi_wps_task_stack_size + 0x00000000 0x21 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.config_get_wifi_wpa2_task_stack_size + 0x00000000 0x21 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.config_get_wifi_coexist_task_stack_size + 0x00000000 0x21 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.config_get_wifi_pm_task_stack_size + 0x00000000 0x11 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .bss.dbg_rx_bcn_count + 0x00000000 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_info.12 + 0x00000000 0x30 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_warning.11 + 0x00000000 0x22 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .xt.lit 0x00000000 0x2a8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .xt.prop 0x00000000 0x1ea8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.hal_agreement_add_rx_ba + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + .literal.hal_agreement_clr_rx_ba + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + .literal.hal_agreement_del_rx_ba + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + .literal.hal_ba_session_store + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + .literal.hal_ba_session_restore + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + .literal.hal_ba_session_restore_by_hw_index + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + .xt.lit 0x00000000 0x30 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + .xt.prop 0x00000000 0x168 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + .literal.hal_crypto_clr_key_entry + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .literal.hal_crypto_get_using_key_idx + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .literal.hal_crypto_set_key_entry + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .literal.hal_crypto_is_key_valid + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .literal.hal_crypto_get_key_entry + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .literal.hal_crypto_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .literal.hal_crypto_mgmt_rx_enabled + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .literal.hal_crypto_enable + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .literal.hal_crypto_disable + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .text.hal_crypto_get_using_key_idx + 0x00000000 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .xt.lit 0x00000000 0x48 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .xt.prop 0x00000000 0x2ac /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .literal.mac_tx_set_plcp0 + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.mac_tx_set_duration + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_tx_set_ppdu + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .wifi0iram.3.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .wifi0iram.4.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .wifi0iram.5.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .wifiextrairam.6.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .wifi0iram.7.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_set_txq_invalid + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_is_txq_valid + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_is_txq_enabled + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .wifi0iram.8.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_now + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_tx_set_cca + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_disable_low_rate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_enable_low_rate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .wifi0iram.9.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.mac_rxbuf_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_disable_mac + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_enable_mac + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .wifislpiram.10.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .wifislprxiram.11.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .wifislprxiram.12.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.mac_txrx_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_set_rxq_policy + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.mac_last_rxbuf_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.mac_last_rxbuf_deinit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.mac_rxbuf_disable + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_deinit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .iram1.13.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .iram1.14.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .iram1.15.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_set_addr + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_set_bssid + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_rx_set_policy + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_clr_bssid + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_tsf_get_time + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.wDev_Mesh_Disable_Tsf + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .wifiextrairam.16.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_tsf_set_time + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_tsf_reset + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_set_csi + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .wifislprxiram.17.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .wifi0iram.18.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_rx_enable + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_mac_rx_disable + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_rx_disable_bssid_check + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .literal.hal_rx_enable_bssid_check + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .text.hal_mac_is_txq_enabled + 0x00000000 0x1d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .wifislpiram.10 + 0x00000000 0x11 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .text.mac_rxbuf_disable + 0x00000000 0x5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .text.hal_mac_clr_bssid + 0x00000000 0x29 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .text.hal_mac_set_csi + 0x00000000 0x55 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .text.hal_mac_rx_enable + 0x00000000 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .text.hal_mac_rx_disable + 0x00000000 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .text.hal_rx_disable_bssid_check + 0x00000000 0x26 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .text.hal_rx_enable_bssid_check + 0x00000000 0x26 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .bss.g_mac_deinit_txing + 0x00000000 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .bss.g_mac_deinit_rxing + 0x00000000 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .bss.g_mac_deinit_count + 0x00000000 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .xt.lit 0x00000000 0x180 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .xt.prop 0x00000000 0xb58 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .iram1.2.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + .wifislprxiram.3.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + .wifislprxiram.4.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + .wifislprxiram.5.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + .iram1.6.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + .xt.lit 0x00000000 0x28 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + .xt.prop 0x00000000 0xf0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + .literal.mac_tx_set_plcp1 + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .literal.mac_tx_set_plcp2 + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .literal.mac_tx_set_htsig + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .wifi0iram.5.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .literal.hal_mac_get_txq_state + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .literal.hal_mac_clr_txq_state + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .literal.hal_mac_get_txq_pmd + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .literal.hal_attenna_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .literal.hal_mac_rate_autoack_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .xt.lit 0x00000000 0x48 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .xt.prop 0x00000000 0x30c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .literal.hal_sniffer_enable + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + .literal.hal_sniffer_disable + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + .literal.hal_sniffer_rx_set_promis + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + .literal.hal_sniffer_rx_clr_statistics + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + .xt.lit 0x00000000 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + .xt.prop 0x00000000 0x114 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + .literal.hal_enable_sta_tsf + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + .literal.hal_disable_sta_tsf + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + .literal.hal_enable_nan_tsf + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + .literal.hal_disable_nan_tsf + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + .literal.hal_disable_softap_tsf + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + .text.hal_enable_nan_tsf + 0x00000000 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + .text.hal_disable_nan_tsf + 0x00000000 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + .xt.lit 0x00000000 0x28 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + .xt.prop 0x00000000 0xf0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + .literal.prvGetItemByteBuf + 0x00000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvCheckItemFitsByteBuffer + 0x00000000 0x10 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvReturnItemDefault + 0x00000000 0x28 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvGetItemDefault + 0x00000000 0x2c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvSendItemDoneNoSplit + 0x00000000 0x28 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvCheckItemFitsDefault + 0x00000000 0x14 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvInitializeNewRingbuffer + 0x00000000 0x3c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvCopyItemByteBuf + 0x00000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvCopyItemAllowSplit + 0x00000000 0x20 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvCopyItemNoSplit + 0x00000000 0xc esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvReceiveGenericFromISR + 0x00000000 0x20 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvReturnItemByteBuf + 0x00000000 0x14 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferCreate + 0x00000000 0x28 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferCreateNoSplit + 0x00000000 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferCreateStatic + 0x00000000 0x20 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferSendAcquire + 0x00000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferSendComplete + 0x00000000 0x30 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferSendFromISR + 0x00000000 0x24 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferReceiveFromISR + 0x00000000 0x14 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferReceiveSplit + 0x00000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferReceiveSplitFromISR + 0x00000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferReceiveUpTo + 0x00000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferReceiveUpToFromISR + 0x00000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.vRingbufferReturnItemFromISR + 0x00000000 0x20 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.vRingbufferDelete + 0x00000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferGetMaxItemSize + 0x00000000 0x10 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferGetCurFreeSize + 0x00000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferAddToQueueSetRead + 0x00000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferRemoveFromQueueSetRead + 0x00000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.vRingbufferGetInfo + 0x00000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferPrintInfo + 0x00000000 0x20 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferGetStaticBuffer + 0x00000000 0x10 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferCreateWithCaps + 0x00000000 0x14 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.vRingbufferDeleteWithCaps + 0x00000000 0x20 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text 0x00000000 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .data 0x00000000 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetItemByteBuf + 0x00000000 0x8e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCheckItemFitsByteBuffer + 0x00000000 0x54 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvReturnItemDefault.str1.1 + 0x00000000 0x15d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvReturnItemDefault + 0x00000000 0xf2 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvGetItemDefault.str1.1 + 0x00000000 0x17d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetItemDefault + 0x00000000 0xf1 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvSendItemDoneNoSplit.str1.1 + 0x00000000 0x7e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvSendItemDoneNoSplit + 0x00000000 0xd9 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCheckItemFitsDefault + 0x00000000 0x86 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvInitializeNewRingbuffer + 0x00000000 0x92 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCopyItemByteBuf + 0x00000000 0x76 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCopyItemAllowSplit + 0x00000000 0xc6 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCopyItemNoSplit + 0x00000000 0x26 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvReceiveGenericFromISR + 0x00000000 0x97 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetCurMaxSizeNoSplit + 0x00000000 0x33 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetCurMaxSizeAllowSplit + 0x00000000 0x4d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetCurMaxSizeByteBuf + 0x00000000 0x1e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvReturnItemByteBuf.str1.1 + 0x00000000 0x57 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvReturnItemByteBuf + 0x00000000 0x3e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferCreate.str1.1 + 0x00000000 0x2f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferCreate + 0x00000000 0x83 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferCreateNoSplit + 0x00000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferCreateStatic.str1.1 + 0x00000000 0x7f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferCreateStatic + 0x00000000 0x67 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferSendAcquire + 0x00000000 0x56 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferSendComplete + 0x00000000 0xa1 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferSendFromISR + 0x00000000 0xd5 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveFromISR + 0x00000000 0x36 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferReceiveSplit.str1.1 + 0x00000000 0x87 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveSplit + 0x00000000 0x5e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveSplitFromISR + 0x00000000 0x5c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferReceiveUpTo.str1.1 + 0x00000000 0x38 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveUpTo + 0x00000000 0x4d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveUpToFromISR + 0x00000000 0x4c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.vRingbufferReturnItemFromISR + 0x00000000 0x63 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.vRingbufferDelete + 0x00000000 0x2f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferGetMaxItemSize + 0x00000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferGetCurFreeSize + 0x00000000 0x38 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferAddToQueueSetRead.str1.1 + 0x00000000 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferAddToQueueSetRead + 0x00000000 0x4a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferRemoveFromQueueSetRead + 0x00000000 0x4a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.vRingbufferGetInfo + 0x00000000 0x6a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferPrintInfo.str1.1 + 0x00000000 0x62 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferPrintInfo + 0x00000000 0x5e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferGetStaticBuffer.str1.1 + 0x00000000 0x3d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferGetStaticBuffer + 0x00000000 0x43 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferCreateWithCaps + 0x00000000 0x58 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.vRingbufferDeleteWithCaps.str1.1 + 0x00000000 0x20 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.vRingbufferDeleteWithCaps + 0x00000000 0x44 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$0 + 0x00000000 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$1 + 0x00000000 0x1b esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$2 + 0x00000000 0xf esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$3 + 0x00000000 0x15 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$4 + 0x00000000 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$5 + 0x00000000 0x22 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$6 + 0x00000000 0x1d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$7 + 0x00000000 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$8 + 0x00000000 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$9 + 0x00000000 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$10 + 0x00000000 0x1d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$12 + 0x00000000 0x1e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$13 + 0x00000000 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$14 + 0x00000000 0x1f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$15 + 0x00000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$16 + 0x00000000 0x19 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$17 + 0x00000000 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$20 + 0x00000000 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$22 + 0x00000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$23 + 0x00000000 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$24 + 0x00000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$26 + 0x00000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$27 + 0x00000000 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$29 + 0x00000000 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$30 + 0x00000000 0x15 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$31 + 0x00000000 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$32 + 0x00000000 0x1b esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$33 + 0x00000000 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$34 + 0x00000000 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$35 + 0x00000000 0x15 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$36 + 0x00000000 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .xt.lit 0x00000000 0x140 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .xt.prop 0x00000000 0x1440 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.esp_efuse_get_pkg_ver + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_disable_basic_rom_console + 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_disable_rom_download_mode + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_get_pkg_ver + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .rodata.esp_efuse_disable_basic_rom_console.str1.1 + 0x00000000 0x4e esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_disable_basic_rom_console + 0x00000000 0x33 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_disable_rom_download_mode + 0x00000000 0x3c esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_set_rom_log_scheme + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_frame 0x00000000 0x70 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_info 0x00000000 0x5a7 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_abbrev 0x00000000 0x1ca esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_loc 0x00000000 0x2b esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_aranges + 0x00000000 0x38 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_ranges 0x00000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_line 0x00000000 0x587 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_str 0x00000000 0xc96 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .xt.prop 0x00000000 0xcc esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .literal.spi_bus_init_lock + 0x00000000 0x4 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .literal.spi_bus_deinit_lock + 0x00000000 0x14 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .literal.spi_bus_lock_register_dev + 0x00000000 0xc esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .literal.spi_bus_lock_unregister_dev + 0x00000000 0x8 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.24.literal + 0x00000000 0x38 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.26.literal + 0x00000000 0x38 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.29.literal + 0x00000000 0xc esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .literal.spi_bus_lock_bg_request + 0x00000000 0x4 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.30.literal + 0x00000000 0x34 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.32.literal + 0x00000000 0x8 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.33.literal + 0x00000000 0x4 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.34.literal + 0x00000000 0x4 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .text 0x00000000 0x0 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .data 0x00000000 0x0 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .bss 0x00000000 0x0 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.9 0x00000000 0xc esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.3 0x00000000 0x10 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.11 0x00000000 0x94 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .text.spi_bus_init_lock + 0x00000000 0x36 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .rodata.spi_bus_deinit_lock.str1.1 + 0x00000000 0x58 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .text.spi_bus_deinit_lock + 0x00000000 0x36 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .text.spi_bus_lock_register_dev + 0x00000000 0xc4 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .text.spi_bus_lock_unregister_dev + 0x00000000 0x44 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .text.spi_bus_lock_set_bg_control + 0x00000000 0xb esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.21 0x00000000 0x1e esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.22 0x00000000 0x15 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .rodata.str1.1 + 0x00000000 0xee esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.24 0x00000000 0xaf esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.26 0x00000000 0xb9 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.27 0x00000000 0xa esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.28 0x00000000 0x26 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.29 0x00000000 0x58 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .text.spi_bus_lock_bg_request + 0x00000000 0x61 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.30 0x00000000 0xa6 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.31 0x00000000 0x53 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.32 0x00000000 0x1c esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.33 0x00000000 0x61 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .iram1.34 0x00000000 0x1b esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0x1a esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .rodata.__FUNCTION__$1 + 0x00000000 0x19 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .rodata.__FUNCTION__$2 + 0x00000000 0x1b esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .rodata.__func__$3 + 0x00000000 0x14 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .dram1.0 0x00000000 0x9 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .data.s_spinlock + 0x00000000 0x8 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .xt.lit 0x00000000 0x60 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .xt.prop 0x00000000 0x660 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .literal.spi_ll_enable_bus_clock + 0x00000000 0x30 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.claim_dma_chan + 0x00000000 0x30 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.alloc_dma_chan$constprop$0 + 0x00000000 0x38 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.dma_chan_free + 0x00000000 0x3c esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_periph_claim + 0x00000000 0x58 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_periph_in_use + 0x00000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_periph_free + 0x00000000 0x10 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_irqsource_for_host + 0x00000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_irqdma_source_for_host + 0x00000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_dma_chan_alloc + 0x00000000 0x24 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_dma_chan_free + 0x00000000 0x1c esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_bus_initialize_io + 0x00000000 0x138 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_bus_free_io_cfg + 0x00000000 0xc esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_cs_initialize + 0x00000000 0x3c esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_cs_free_io + 0x00000000 0x1c esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_bus_using_iomux + 0x00000000 0x8 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spi_bus_main_set_lock + 0x00000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spi_bus_lock_get_by_id + 0x00000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spi_bus_initialize + 0x00000000 0x7c esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spi_bus_get_attr + 0x00000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spi_bus_free + 0x00000000 0x20 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spi_bus_register_destroy_func + 0x00000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.0.literal + 0x00000000 0x20 esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.1.literal + 0x00000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.2.literal + 0x00000000 0x20 esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.3.literal + 0x00000000 0x10 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text 0x00000000 0x0 esp-idf/driver/libdriver.a(spi_common.c.obj) + .data 0x00000000 0x0 esp-idf/driver/libdriver.a(spi_common.c.obj) + .bss 0x00000000 0x0 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spi_ll_enable_bus_clock.str1.1 + 0x00000000 0x35 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spi_ll_enable_bus_clock + 0x00000000 0x97 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.claim_dma_chan + 0x00000000 0x83 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.alloc_dma_chan$constprop$0.str1.1 + 0x00000000 0xbe esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.alloc_dma_chan$constprop$0 + 0x00000000 0xaa esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.dma_chan_free.str1.1 + 0x00000000 0x25 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.dma_chan_free + 0x00000000 0x85 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spicommon_periph_claim.str1.1 + 0x00000000 0x35 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_periph_claim + 0x00000000 0x136 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_periph_in_use + 0x00000000 0x19 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_periph_free + 0x00000000 0x7c esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_irqsource_for_host + 0x00000000 0x11 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_irqdma_source_for_host + 0x00000000 0x11 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_dma_chan_alloc + 0x00000000 0x7b esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_dma_chan_free + 0x00000000 0x38 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spicommon_bus_initialize_io.str1.1 + 0x00000000 0x30a esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_bus_initialize_io + 0x00000000 0x632 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_bus_free_io_cfg + 0x00000000 0x47 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spicommon_cs_initialize.str1.1 + 0x00000000 0xba esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_cs_initialize + 0x00000000 0xe9 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spicommon_cs_free_io.str1.1 + 0x00000000 0x20 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_cs_free_io + 0x00000000 0x34 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_bus_using_iomux + 0x00000000 0x61 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spi_bus_main_set_lock + 0x00000000 0xd esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spi_bus_lock_get_by_id + 0x00000000 0x10 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spi_bus_initialize.str1.1 + 0x00000000 0x119 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spi_bus_initialize + 0x00000000 0x232 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spi_bus_get_attr + 0x00000000 0x12 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spi_bus_free + 0x00000000 0x72 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spi_bus_register_destroy_func + 0x00000000 0x13 esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.0 0x00000000 0x51 esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.1 0x00000000 0x11 esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.2 0x00000000 0x47 esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.3 0x00000000 0x28 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0x13 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$1 + 0x00000000 0x15 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$2 + 0x00000000 0x18 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$3 + 0x00000000 0x17 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__FUNCTION__$4 + 0x00000000 0x1c esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$5 + 0x00000000 0xe esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$6 + 0x00000000 0x18 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__FUNCTION__$7 + 0x00000000 0xf esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$8 + 0x00000000 0xf esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$9 + 0x00000000 0x19 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$10 + 0x00000000 0x16 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$11 + 0x00000000 0x18 esp-idf/driver/libdriver.a(spi_common.c.obj) + .bss.dmaworkaround_waiting_for_chan + 0x00000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .data.dmaworkaround_mux + 0x00000000 0x8 esp-idf/driver/libdriver.a(spi_common.c.obj) + .bss.dmaworkaround_cb_arg + 0x00000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .bss.dmaworkaround_cb + 0x00000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .bss.dmaworkaround_channels_busy + 0x00000000 0x8 esp-idf/driver/libdriver.a(spi_common.c.obj) + .data.spi_dma_spinlock + 0x00000000 0x8 esp-idf/driver/libdriver.a(spi_common.c.obj) + .bss.spi_dma_chan_enabled + 0x00000000 0x1 esp-idf/driver/libdriver.a(spi_common.c.obj) + .data.bus_ctx 0x00000000 0xc esp-idf/driver/libdriver.a(spi_common.c.obj) + .data.s_mainbus + 0x00000000 0x64 esp-idf/driver/libdriver.a(spi_common.c.obj) + .bss.spi_claiming_func + 0x00000000 0xc esp-idf/driver/libdriver.a(spi_common.c.obj) + .data.spi_periph_claimed + 0x00000000 0x3 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_frame 0x00000000 0x280 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_info 0x00000000 0x5bdd esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_abbrev 0x00000000 0x6f4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_loc 0x00000000 0x10d5 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_aranges + 0x00000000 0xe8 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_ranges 0x00000000 0x268 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_line 0x00000000 0x350a esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_str 0x00000000 0x34dd esp-idf/driver/libdriver.a(spi_common.c.obj) + .comment 0x00000000 0x30 esp-idf/driver/libdriver.a(spi_common.c.obj) + .xt.lit 0x00000000 0xd0 esp-idf/driver/libdriver.a(spi_common.c.obj) + .xt.prop 0x00000000 0xbac esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.touch_pad_isr_deregister + 0x00000000 0x4 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_set_voltage + 0x00000000 0x38 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_get_voltage + 0x00000000 0x10 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_set_cnt_mode + 0x00000000 0x38 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_get_cnt_mode + 0x00000000 0x28 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_io_init + 0x00000000 0x2c esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_fsm_start + 0x00000000 0x10 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_fsm_stop + 0x00000000 0x14 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_set_fsm_mode + 0x00000000 0x30 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_get_fsm_mode + 0x00000000 0x4 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_sw_start + 0x00000000 0x10 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_set_thresh + 0x00000000 0x28 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_get_thresh + 0x00000000 0x1c esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_get_wakeup_status + 0x00000000 0x1c esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .iram1.0.literal + 0x00000000 0x4 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .iram1.1.literal + 0x00000000 0x4 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text 0x00000000 0x0 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .data 0x00000000 0x0 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .bss 0x00000000 0x0 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_isr_deregister + 0x00000000 0x11 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .rodata.touch_pad_set_voltage.str1.1 + 0x00000000 0x64 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_set_voltage + 0x00000000 0x87 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_get_voltage + 0x00000000 0x37 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .rodata.touch_pad_set_cnt_mode.str1.1 + 0x00000000 0x36 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_set_cnt_mode + 0x00000000 0x89 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_get_cnt_mode + 0x00000000 0x67 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_io_init + 0x00000000 0x63 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_fsm_start + 0x00000000 0x30 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_fsm_stop + 0x00000000 0x2e esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .rodata.touch_pad_set_fsm_mode.str1.1 + 0x00000000 0x15 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_set_fsm_mode + 0x00000000 0xa5 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_get_fsm_mode + 0x00000000 0x15 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_sw_start + 0x00000000 0x46 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_set_thresh + 0x00000000 0xb5 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_get_thresh + 0x00000000 0x96 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_get_wakeup_status + 0x00000000 0x42 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .iram1.0 0x00000000 0x31 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .iram1.1 0x00000000 0x1e esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0x1c esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .rodata.__FUNCTION__$1 + 0x00000000 0x15 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .rodata.__FUNCTION__$2 + 0x00000000 0x15 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .rodata.__FUNCTION__$3 + 0x00000000 0x17 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .rodata.__FUNCTION__$4 + 0x00000000 0x12 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .rodata.__FUNCTION__$5 + 0x00000000 0x17 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .rodata.__FUNCTION__$6 + 0x00000000 0x17 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .rodata.__FUNCTION__$7 + 0x00000000 0x16 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .debug_frame 0x00000000 0x190 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .debug_info 0x00000000 0x43c4 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .debug_abbrev 0x00000000 0x4b9 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .debug_loc 0x00000000 0x6c9 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .debug_aranges + 0x00000000 0x98 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .debug_ranges 0x00000000 0x1f0 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .debug_line 0x00000000 0x1470 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .debug_str 0x00000000 0x317b esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .comment 0x00000000 0x30 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .xt.lit 0x00000000 0x80 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .xt.prop 0x00000000 0x4bc esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.esp_partition_unload_all + 0x00000000 0x24 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.esp_partition_verify + 0x00000000 0x20 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.esp_partition_register_external + 0x00000000 0x38 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.esp_partition_deregister_external + 0x00000000 0x14 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text 0x00000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .data 0x00000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_unload_all + 0x00000000 0x56 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.esp_partition_verify.str1.1 + 0x00000000 0x12 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_verify + 0x00000000 0x71 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.esp_partition_register_external.str1.1 + 0x00000000 0x5a esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_register_external + 0x00000000 0x102 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_deregister_external + 0x00000000 0x56 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.__func__$0 + 0x00000000 0x20 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.__func__$1 + 0x00000000 0x15 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.__func__$4 + 0x00000000 0x19 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .xt.lit 0x00000000 0x50 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .xt.prop 0x00000000 0x534 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.esp_partition_munmap + 0x00000000 0x4 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .literal.esp_partition_get_sha256 + 0x00000000 0x4 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .literal.esp_partition_check_identity + 0x00000000 0xc esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .text 0x00000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .data 0x00000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .text.esp_partition_munmap + 0x00000000 0xe esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .text.esp_partition_get_sha256 + 0x00000000 0x15 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .text.esp_partition_check_identity + 0x00000000 0x49 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .xt.prop 0x00000000 0x36c esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .literal.image_validate + 0x00000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.read_otadata + 0x00000000 0x30 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.check_invalid_otadata + 0x00000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.find_default_boot_partition + 0x00000000 0x1c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.rewrite_ota_seq$part$0 + 0x00000000 0xc esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_begin + 0x00000000 0x18 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_write + 0x00000000 0x44 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_write_with_offset + 0x00000000 0x3c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_abort + 0x00000000 0x8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_end + 0x00000000 0x10 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_app_partition_count + 0x00000000 0x14 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_set_boot_partition + 0x00000000 0x1c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_boot_partition + 0x00000000 0x2c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_next_update_partition + 0x00000000 0x1c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_bootloader_description + 0x00000000 0x10 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_partition_description + 0x00000000 0x8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_check_rollback_is_possible + 0x00000000 0x24 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_current_ota_is_workable + 0x00000000 0x44 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_mark_app_valid_cancel_rollback + 0x00000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_mark_app_invalid_rollback_and_reboot + 0x00000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_last_invalid_partition + 0x00000000 0x1c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_state_partition + 0x00000000 0x10 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_erase_last_boot_app_partition + 0x00000000 0x20 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text 0x00000000 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .data 0x00000000 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .bss 0x00000000 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.image_validate + 0x00000000 0x27 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.read_otadata.str1.1 + 0x00000000 0x6c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.read_otadata + 0x00000000 0x8f esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.check_invalid_otadata + 0x00000000 0x2a esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.find_default_boot_partition.str1.1 + 0x00000000 0x43 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.find_default_boot_partition + 0x00000000 0x58 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.rewrite_ota_seq$part$0 + 0x00000000 0x3e esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_begin + 0x00000000 0xc0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_write.str1.1 + 0x00000000 0xb0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_write + 0x00000000 0x166 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_write_with_offset.str1.1 + 0x00000000 0xc4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_write_with_offset + 0x00000000 0x9f esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_abort + 0x00000000 0x33 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_end + 0x00000000 0x80 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_get_app_partition_count.str1.1 + 0x00000000 0x46 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_app_partition_count + 0x00000000 0x35 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_set_boot_partition + 0x00000000 0xba esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_get_boot_partition.str1.1 + 0x00000000 0x4b esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_boot_partition + 0x00000000 0x7c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_get_next_update_partition.str1.1 + 0x00000000 0x13 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_next_update_partition + 0x00000000 0x56 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_bootloader_description + 0x00000000 0x67 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_partition_description + 0x00000000 0x46 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_check_rollback_is_possible + 0x00000000 0xba esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_current_ota_is_workable.str1.1 + 0x00000000 0xd7 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_current_ota_is_workable + 0x00000000 0xee esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_mark_app_valid_cancel_rollback + 0x00000000 0x10 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_mark_app_invalid_rollback_and_reboot + 0x00000000 0x10 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_last_invalid_partition + 0x00000000 0x72 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_state_partition + 0x00000000 0x9e esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_erase_last_boot_app_partition + 0x00000000 0xb6 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.__func__$0 + 0x00000000 0x22 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.__func__$3 + 0x00000000 0x20 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.__func__$4 + 0x00000000 0x1a esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .bss.s_ota_ops_last_handle + 0x00000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .bss.s_ota_ops_entries_head + 0x00000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .xt.lit 0x00000000 0xc0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .xt.prop 0x00000000 0xab0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .xt.prop 0x00000000 0x60 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .xt.prop 0x00000000 0x264 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .literal.mpi_hal_interrupt_enable + 0x00000000 0x4 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .literal.mpi_hal_clear_interrupt + 0x00000000 0x4 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .text.mpi_hal_interrupt_enable + 0x00000000 0x1c esp-idf/hal/libhal.a(mpi_hal.c.obj) + .text.mpi_hal_clear_interrupt + 0x00000000 0xf esp-idf/hal/libhal.a(mpi_hal.c.obj) + .xt.lit 0x00000000 0x60 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .xt.prop 0x00000000 0x2d0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(sha_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(sha_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(sha_hal.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/hal/libhal.a(sha_hal.c.obj) + .xt.prop 0x00000000 0x114 esp-idf/hal/libhal.a(sha_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(aes_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(aes_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(aes_hal.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/hal/libhal.a(aes_hal.c.obj) + .xt.prop 0x00000000 0x84 esp-idf/hal/libhal.a(aes_hal.c.obj) + .literal.touch_hal_config + 0x00000000 0xc esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .literal.touch_hal_set_voltage + 0x00000000 0x10 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .literal.touch_hal_get_voltage + 0x00000000 0x4 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .literal.touch_hal_set_meas_mode + 0x00000000 0xc esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .literal.touch_hal_get_meas_mode + 0x00000000 0x4 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .text.touch_hal_config + 0x00000000 0xa8 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .text.touch_hal_set_voltage + 0x00000000 0x5f esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .text.touch_hal_get_voltage + 0x00000000 0x29 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .text.touch_hal_set_meas_mode + 0x00000000 0x59 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .text.touch_hal_get_meas_mode + 0x00000000 0x3a esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_frame 0x00000000 0x88 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_info 0x00000000 0x26fc esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_abbrev 0x00000000 0x33f esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_loc 0x00000000 0x4ec esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_aranges + 0x00000000 0x40 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_ranges 0x00000000 0xb0 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_line 0x00000000 0x793 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_str 0x00000000 0x17ce esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .comment 0x00000000 0x30 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .xt.prop 0x00000000 0x150 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .literal.touch_hal_init + 0x00000000 0x1c esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .literal.touch_hal_deinit + 0x00000000 0xc esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .literal.touch_hal_get_wakeup_status + 0x00000000 0x4 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .text.touch_hal_init + 0x00000000 0x191 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .text.touch_hal_deinit + 0x00000000 0x3f esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .text.touch_hal_get_wakeup_status + 0x00000000 0x45 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_frame 0x00000000 0x58 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_info 0x00000000 0x3384 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_abbrev 0x00000000 0x317 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_loc 0x00000000 0x14c esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_aranges + 0x00000000 0x30 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_ranges 0x00000000 0x130 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_line 0x00000000 0x708 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .debug_str 0x00000000 0x2376 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .comment 0x00000000 0x30 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .xt.prop 0x00000000 0xb4 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .text 0x00000000 0x0 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .data 0x00000000 0x0 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .xt.prop 0x00000000 0x48 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .text 0x00000000 0x0 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .data 0x00000000 0x0 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .xt.prop 0x00000000 0x18 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .text 0x00000000 0x0 esp-idf/soc/libsoc.a(touch_sensor_periph.c.obj) + .data 0x00000000 0x0 esp-idf/soc/libsoc.a(touch_sensor_periph.c.obj) + .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(touch_sensor_periph.c.obj) + .rodata.touch_sensor_channel_io_map + 0x00000000 0x28 esp-idf/soc/libsoc.a(touch_sensor_periph.c.obj) + .debug_info 0x00000000 0x261 esp-idf/soc/libsoc.a(touch_sensor_periph.c.obj) + .debug_abbrev 0x00000000 0x84 esp-idf/soc/libsoc.a(touch_sensor_periph.c.obj) + .debug_aranges + 0x00000000 0x18 esp-idf/soc/libsoc.a(touch_sensor_periph.c.obj) + .debug_line 0x00000000 0xff esp-idf/soc/libsoc.a(touch_sensor_periph.c.obj) + .debug_str 0x00000000 0x8e3 esp-idf/soc/libsoc.a(touch_sensor_periph.c.obj) + .comment 0x00000000 0x30 esp-idf/soc/libsoc.a(touch_sensor_periph.c.obj) + .xt.prop 0x00000000 0xc esp-idf/soc/libsoc.a(touch_sensor_periph.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .xt.prop 0x00000000 0x84 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .literal.esp_mac_addr_len_get + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .literal.esp_iface_mac_addr_set + 0x00000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .literal.esp_base_mac_addr_set + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .literal.esp_efuse_mac_get_custom + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .literal.esp_derive_local_mac + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .literal.esp_base_mac_addr_get + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text.esp_mac_addr_len_get + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text.esp_iface_mac_addr_set + 0x00000000 0x93 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text.esp_base_mac_addr_set + 0x00000000 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text.esp_efuse_mac_get_custom + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text.esp_derive_local_mac + 0x00000000 0x61 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text.esp_base_mac_addr_get + 0x00000000 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .xt.lit 0x00000000 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .xt.prop 0x00000000 0x45c esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .xt.prop 0x00000000 0x6c esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .literal.xEventGroupCreateStatic + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .literal.xEventGroupGetBitsFromISR + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .literal.xEventGroupSync + 0x00000000 0x3c esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .literal.xEventGroupGetStaticBuffer + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .literal.vEventGroupSetBitsCallback + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .literal.vEventGroupClearBitsCallback + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text.xEventGroupCreateStatic + 0x00000000 0x4e esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text.xEventGroupGetBitsFromISR + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text.xEventGroupSync + 0x00000000 0xdd esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.xEventGroupGetStaticBuffer.str1.1 + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text.xEventGroupGetStaticBuffer + 0x00000000 0x36 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text.vEventGroupSetBitsCallback + 0x00000000 0xf esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text.vEventGroupClearBitsCallback + 0x00000000 0xf esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.__func__$0 + 0x00000000 0x1b esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.__func__$5 + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.__func__$7 + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .xt.prop 0x00000000 0x498 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .data 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .text.ets_timer_init + 0x00000000 0x5 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .text.ets_timer_deinit + 0x00000000 0x5 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .xt.prop 0x00000000 0x198 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .literal.rtc_printf + 0x00000000 0x8 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .literal.wpa_printf + 0x00000000 0x8 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .literal.wpa2_printf + 0x00000000 0x8 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .literal.wps_printf + 0x00000000 0x8 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .literal.pp_printf + 0x00000000 0x8 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .literal.sc_printf + 0x00000000 0x8 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .literal.core_printf + 0x00000000 0x8 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .literal.coexist_printf + 0x00000000 0x8 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .literal.wapi_printf + 0x00000000 0x8 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .data 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.rtc_printf.str1.1 + 0x00000000 0x4 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text.rtc_printf + 0x00000000 0x2c esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.wpa_printf.str1.1 + 0x00000000 0x4 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text.wpa_printf + 0x00000000 0x2c esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.wpa2_printf.str1.1 + 0x00000000 0x5 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text.wpa2_printf + 0x00000000 0x2c esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.wps_printf.str1.1 + 0x00000000 0x4 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text.wps_printf + 0x00000000 0x2c esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.pp_printf.str1.1 + 0x00000000 0x3 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text.pp_printf + 0x00000000 0x2c esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.sc_printf.str1.1 + 0x00000000 0xc esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text.sc_printf + 0x00000000 0x2c esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.core_printf.str1.1 + 0x00000000 0x5 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text.core_printf + 0x00000000 0x2c esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.coexist_printf.str1.1 + 0x00000000 0x8 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text.coexist_printf + 0x00000000 0x2c esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.wapi_printf.str1.1 + 0x00000000 0x5 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text.wapi_printf + 0x00000000 0x2c esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .xt.lit 0x00000000 0x68 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .xt.prop 0x00000000 0x2ac esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .literal.esp_phy_rf_get_on_ts + 0x00000000 0x4 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .literal.esp_phy_get_init_data + 0x00000000 0x4 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .literal.esp_phy_erase_cal_data_in_nvs + 0x00000000 0x3c esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .literal.phy_get_lock + 0x00000000 0x4 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .text 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .data 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .text.esp_phy_rf_get_on_ts + 0x00000000 0xc esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .text.esp_phy_get_init_data + 0x00000000 0x8 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .text.esp_phy_release_init_data + 0x00000000 0x5 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .rodata.esp_phy_erase_cal_data_in_nvs.str1.1 + 0x00000000 0xcf esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .text.esp_phy_erase_cal_data_in_nvs + 0x00000000 0x92 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .text.phy_get_lock + 0x00000000 0xa esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .rodata.__func__$7 + 0x00000000 0x1e esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .xt.lit 0x00000000 0x78 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .xt.prop 0x00000000 0x540 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .literal.phy_track_pll_internal + 0x00000000 0x10 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .literal.phy_track_pll_timer_callback + 0x00000000 0x10 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .literal.phy_enabled_modem_contains + 0x00000000 0x4 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .literal.phy_track_pll + 0x00000000 0x14 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .literal.phy_track_pll_init + 0x00000000 0x2c esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .literal.phy_track_pll_deinit + 0x00000000 0x20 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .text 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .data 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .text.phy_track_pll_internal + 0x00000000 0x30 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .text.phy_track_pll_timer_callback + 0x00000000 0x24 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .text.phy_enabled_modem_contains + 0x00000000 0x1b esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .text.phy_track_pll + 0x00000000 0x45 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .rodata.phy_track_pll_init.str1.1 + 0x00000000 0xc9 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .text.phy_track_pll_init + 0x00000000 0x54 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .rodata.phy_track_pll_deinit.str1.1 + 0x00000000 0x4a esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .text.phy_track_pll_deinit + 0x00000000 0x3a esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .rodata.__func__$0 + 0x00000000 0x15 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .rodata.__func__$1 + 0x00000000 0x13 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .bss.s_wifi_prev_timestamp + 0x00000000 0x8 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .bss.phy_track_pll_timer + 0x00000000 0x4 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .xt.lit 0x00000000 0x48 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .xt.prop 0x00000000 0x21c esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .literal.alloc_socket + 0x00000000 0x20 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_sockopt_to_ipopt + 0x00000000 0x10 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_poll_dec_sockets_used + 0x00000000 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_getaddrname + 0x00000000 0x28 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_getsockopt_callback + 0x00000000 0x38 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_setsockopt_callback + 0x00000000 0x94 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.event_callback + 0x00000000 0x54 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_pollscan + 0x00000000 0x30 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_socket_thread_init + 0x00000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_socket_thread_cleanup + 0x00000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_socket_dbg_get_socket + 0x00000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_accept + 0x00000000 0x68 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_bind + 0x00000000 0x1c esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_connect + 0x00000000 0x20 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_listen + 0x00000000 0x1c esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_recv + 0x00000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_recvmsg + 0x00000000 0x2c esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_readv + 0x00000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_sendmsg + 0x00000000 0x54 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_socket + 0x00000000 0x24 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_writev + 0x00000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_poll + 0x00000000 0x38 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_shutdown + 0x00000000 0x24 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_getpeername + 0x00000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_getsockname + 0x00000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_getsockopt + 0x00000000 0x2c esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_setsockopt + 0x00000000 0x2c esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_inet_ntop + 0x00000000 0x14 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_inet_pton + 0x00000000 0x10 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.alloc_socket + 0x00000000 0x85 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_sockopt_to_ipopt.str1.1 + 0x00000000 0x16 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_sockopt_to_ipopt + 0x00000000 0x23 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_poll_dec_sockets_used + 0x00000000 0x2e esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_getaddrname + 0x00000000 0xf7 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_getsockopt_callback.str1.1 + 0x00000000 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_getsockopt_callback + 0x00000000 0x383 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_setsockopt_callback.str1.1 + 0x00000000 0x3e esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_setsockopt_callback + 0x00000000 0x61e esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.event_callback.str1.1 + 0x00000000 0xe esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.event_callback + 0x00000000 0x213 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_pollscan + 0x00000000 0x136 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_socket_thread_init + 0x00000000 0xb esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_socket_thread_cleanup + 0x00000000 0xb esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_socket_dbg_get_socket + 0x00000000 0x18 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_accept.str1.1 + 0x00000000 0x25 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_accept + 0x00000000 0x1c3 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_bind + 0x00000000 0xb5 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_connect + 0x00000000 0xc1 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_listen + 0x00000000 0x6f esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_recv + 0x00000000 0x19 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_recvmsg + 0x00000000 0x12e esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_readv + 0x00000000 0x24 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_sendmsg + 0x00000000 0x1c7 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_socket + 0x00000000 0xab esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_writev + 0x00000000 0x24 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_poll + 0x00000000 0xff esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_shutdown + 0x00000000 0x99 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_getpeername + 0x00000000 0x15 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_getsockname + 0x00000000 0x15 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_getsockopt + 0x00000000 0xa9 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_setsockopt + 0x00000000 0x95 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_inet_ntop + 0x00000000 0x51 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_inet_pton + 0x00000000 0x44 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$0 + 0x00000000 0x15 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$1 + 0x00000000 0x19 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$2 + 0x00000000 0x16 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$3 + 0x00000000 0x19 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$4 + 0x00000000 0xe esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$11 + 0x00000000 0xf esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$18 + 0x00000000 0xd esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$20 + 0x00000000 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + .xt.lit 0x00000000 0x1b0 esp-idf/lwip/liblwip.a(sockets.c.obj) + .xt.prop 0x00000000 0x2370 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.pbuf_free_int + 0x00000000 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.tcpip_callback + 0x00000000 0x1c esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.tcpip_callbackmsg_new + 0x00000000 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.tcpip_callbackmsg_delete + 0x00000000 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.tcpip_callbackmsg_trycallback + 0x00000000 0x18 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.tcpip_callbackmsg_trycallback_fromisr + 0x00000000 0x18 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.pbuf_free_callback + 0x00000000 0x8 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.mem_free_callback + 0x00000000 0x8 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.pbuf_free_int + 0x00000000 0xe esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.tcpip_callback + 0x00000000 0x42 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.tcpip_callbackmsg_new + 0x00000000 0x1c esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.tcpip_callbackmsg_delete + 0x00000000 0xf esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.tcpip_callbackmsg_trycallback + 0x00000000 0x2b esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.tcpip_callbackmsg_trycallback_fromisr + 0x00000000 0x2b esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.pbuf_free_callback + 0x00000000 0x13 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.mem_free_callback + 0x00000000 0x13 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.__func__$3 + 0x00000000 0x26 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.__func__$4 + 0x00000000 0x1e esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.__func__$8 + 0x00000000 0xf esp-idf/lwip/liblwip.a(tcpip.c.obj) + .xt.lit 0x00000000 0x78 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .xt.prop 0x00000000 0x45c esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.lwip_strnstr + 0x00000000 0x8 esp-idf/lwip/liblwip.a(def.c.obj) + .literal.lwip_itoa + 0x00000000 0x8 esp-idf/lwip/liblwip.a(def.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(def.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(def.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(def.c.obj) + .text.lwip_strnstr + 0x00000000 0x3d esp-idf/lwip/liblwip.a(def.c.obj) + .text.lwip_stricmp + 0x00000000 0x3d esp-idf/lwip/liblwip.a(def.c.obj) + .text.lwip_strnicmp + 0x00000000 0x51 esp-idf/lwip/liblwip.a(def.c.obj) + .text.lwip_itoa + 0x00000000 0x73 esp-idf/lwip/liblwip.a(def.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/lwip/liblwip.a(def.c.obj) + .xt.prop 0x00000000 0x1f8 esp-idf/lwip/liblwip.a(def.c.obj) + .literal.dns_backupserver_available + 0x00000000 0x4 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_call_found + 0x00000000 0x20 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_lookup + 0x00000000 0xc esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_send$isra$0 + 0x00000000 0x58 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_check_entry + 0x00000000 0x2c esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_recv + 0x00000000 0x88 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_clear_cache + 0x00000000 0x8 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_getserver + 0x00000000 0x8 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_tmr + 0x00000000 0x24 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_timeout_cb + 0x00000000 0x4 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_gethostbyname_addrtype + 0x00000000 0x74 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_gethostbyname + 0x00000000 0x4 esp-idf/lwip/liblwip.a(dns.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_backupserver_available + 0x00000000 0x3a esp-idf/lwip/liblwip.a(dns.c.obj) + .rodata.dns_call_found.str1.1 + 0x00000000 0x3a esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_call_found + 0x00000000 0xec esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_lookup + 0x00000000 0xab esp-idf/lwip/liblwip.a(dns.c.obj) + .rodata.dns_send$isra$0.str1.1 + 0x00000000 0x18 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_send$isra$0 + 0x00000000 0x1d3 esp-idf/lwip/liblwip.a(dns.c.obj) + .rodata.dns_check_entry.str1.1 + 0x00000000 0x1f esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_check_entry + 0x00000000 0x1a3 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_recv + 0x00000000 0x59a esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_clear_cache + 0x00000000 0x13 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_getserver + 0x00000000 0x17 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_tmr 0x00000000 0x5d esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_timeout_cb + 0x00000000 0xb esp-idf/lwip/liblwip.a(dns.c.obj) + .rodata.dns_gethostbyname_addrtype.str1.1 + 0x00000000 0x11 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_gethostbyname_addrtype + 0x00000000 0x3a2 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_gethostbyname + 0x00000000 0x19 esp-idf/lwip/liblwip.a(dns.c.obj) + .rodata.__func__$0 + 0x00000000 0x9 esp-idf/lwip/liblwip.a(dns.c.obj) + .rodata.__func__$1 + 0x00000000 0xf esp-idf/lwip/liblwip.a(dns.c.obj) + .rodata.__func__$2 + 0x00000000 0x10 esp-idf/lwip/liblwip.a(dns.c.obj) + .rodata.dns_mquery_v6group + 0x00000000 0x18 esp-idf/lwip/liblwip.a(dns.c.obj) + .rodata.dns_mquery_v4group + 0x00000000 0x18 esp-idf/lwip/liblwip.a(dns.c.obj) + .bss.dns_requests + 0x00000000 0x30 esp-idf/lwip/liblwip.a(dns.c.obj) + .bss.dns_table + 0x00000000 0x4a0 esp-idf/lwip/liblwip.a(dns.c.obj) + .bss.dns_seqno + 0x00000000 0x1 esp-idf/lwip/liblwip.a(dns.c.obj) + .bss.dns_last_pcb_idx + 0x00000000 0x1 esp-idf/lwip/liblwip.a(dns.c.obj) + .bss.dns_pcbs 0x00000000 0x10 esp-idf/lwip/liblwip.a(dns.c.obj) + .bss.s_is_tmr_start + 0x00000000 0x1 esp-idf/lwip/liblwip.a(dns.c.obj) + .xt.lit 0x00000000 0x68 esp-idf/lwip/liblwip.a(dns.c.obj) + .xt.prop 0x00000000 0x978 esp-idf/lwip/liblwip.a(dns.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(init.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(init.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(init.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/lwip/liblwip.a(init.c.obj) + .xt.prop 0x00000000 0x30 esp-idf/lwip/liblwip.a(init.c.obj) + .literal.ipaddr_ntoa + 0x00000000 0x8 esp-idf/lwip/liblwip.a(ip.c.obj) + .literal.ipaddr_ntoa_r + 0x00000000 0x8 esp-idf/lwip/liblwip.a(ip.c.obj) + .literal.ipaddr_aton + 0x00000000 0x8 esp-idf/lwip/liblwip.a(ip.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip.c.obj) + .text.ipaddr_ntoa + 0x00000000 0x21 esp-idf/lwip/liblwip.a(ip.c.obj) + .text.ipaddr_ntoa_r + 0x00000000 0x25 esp-idf/lwip/liblwip.a(ip.c.obj) + .text.ipaddr_aton + 0x00000000 0x48 esp-idf/lwip/liblwip.a(ip.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/lwip/liblwip.a(ip.c.obj) + .xt.prop 0x00000000 0x198 esp-idf/lwip/liblwip.a(ip.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(mem.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(mem.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(mem.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/lwip/liblwip.a(mem.c.obj) + .xt.prop 0x00000000 0x114 esp-idf/lwip/liblwip.a(mem.c.obj) + .literal.memp_malloc_pool + 0x00000000 0x14 esp-idf/lwip/liblwip.a(memp.c.obj) + .literal.memp_free_pool + 0x00000000 0x14 esp-idf/lwip/liblwip.a(memp.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(memp.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(memp.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(memp.c.obj) + .text.memp_init_pool + 0x00000000 0x5 esp-idf/lwip/liblwip.a(memp.c.obj) + .rodata.memp_malloc_pool.str1.1 + 0x00000000 0x12 esp-idf/lwip/liblwip.a(memp.c.obj) + .text.memp_malloc_pool + 0x00000000 0x25 esp-idf/lwip/liblwip.a(memp.c.obj) + .text.memp_free_pool + 0x00000000 0x23 esp-idf/lwip/liblwip.a(memp.c.obj) + .rodata.__func__$1 + 0x00000000 0xf esp-idf/lwip/liblwip.a(memp.c.obj) + .rodata.__func__$3 + 0x00000000 0x11 esp-idf/lwip/liblwip.a(memp.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/lwip/liblwip.a(memp.c.obj) + .xt.prop 0x00000000 0x288 esp-idf/lwip/liblwip.a(memp.c.obj) + .literal.netif_input + 0x00000000 0x1c esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_index_to_name + 0x00000000 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_find + 0x00000000 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_name_to_index + 0x00000000 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_set_ipaddr + 0x00000000 0xc esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_set_netmask + 0x00000000 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_set_gw + 0x00000000 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_add_noaddr + 0x00000000 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_create_ip6_linklocal_address + 0x00000000 0x24 esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_add_ip6_address + 0x00000000 0x20 esp-idf/lwip/liblwip.a(netif.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_input.str1.1 + 0x00000000 0x35 esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_input + 0x00000000 0x49 esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_index_to_name + 0x00000000 0x2e esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_find + 0x00000000 0x46 esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_name_to_index + 0x00000000 0x1a esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_set_ipaddr + 0x00000000 0x2a esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_set_netmask + 0x00000000 0x51 esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_set_gw + 0x00000000 0x53 esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_add_noaddr + 0x00000000 0x1c esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_create_ip6_linklocal_address.str1.1 + 0x00000000 0x32 esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_create_ip6_linklocal_address + 0x00000000 0xf2 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_add_ip6_address.str1.1 + 0x00000000 0x4c esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_add_ip6_address + 0x00000000 0xc5 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$3 + 0x00000000 0x16 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$4 + 0x00000000 0x23 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$16 + 0x00000000 0xc esp-idf/lwip/liblwip.a(netif.c.obj) + .xt.lit 0x00000000 0x118 esp-idf/lwip/liblwip.a(netif.c.obj) + .xt.prop 0x00000000 0xde0 esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.pbuf_header + 0x00000000 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.pbuf_dechain + 0x00000000 0x18 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.pbuf_get_contiguous + 0x00000000 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.pbuf_skip + 0x00000000 0x4 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.pbuf_coalesce + 0x00000000 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.pbuf_put_at + 0x00000000 0x4 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.pbuf_memcmp + 0x00000000 0x4 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.pbuf_memfind + 0x00000000 0x4 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.pbuf_strstr + 0x00000000 0xc esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_header + 0x00000000 0x23 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.pbuf_dechain.str1.1 + 0x00000000 0x37 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_dechain + 0x00000000 0x61 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_get_contiguous + 0x00000000 0x56 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_skip + 0x00000000 0x14 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_coalesce + 0x00000000 0x2c esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_put_at + 0x00000000 0x28 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_memcmp + 0x00000000 0x5a esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_memfind + 0x00000000 0x3f esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_strstr + 0x00000000 0x3c esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.__func__$4 + 0x00000000 0xd esp-idf/lwip/liblwip.a(pbuf.c.obj) + .xt.lit 0x00000000 0xf8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .xt.prop 0x00000000 0xc00 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.raw_bind + 0x00000000 0xc esp-idf/lwip/liblwip.a(raw.c.obj) + .literal.raw_connect + 0x00000000 0xc esp-idf/lwip/liblwip.a(raw.c.obj) + .literal.raw_disconnect + 0x00000000 0x4 esp-idf/lwip/liblwip.a(raw.c.obj) + .literal.raw_new + 0x00000000 0xc esp-idf/lwip/liblwip.a(raw.c.obj) + .literal.raw_new_ip_type + 0x00000000 0x4 esp-idf/lwip/liblwip.a(raw.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + .text.raw_bind + 0x00000000 0xb2 esp-idf/lwip/liblwip.a(raw.c.obj) + .text.raw_bind_netif + 0x00000000 0x15 esp-idf/lwip/liblwip.a(raw.c.obj) + .text.raw_connect + 0x00000000 0xbe esp-idf/lwip/liblwip.a(raw.c.obj) + .text.raw_disconnect + 0x00000000 0x6a esp-idf/lwip/liblwip.a(raw.c.obj) + .text.raw_recv + 0x00000000 0xa esp-idf/lwip/liblwip.a(raw.c.obj) + .text.raw_new 0x00000000 0x33 esp-idf/lwip/liblwip.a(raw.c.obj) + .text.raw_new_ip_type + 0x00000000 0x1b esp-idf/lwip/liblwip.a(raw.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/lwip/liblwip.a(raw.c.obj) + .xt.prop 0x00000000 0x714 esp-idf/lwip/liblwip.a(raw.c.obj) + .literal.tcp_new_port + 0x00000000 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_backlog_delayed + 0x00000000 0x14 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_bind + 0x00000000 0x20 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_listen_with_backlog_and_err + 0x00000000 0x28 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_listen_with_backlog + 0x00000000 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_txnow + 0x00000000 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_connect + 0x00000000 0x40 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_debug_state_str + 0x00000000 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_tcp_get_tcp_addrinfo + 0x00000000 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_accept_null + 0x00000000 0x14 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_new + 0x00000000 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_new_ip_type + 0x00000000 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_new_port + 0x00000000 0x51 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_backlog_delayed + 0x00000000 0x48 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_bind + 0x00000000 0x1c3 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_bind_netif + 0x00000000 0x15 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_listen_with_backlog_and_err.str1.1 + 0x00000000 0x2d esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_listen_with_backlog_and_err + 0x00000000 0x15a esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_listen_with_backlog + 0x00000000 0x14 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_txnow + 0x00000000 0x23 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_setprio + 0x00000000 0xe esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_connect + 0x00000000 0x26e esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_debug_state_str + 0x00000000 0xd esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_tcp_get_tcp_addrinfo + 0x00000000 0x3d esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_accept_null.str1.1 + 0x00000000 0x1d esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_accept_null + 0x00000000 0x24 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_new 0x00000000 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_new_ip_type + 0x00000000 0x1b esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$13 + 0x00000000 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$14 + 0x00000000 0x20 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$22 + 0x00000000 0x14 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.str1.1 + 0x00000000 0x68 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_state_str + 0x00000000 0x2c esp-idf/lwip/liblwip.a(tcp.c.obj) + .xt.lit 0x00000000 0x168 esp-idf/lwip/liblwip.a(tcp.c.obj) + .xt.prop 0x00000000 0x18a8 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .xt.prop 0x00000000 0xfb4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .xt.lit 0x00000000 0xa8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .xt.prop 0x00000000 0xc90 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .literal.sys_timeouts_deinit + 0x00000000 0x1c esp-idf/lwip/liblwip.a(timeouts.c.obj) + .literal.sys_restart_timeouts + 0x00000000 0x8 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .text.sys_timeouts_deinit + 0x00000000 0x2a esp-idf/lwip/liblwip.a(timeouts.c.obj) + .text.sys_restart_timeouts + 0x00000000 0x26 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .rodata.lwip_num_cyclic_timers + 0x00000000 0x4 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .xt.prop 0x00000000 0x36c esp-idf/lwip/liblwip.a(timeouts.c.obj) + .literal.udp_new_ip_type + 0x00000000 0x4 esp-idf/lwip/liblwip.a(udp.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + .text.udp_bind_netif + 0x00000000 0x15 esp-idf/lwip/liblwip.a(udp.c.obj) + .text.udp_new_ip_type + 0x00000000 0x18 esp-idf/lwip/liblwip.a(udp.c.obj) + .xt.lit 0x00000000 0x70 esp-idf/lwip/liblwip.a(udp.c.obj) + .xt.prop 0x00000000 0xbd0 esp-idf/lwip/liblwip.a(udp.c.obj) + .literal.dhcp_inform + 0x00000000 0x34 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .text.dhcp_inform + 0x00000000 0xa9 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .xt.lit 0x00000000 0xe8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .xt.prop 0x00000000 0xdec esp-idf/lwip/liblwip.a(dhcp.c.obj) + .literal.etharp_find_addr + 0x00000000 0x18 esp-idf/lwip/liblwip.a(etharp.c.obj) + .literal.etharp_get_entry + 0x00000000 0x1c esp-idf/lwip/liblwip.a(etharp.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.etharp_find_addr.str1.1 + 0x00000000 0x22 esp-idf/lwip/liblwip.a(etharp.c.obj) + .text.etharp_find_addr + 0x00000000 0x5d esp-idf/lwip/liblwip.a(etharp.c.obj) + .text.etharp_get_entry + 0x00000000 0x62 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.__func__$4 + 0x00000000 0x11 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.__func__$5 + 0x00000000 0x11 esp-idf/lwip/liblwip.a(etharp.c.obj) + .xt.lit 0x00000000 0x78 esp-idf/lwip/liblwip.a(etharp.c.obj) + .xt.prop 0x00000000 0x84c esp-idf/lwip/liblwip.a(etharp.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(icmp.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(icmp.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(icmp.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/lwip/liblwip.a(icmp.c.obj) + .xt.prop 0x00000000 0xf0 esp-idf/lwip/liblwip.a(icmp.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + .xt.lit 0x00000000 0x78 esp-idf/lwip/liblwip.a(igmp.c.obj) + .xt.prop 0x00000000 0x5e8 esp-idf/lwip/liblwip.a(igmp.c.obj) + .literal.ip4_set_default_multicast_netif + 0x00000000 0x4 esp-idf/lwip/liblwip.a(ip4.c.obj) + .literal.ip4_output + 0x00000000 0x18 esp-idf/lwip/liblwip.a(ip4.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + .text.ip4_set_default_multicast_netif + 0x00000000 0xa esp-idf/lwip/liblwip.a(ip4.c.obj) + .text.ip4_output + 0x00000000 0x52 esp-idf/lwip/liblwip.a(ip4.c.obj) + .rodata.__func__$0 + 0x00000000 0xb esp-idf/lwip/liblwip.a(ip4.c.obj) + .xt.lit 0x00000000 0x50 esp-idf/lwip/liblwip.a(ip4.c.obj) + .xt.prop 0x00000000 0x4e0 esp-idf/lwip/liblwip.a(ip4.c.obj) + .literal.ip4_addr_netmask_valid + 0x00000000 0x4 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .literal.ip4addr_aton + 0x00000000 0x18 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .literal.ipaddr_addr + 0x00000000 0x4 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .literal.ip4addr_ntoa_r + 0x00000000 0x4 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .literal.ip4addr_ntoa + 0x00000000 0x8 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .text.ip4_addr_netmask_valid + 0x00000000 0x3d esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .rodata.ip4addr_aton.str1.1 + 0x00000000 0x3d esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .text.ip4addr_aton + 0x00000000 0x14a esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .text.ipaddr_addr + 0x00000000 0x16 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .text.ip4addr_ntoa_r + 0x00000000 0x85 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .text.ip4addr_ntoa + 0x00000000 0x14 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .bss.str$0 0x00000000 0x10 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .rodata.__func__$1 + 0x00000000 0xd esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .xt.prop 0x00000000 0x2dc esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .xt.prop 0x00000000 0xa8 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .literal.icmp6_packet_too_big + 0x00000000 0x4 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .literal.icmp6_time_exceeded + 0x00000000 0x4 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .literal.icmp6_time_exceeded_with_addrs + 0x00000000 0x18 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .text.icmp6_packet_too_big + 0x00000000 0x13 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .text.icmp6_time_exceeded + 0x00000000 0x14 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .rodata.icmp6_time_exceeded_with_addrs.str1.1 + 0x00000000 0x29 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .text.icmp6_time_exceeded_with_addrs + 0x00000000 0x4a esp-idf/lwip/liblwip.a(icmp6.c.obj) + .rodata.__func__$0 + 0x00000000 0x1f esp-idf/lwip/liblwip.a(icmp6.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .xt.prop 0x00000000 0x270 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .literal.ip6_output + 0x00000000 0x1c esp-idf/lwip/liblwip.a(ip6.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + .text.ip6_output + 0x00000000 0x176 esp-idf/lwip/liblwip.a(ip6.c.obj) + .rodata.__func__$0 + 0x00000000 0xb esp-idf/lwip/liblwip.a(ip6.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/lwip/liblwip.a(ip6.c.obj) + .xt.prop 0x00000000 0x810 esp-idf/lwip/liblwip.a(ip6.c.obj) + .literal.ip6addr_aton + 0x00000000 0x10 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .literal.ip6addr_ntoa_r + 0x00000000 0x14 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .literal.ip6addr_ntoa + 0x00000000 0x8 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .text.ip6addr_aton + 0x00000000 0x166 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .rodata.ip6addr_ntoa_r.str1.1 + 0x00000000 0x8 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .text.ip6addr_ntoa_r + 0x00000000 0x1c4 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .text.ip6addr_ntoa + 0x00000000 0x14 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .bss.str$0 0x00000000 0x28 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .xt.prop 0x00000000 0x3a8 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .xt.prop 0x00000000 0xb4 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/lwip/liblwip.a(mld6.c.obj) + .xt.prop 0x00000000 0x558 esp-idf/lwip/liblwip.a(mld6.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + .xt.lit 0x00000000 0xa0 esp-idf/lwip/liblwip.a(nd6.c.obj) + .xt.prop 0x00000000 0xf54 esp-idf/lwip/liblwip.a(nd6.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .xt.prop 0x00000000 0x114 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .xt.prop 0x00000000 0x84 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .literal.ip4_netif_exist + 0x00000000 0x4 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .text.ip4_netif_exist + 0x00000000 0x36 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .xt.prop 0x00000000 0x138 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .literal.lwip_getsockopt_impl_ext + 0x00000000 0x8 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .text.lwip_setsockopt_impl_ext + 0x00000000 0x98 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .rodata.lwip_getsockopt_impl_ext.str1.1 + 0x00000000 0x14 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .text.lwip_getsockopt_impl_ext + 0x00000000 0x9f esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .debug_frame 0x00000000 0x40 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .debug_info 0x00000000 0xef1 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .debug_abbrev 0x00000000 0x1d9 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .debug_loc 0x00000000 0x164 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .debug_aranges + 0x00000000 0x28 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .debug_ranges 0x00000000 0x18 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .debug_line 0x00000000 0x6e8 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .debug_str 0x00000000 0xa42 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .comment 0x00000000 0x30 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .xt.prop 0x00000000 0x180 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .literal.sys_mbox_trypost_fromisr + 0x00000000 0x14 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .literal.sys_jiffies + 0x00000000 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .literal.sys_thread_sem_deinit + 0x00000000 0x10 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .literal.sys_delay_ms + 0x00000000 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.sys_mbox_trypost_fromisr.str1.1 + 0x00000000 0x14 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text.sys_mbox_trypost_fromisr + 0x00000000 0x44 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text.sys_mbox_set_owner + 0x00000000 0xe esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text.sys_jiffies + 0x00000000 0xd esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text.sys_thread_sem_deinit + 0x00000000 0x22 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text.sys_delay_ms + 0x00000000 0x14 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.__func__$5 + 0x00000000 0x19 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .xt.lit 0x00000000 0xe0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .xt.prop 0x00000000 0x798 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .xt.prop 0x00000000 0x198 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .literal.dhcp_search_ip_on_mac + 0x00000000 0x8 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .literal.dhcps_dns_setserver + 0x00000000 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .text.dhcps_option_info + 0x00000000 0x56 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .text.dhcp_search_ip_on_mac + 0x00000000 0x37 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .text.dhcps_dns_setserver + 0x00000000 0x1c esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .text.dhcps_dns_getserver + 0x00000000 0x12 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .xt.prop 0x00000000 0x9e4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .literal.netconn_new_with_proto_and_callback + 0x00000000 0x2c esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_bind + 0x00000000 0x14 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_bind_if + 0x00000000 0x8 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_connect + 0x00000000 0xc esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_disconnect + 0x00000000 0x8 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_listen_with_backlog + 0x00000000 0x8 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_sendto + 0x00000000 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_close + 0x00000000 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_accept + 0x00000000 0x3c esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_recv_udp_raw_netbuf + 0x00000000 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_recv_tcp_pbuf + 0x00000000 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_recv + 0x00000000 0x20 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_shutdown + 0x00000000 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_gethostbyname_addrtype + 0x00000000 0xc esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_thread_init + 0x00000000 0x1c esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_thread_cleanup + 0x00000000 0x8 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_new_with_proto_and_callback + 0x00000000 0x78 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_bind + 0x00000000 0x72 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_bind_if + 0x00000000 0x22 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_connect + 0x00000000 0x2e esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_disconnect + 0x00000000 0x1e esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_listen_with_backlog + 0x00000000 0x22 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_sendto + 0x00000000 0x4d esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_close + 0x00000000 0x12 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_accept + 0x00000000 0x10f esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_recv_udp_raw_netbuf + 0x00000000 0x22 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_recv_tcp_pbuf + 0x00000000 0x22 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.netconn_recv.str1.1 + 0x00000000 0xa esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_recv + 0x00000000 0x9a esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_shutdown + 0x00000000 0x29 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_gethostbyname_addrtype + 0x00000000 0x52 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.netconn_thread_init.str1.1 + 0x00000000 0x27 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_thread_init + 0x00000000 0x32 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_thread_cleanup + 0x00000000 0x16 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.__func__$0 + 0x00000000 0x14 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.__func__$2 + 0x00000000 0xd esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.__func__$4 + 0x00000000 0x24 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .xt.lit 0x00000000 0x100 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .xt.prop 0x00000000 0xb4c esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.lwip_netconn_do_dns_found + 0x00000000 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.recv_udp + 0x00000000 0x2c esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.setup_tcp + 0x00000000 0x24 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.lwip_netconn_do_connected + 0x00000000 0x20 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.recv_tcp + 0x00000000 0x2c esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.recv_raw + 0x00000000 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.lwip_netconn_do_newconn + 0x00000000 0x24 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.netconn_alloc + 0x00000000 0x1c esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.accept_function + 0x00000000 0x48 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.lwip_netconn_do_bind + 0x00000000 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.lwip_netconn_do_bind_if + 0x00000000 0x14 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.lwip_netconn_do_connect + 0x00000000 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.lwip_netconn_do_disconnect + 0x00000000 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.lwip_netconn_do_listen + 0x00000000 0x34 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.lwip_netconn_do_accepted + 0x00000000 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.lwip_netconn_do_gethostbyname + 0x00000000 0xc esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_dns_found + 0x00000000 0x2b esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.recv_udp + 0x00000000 0xd7 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.setup_tcp + 0x00000000 0x42 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.lwip_netconn_do_connected.str1.1 + 0x00000000 0x79 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_connected + 0x00000000 0xbb esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.recv_tcp.str1.1 + 0x00000000 0x77 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.recv_tcp + 0x00000000 0xa2 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.recv_raw + 0x00000000 0xa3 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_newconn + 0x00000000 0xcf esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.netconn_alloc.str1.1 + 0x00000000 0x26 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.netconn_alloc + 0x00000000 0x7a esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.accept_function.str1.1 + 0x00000000 0x27 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.accept_function + 0x00000000 0x117 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_bind + 0x00000000 0xab esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_bind_if + 0x00000000 0x56 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_connect + 0x00000000 0xae esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_disconnect + 0x00000000 0x27 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.lwip_netconn_do_listen.str1.1 + 0x00000000 0x2d esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_listen + 0x00000000 0x12a esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_accepted + 0x00000000 0x26 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_gethostbyname + 0x00000000 0x32 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$3 + 0x00000000 0x10 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$4 + 0x00000000 0x17 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$5 + 0x00000000 0x1a esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$9 + 0x00000000 0xe esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$10 + 0x00000000 0x9 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$17 + 0x00000000 0x9 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .xt.lit 0x00000000 0x118 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .xt.prop 0x00000000 0x162c esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(err.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(err.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(err.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/lwip/liblwip.a(err.c.obj) + .xt.prop 0x00000000 0x48 esp-idf/lwip/liblwip.a(err.c.obj) + .literal.netbuf_new + 0x00000000 0x8 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .literal.netbuf_ref + 0x00000000 0x8 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .literal.netbuf_chain + 0x00000000 0x8 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .text.netbuf_new + 0x00000000 0x1c esp-idf/lwip/liblwip.a(netbuf.c.obj) + .text.netbuf_ref + 0x00000000 0x3f esp-idf/lwip/liblwip.a(netbuf.c.obj) + .text.netbuf_chain + 0x00000000 0x2e esp-idf/lwip/liblwip.a(netbuf.c.obj) + .text.netbuf_data + 0x00000000 0x3a esp-idf/lwip/liblwip.a(netbuf.c.obj) + .text.netbuf_next + 0x00000000 0x20 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .text.netbuf_first + 0x00000000 0xb esp-idf/lwip/liblwip.a(netbuf.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .xt.prop 0x00000000 0x27c esp-idf/lwip/liblwip.a(netbuf.c.obj) + .literal.inet_cksum_pseudo_partial_base + 0x00000000 0x1c esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .literal.inet_chksum_pseudo_partial + 0x00000000 0x4 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .literal.ip6_chksum_pseudo_partial + 0x00000000 0x4 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .literal.ip_chksum_pseudo_partial + 0x00000000 0x8 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .rodata.inet_cksum_pseudo_partial_base.str1.1 + 0x00000000 0x3b esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .text.inet_cksum_pseudo_partial_base + 0x00000000 0xab esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .text.inet_chksum_pseudo_partial + 0x00000000 0x3e esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .text.ip6_chksum_pseudo_partial + 0x00000000 0x51 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .text.ip_chksum_pseudo_partial + 0x00000000 0x2d esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .rodata.__func__$0 + 0x00000000 0x1f esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .xt.lit 0x00000000 0x50 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .xt.prop 0x00000000 0x330 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .literal.esp_netif_action_join_ip6_multicast_group + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .literal.esp_netif_action_leave_ip6_multicast_group + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .literal.esp_netif_action_add_ip6_address + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .literal.esp_netif_action_remove_ip6_address + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .text 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .data 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .text.esp_netif_action_join_ip6_multicast_group + 0x00000000 0xf esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .text.esp_netif_action_leave_ip6_multicast_group + 0x00000000 0xf esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .text.esp_netif_action_add_ip6_address + 0x00000000 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .text.esp_netif_action_remove_ip6_address + 0x00000000 0xf esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .xt.lit 0x00000000 0x48 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .xt.prop 0x00000000 0x210 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .text 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .data 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .rodata._g_esp_netif_inherent_eth_config + 0x00000000 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .xt.prop 0x00000000 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .text 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .data 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .data._g_esp_netif_netstack_default_wifi_nan + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .data._g_esp_netif_netstack_default_eth + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .rodata.s_wifi_netif_config_nan + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .rodata.s_eth_netif_config + 0x00000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .xt.prop 0x00000000 0x60 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .literal.wlanif_init_nan + 0x00000000 0x4 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .text 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .data 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .text.wlanif_init_nan + 0x00000000 0x19 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .xt.prop 0x00000000 0x1d4 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .literal.ethernet_low_level_output + 0x00000000 0x18 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .literal.ethernetif_input + 0x00000000 0x10 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .literal.ethernetif_init + 0x00000000 0x24 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .text 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .data 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .text.ethernet_low_level_output + 0x00000000 0x73 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .text.ethernetif_input + 0x00000000 0x4f esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .rodata.ethernetif_init.str1.1 + 0x00000000 0x4a esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .text.ethernetif_init + 0x00000000 0x5b esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .rodata.__func__$0 + 0x00000000 0x10 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .debug_frame 0x00000000 0x58 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .debug_info 0x00000000 0xad5 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .debug_abbrev 0x00000000 0x2de esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .debug_loc 0x00000000 0x1f7 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .debug_aranges + 0x00000000 0x30 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .debug_ranges 0x00000000 0x20 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .debug_line 0x00000000 0x742 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .debug_str 0x00000000 0x796 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .xt.prop 0x00000000 0x138 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .text 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .data 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .xt.prop 0x00000000 0x78 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .literal.wpa_sendto_wrapper + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .literal.esp_supplicant_disable_pmk_caching + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .text.wpa_sendto_wrapper + 0x00000000 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .text.esp_supplicant_disable_pmk_caching + 0x00000000 0xd esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .xt.lit 0x00000000 0xa8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .xt.prop 0x00000000 0x5d0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .literal.esp_supplicant_str_to_mac + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .text.esp_supplicant_str_to_mac + 0x00000000 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .text.esp_rrm_send_neighbor_rep_request + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .text.esp_wnm_send_bss_transition_mgmt_query + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .xt.prop 0x00000000 0x228 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .literal.save_credentials_cb + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_build_ic_appie_wps_ar + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wpabuf_put_data + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_sm_ether_send$constprop$0 + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_stop_connection_timers$isra$0 + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_parse_scan_result + 0x00000000 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_set_status$isra$0 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wifi_wps_scan_done + 0x00000000 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_post + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_sm_rx_eapol + 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wifi_station_wps_timeout + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wifi_station_wps_msg_timeout + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wifi_station_wps_success + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wifi_station_wps_eapol_start_handle + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wifi_wps_scan + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wifi_station_wps_start + 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_sm_alloc_eapol + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_sm_free_eapol + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_send_eap_identity_rsp + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_send_frag_ack + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_enrollee_process_msg_frag + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_process_wps_mX_req + 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_send_wps_mX_rsp + 0x00000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_tx_start + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_start_pending + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_stop_process + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_sm_notify_deauth + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_add_discard_ap + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_finish + 0x00000000 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_start_msg_timer + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_sm_rx_eapol_internal + 0x00000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_set_default_factory + 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_set_factory_info + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_dev_deinit + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_dev_init + 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wifi_station_wps_timeout_internal + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wifi_station_wps_msg_timeout_internal + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wifi_station_wps_success_internal + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wifi_station_wps_eapol_start_handle_internal + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_init_cfg_pin + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_delete_timer + 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wifi_station_wps_deinit + 0x00000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_sm_get + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wifi_wps_scan_internal + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_task_deinit + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_task_init + 0x00000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_post_block + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.esp_wifi_wps_disable + 0x00000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_check_wifi_mode + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.esp_wifi_wps_enable + 0x00000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.is_wps_enabled + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wifi_wps_enable_internal + 0x00000000 0xf4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wifi_wps_disable_internal + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wps_task + 0x00000000 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.esp_wifi_wps_start + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_rf_band_cb + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.save_credentials_cb + 0x00000000 0xbd esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_build_ic_appie_wps_ar + 0x00000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wpabuf_put_data + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_sm_ether_send$constprop$0 + 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_stop_connection_timers$isra$0 + 0x00000000 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_parse_scan_result + 0x00000000 0x1e7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_set_status$isra$0 + 0x00000000 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wifi_wps_scan_done + 0x00000000 0x12a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_post + 0x00000000 0x9e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_sm_rx_eapol + 0x00000000 0x8d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wifi_station_wps_timeout + 0x00000000 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wifi_station_wps_msg_timeout + 0x00000000 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wifi_station_wps_success + 0x00000000 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wifi_station_wps_eapol_start_handle + 0x00000000 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wifi_wps_scan + 0x00000000 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wifi_station_wps_start + 0x00000000 0xc3 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_sm_alloc_eapol + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_sm_free_eapol + 0x00000000 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_send_eap_identity_rsp + 0x00000000 0x74 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_send_frag_ack + 0x00000000 0x62 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_enrollee_process_msg_frag + 0x00000000 0x89 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_process_wps_mX_req + 0x00000000 0xdc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_send_wps_mX_rsp + 0x00000000 0xb9 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .rodata.wps_tx_start.str1.1 + 0x00000000 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_tx_start + 0x00000000 0x52 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_start_pending + 0x00000000 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_stop_process + 0x00000000 0x7e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_sm_notify_deauth + 0x00000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_add_discard_ap + 0x00000000 0x56 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_finish + 0x00000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_start_msg_timer + 0x00000000 0x5b esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_sm_rx_eapol_internal + 0x00000000 0x16f esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .rodata.wps_set_default_factory.str1.1 + 0x00000000 0x23 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_set_default_factory + 0x00000000 0x67 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_set_factory_info + 0x00000000 0x72 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_dev_deinit + 0x00000000 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .rodata.wps_dev_init.str1.1 + 0x00000000 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_dev_init + 0x00000000 0x13e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wifi_station_wps_timeout_internal + 0x00000000 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wifi_station_wps_msg_timeout_internal + 0x00000000 0x81 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wifi_station_wps_success_internal + 0x00000000 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wifi_station_wps_eapol_start_handle_internal + 0x00000000 0xb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .rodata.wps_init_cfg_pin.str1.1 + 0x00000000 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_init_cfg_pin + 0x00000000 0x64 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_delete_timer + 0x00000000 0x5a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wifi_station_wps_deinit + 0x00000000 0x82 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_sm_get + 0x00000000 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wifi_wps_scan_internal + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_task_deinit + 0x00000000 0x89 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .rodata.wps_task_init.str1.1 + 0x00000000 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_task_init + 0x00000000 0xce esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_post_block + 0x00000000 0x35 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .rodata.esp_wifi_wps_disable.str1.1 + 0x00000000 0x1f esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.esp_wifi_wps_disable + 0x00000000 0xb7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_check_wifi_mode + 0x00000000 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.esp_wifi_wps_enable + 0x00000000 0xae esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.is_wps_enabled + 0x00000000 0xb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .rodata.wifi_wps_enable_internal.str1.1 + 0x00000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wifi_wps_enable_internal + 0x00000000 0x2a3 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wifi_wps_disable_internal + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.wps_task + 0x00000000 0x191 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .text.esp_wifi_wps_start + 0x00000000 0xad esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .bss.wps_buf$0 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .bss.s_factory_info + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .bss.gWpsSm 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .bss.s_wps_sig_cnt + 0x00000000 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .bss.s_wps_task_create_sem + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .bss.s_wps_data_lock + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .bss.s_wps_queue + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .bss.s_wps_task_hdl + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .bss.s_wps_rxq + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .bss.s_wps_enabled + 0x00000000 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .bss.s_wps_api_sem + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .bss.s_wps_api_lock + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .rodata.str1.1 + 0x00000000 0x6 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .data.wps_model_number + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .xt.lit 0x00000000 0x1c0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .xt.prop 0x00000000 0x1638 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.esp_wifi_unregister_wpa3_cb + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .text.esp_wifi_unregister_wpa3_cb + 0x00000000 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .xt.lit 0x00000000 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .xt.prop 0x00000000 0x714 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .xt.prop 0x00000000 0xa8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .xt.prop 0x00000000 0x2e8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .literal.crypto_rng_wrapper + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_get_group_byname + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_get_affine_coordinates + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_get_order + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_key_compare + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_debug_print_point + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_get_public_key + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_get_priv_key_der + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_get_group_from_key + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_get_private_key + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_get_publickey_buf + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_write_pubkey_der + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_get_key + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_get_curve_id + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ecdh + 0x00000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ecdsa_get_sign + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_edcsa_sign_verify + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_parse_subpub_key + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_is_ec_key + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_gen_keypair + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.mbedtls_pk_write_pubkey_formatted + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_pk_write_formatted_pubkey_der + 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.crypto_ec_write_pub_key + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_rng_wrapper + 0x00000000 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_get_group_byname + 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_get_affine_coordinates + 0x00000000 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_get_order + 0x00000000 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_key_compare + 0x00000000 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_debug_print_point + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_get_public_key + 0x00000000 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_get_priv_key_der + 0x00000000 0x59 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_get_group_from_key + 0x00000000 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_get_private_key + 0x00000000 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_get_publickey_buf + 0x00000000 0x4d esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_write_pubkey_der + 0x00000000 0x57 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_get_key + 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_get_curve_id + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ecdh + 0x00000000 0xda esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ecdsa_get_sign + 0x00000000 0x64 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_edcsa_sign_verify + 0x00000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_debug_print_ec_key + 0x00000000 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_parse_subpub_key + 0x00000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_is_ec_key + 0x00000000 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_gen_keypair + 0x00000000 0x53 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.mbedtls_pk_write_pubkey_formatted + 0x00000000 0x62 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_pk_write_formatted_pubkey_der + 0x00000000 0x103 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .text.crypto_ec_write_pub_key + 0x00000000 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .xt.lit 0x00000000 0x1a0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .xt.prop 0x00000000 0xf48 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .literal.eloop_cancel_timeout_one + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .literal.eloop_is_timeout_registered + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .literal.eloop_deplete_timeout + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .literal.eloop_replenish_timeout + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .text.eloop_cancel_timeout_one + 0x00000000 0x9d esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .text.eloop_is_timeout_registered + 0x00000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .text.eloop_deplete_timeout + 0x00000000 0xaa esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .text.eloop_replenish_timeout + 0x00000000 0xaa esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .xt.lit 0x00000000 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .xt.prop 0x00000000 0x5a0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .literal.hostapd_config_defaults + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .literal.hostapd_mac_comp + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .literal.hostapd_mac_comp_empty + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .literal.hostapd_wep_key_cmp + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .literal.hostapd_maclist_found + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text.hostapd_config_defaults_bss + 0x00000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text.hostapd_config_defaults + 0x00000000 0x6f esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text.hostapd_mac_comp + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text.hostapd_mac_comp_empty + 0x00000000 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text.hostapd_wep_key_cmp + 0x00000000 0x43 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text.hostapd_maclist_found + 0x00000000 0x49 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text.hostapd_rate_found + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .xt.lit 0x00000000 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .xt.prop 0x00000000 0x3b4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .literal.wpa_auth_pmksa_remove + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .literal.wpa_auth_sm_event + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.wpa_auth_for_each_sta + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.wpa_auth_sta_no_wpa + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.wpa_auth_pmksa_remove + 0x00000000 0x23 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.wpa_auth_sm_event + 0x00000000 0x9b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .xt.lit 0x00000000 0x148 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .xt.prop 0x00000000 0x14a0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .xt.prop 0x00000000 0x534 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .literal.pmksa_cache_auth_flush + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .literal.pmksa_cache_auth_list + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .text.pmksa_cache_auth_flush + 0x00000000 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .rodata.pmksa_cache_auth_list.str1.1 + 0x00000000 0x69 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .text.pmksa_cache_auth_list + 0x00000000 0xb1 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .xt.lit 0x00000000 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .xt.prop 0x00000000 0x4bc esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .literal.ap_sta_delayed_1x_auth_fail_cb + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .literal.hostapd_free_stas + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .literal.ap_sta_delayed_1x_auth_fail_disconnect + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .literal.ap_sta_pending_delayed_1x_auth_fail_disconnect + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .text.ap_sta_delayed_1x_auth_fail_cb + 0x00000000 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .text.ap_for_each_sta + 0x00000000 0x21 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .text.hostapd_free_stas + 0x00000000 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .text.ap_sta_delayed_1x_auth_fail_disconnect + 0x00000000 0x37 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .text.ap_sta_pending_delayed_1x_auth_fail_disconnect + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .xt.prop 0x00000000 0x270 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .xt.prop 0x00000000 0x5e8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .xt.prop 0x00000000 0x12c esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .literal.sae_state_txt + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .rodata.sae_state_txt.str1.1 + 0x00000000 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .text.sae_state_txt + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .xt.lit 0x00000000 0xf8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .xt.prop 0x00000000 0x123c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .text.dragonfly_suitable_group + 0x00000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .xt.prop 0x00000000 0x2c4 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .literal.wpa_cipher_txt + 0x00000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .literal.wpa_insert_pmkid + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .rodata.wpa_cipher_txt.str1.1 + 0x00000000 0x64 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .text.wpa_cipher_txt + 0x00000000 0x7d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .text.wpa_insert_pmkid + 0x00000000 0x141 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .text.wpa_cipher_rsc_len + 0x00000000 0x2d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .xt.lit 0x00000000 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .xt.prop 0x00000000 0xa44 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .xt.prop 0x00000000 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .literal.dh_init + 0x00000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .literal.dh_derive_shared + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .text.dh_init 0x00000000 0xab esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .text.dh_derive_shared + 0x00000000 0x5f esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .xt.prop 0x00000000 0x12c esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .literal.eap_wsc_build_frag_ack + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) + .text.eap_wsc_build_frag_ack + 0x00000000 0x3b esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) + .debug_frame 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) + .debug_info 0x00000000 0x3cb esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) + .debug_abbrev 0x00000000 0x1bf esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) + .debug_loc 0x00000000 0xc0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) + .debug_aranges + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) + .debug_ranges 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) + .debug_line 0x00000000 0x420 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) + .debug_str 0x00000000 0x52d esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) + .xt.prop 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) + .literal.eap_hdr_validate + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .literal.eap_msg_alloc + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .text.eap_hdr_len_valid + 0x00000000 0x46 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .text.eap_hdr_validate + 0x00000000 0x99 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .text.eap_msg_alloc + 0x00000000 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .text.eap_update_len + 0x00000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .text.eap_get_id + 0x00000000 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .text.eap_get_type + 0x00000000 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .debug_frame 0x00000000 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .debug_info 0x00000000 0xa5f esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .debug_abbrev 0x00000000 0x2bd esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .debug_loc 0x00000000 0x67f esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .debug_aranges + 0x00000000 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .debug_ranges 0x00000000 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .debug_line 0x00000000 0xa4e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .debug_str 0x00000000 0x620 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .xt.prop 0x00000000 0x18c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .literal.wpa_report_ie_mismatch + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .literal.wpa_sm_set_pmk + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .literal.wpa_supplicant_clr_countermeasures + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .literal.wpa_sta_is_cur_pmksa_set + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text.eapol_sm_notify_eap_success + 0x00000000 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text.wpa_report_ie_mismatch + 0x00000000 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text.wpa_sm_set_pmk + 0x00000000 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text.wpa_supplicant_clr_countermeasures + 0x00000000 0xd esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text.wpa_sta_is_cur_pmksa_set + 0x00000000 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .xt.lit 0x00000000 0x158 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .xt.prop 0x00000000 0x1428 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .xt.prop 0x00000000 0x3cc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .literal.wpabuf_resize + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .literal.wpabuf_alloc_ext_data + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .literal.wpabuf_dup + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .literal.wpabuf_concat + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .literal.wpabuf_printf + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .text.wpabuf_resize + 0x00000000 0x8a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .text.wpabuf_alloc_ext_data + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .text.wpabuf_dup + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .text.wpabuf_concat + 0x00000000 0x46 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .text.wpabuf_printf + 0x00000000 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .xt.prop 0x00000000 0x30c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .literal._wpa_snprintf_hex$constprop$0 + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .literal.wpa_snprintf_hex_uppercase + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .literal.wpa_snprintf_hex + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .rodata._wpa_snprintf_hex$constprop$0.str1.1 + 0x00000000 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .text._wpa_snprintf_hex$constprop$0 + 0x00000000 0x4d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .text.wpa_snprintf_hex_uppercase + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .text.wpa_snprintf_hex + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_frame 0x00000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_info 0x00000000 0x374 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_abbrev 0x00000000 0x174 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_loc 0x00000000 0x28d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_aranges + 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_ranges 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_line 0x00000000 0x43f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_str 0x00000000 0x31d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .xt.prop 0x00000000 0xc0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .literal.wps_init + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .literal.wps_deinit + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .literal.wps_process_msg + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .literal.wps_get_msg + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .literal.wps_is_selected_pbc_registrar + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .literal.wps_is_selected_pin_registrar + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .literal.wps_is_addr_authorized + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .literal.wps_ap_priority_compar + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .literal.wps_get_uuid_e + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .literal.wps_is_20 + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .literal.wps_build_assoc_req_ie + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .literal.wps_build_assoc_resp_ie + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .literal.wps_build_probe_req_ie + 0x00000000 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .literal.wps_attr_text + 0x00000000 0x5c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .text.is_selected_pin_registrar + 0x00000000 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .rodata.wps_init.str1.1 + 0x00000000 0x9 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .text.wps_init + 0x00000000 0xb2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .text.wps_deinit + 0x00000000 0x5b esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .text.wps_process_msg + 0x00000000 0x21 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .text.wps_get_msg + 0x00000000 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .text.wps_is_selected_pbc_registrar + 0x00000000 0x59 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .text.wps_is_selected_pin_registrar + 0x00000000 0x47 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .rodata.wps_is_addr_authorized.str1.1 + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .text.wps_is_addr_authorized + 0x00000000 0x9b esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .text.wps_ap_priority_compar + 0x00000000 0x77 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .text.wps_get_uuid_e + 0x00000000 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .text.wps_is_20 + 0x00000000 0x3d esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .text.wps_build_assoc_req_ie + 0x00000000 0x8e esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .text.wps_build_assoc_resp_ie + 0x00000000 0x8e esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .text.wps_build_probe_req_ie + 0x00000000 0x119 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .rodata.wps_attr_text.str1.1 + 0x00000000 0xf3 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .text.wps_attr_text + 0x00000000 0x1f6 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .debug_frame 0x00000000 0x178 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .debug_info 0x00000000 0x2a07 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .debug_abbrev 0x00000000 0x4d7 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .debug_loc 0x00000000 0x8ca esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .debug_aranges + 0x00000000 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .debug_ranges 0x00000000 0x98 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .debug_line 0x00000000 0x1859 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .debug_str 0x00000000 0x17be esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .xt.lit 0x00000000 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .xt.prop 0x00000000 0x60c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .literal.wpabuf_put_be16 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wpabuf_put_u8 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wpabuf_put_data$part$0 + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wpabuf_put_data + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_build_public_key + 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_build_req_type + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_build_resp_type + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_build_config_methods + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_build_uuid_e + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_build_dev_password_id + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_build_config_error + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_build_authenticator + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_build_version + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_build_wfa_ext + 0x00000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_build_msg_type + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_build_enrollee_nonce + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_build_registrar_nonce + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_build_auth_type_flags + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_build_encr_type_flags + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_build_conn_type_flags + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_build_assoc_state + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_build_key_wrap_auth + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_build_encr_settings + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_ie_encapsulate + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_build_mac_addr + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_build_rf_bands_attr + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_build_ap_channel + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wpabuf_put_be16 + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wpabuf_put_u8 + 0x00000000 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wpabuf_put_data$part$0 + 0x00000000 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wpabuf_put_data + 0x00000000 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_build_public_key + 0x00000000 0xe1 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_build_req_type + 0x00000000 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_build_resp_type + 0x00000000 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_build_config_methods + 0x00000000 0x2d esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_build_uuid_e + 0x00000000 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_build_dev_password_id + 0x00000000 0x2d esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_build_config_error + 0x00000000 0x2d esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_build_authenticator + 0x00000000 0x61 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_build_version + 0x00000000 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_build_wfa_ext + 0x00000000 0x103 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_build_msg_type + 0x00000000 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_build_enrollee_nonce + 0x00000000 0x2d esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_build_registrar_nonce + 0x00000000 0x2d esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_build_auth_type_flags + 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_build_encr_type_flags + 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_build_conn_type_flags + 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_build_assoc_state + 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_build_key_wrap_auth + 0x00000000 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_build_encr_settings + 0x00000000 0x92 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_ie_encapsulate + 0x00000000 0x79 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_build_mac_addr + 0x00000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_build_rf_bands_attr + 0x00000000 0x2d esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .text.wps_build_ap_channel + 0x00000000 0x2d esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .debug_frame 0x00000000 0x298 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .debug_info 0x00000000 0x2ce2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .debug_abbrev 0x00000000 0x4d9 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .debug_loc 0x00000000 0x975 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .debug_aranges + 0x00000000 0xf0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .debug_ranges 0x00000000 0x170 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .debug_line 0x00000000 0x18d5 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .debug_str 0x00000000 0x19c0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .xt.lit 0x00000000 0xd8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .xt.prop 0x00000000 0x624 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .literal.wps_parse_msg + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + .text.wps_parse_msg + 0x00000000 0x72f esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + .debug_frame 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + .debug_info 0x00000000 0xc83 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + .debug_abbrev 0x00000000 0x2c6 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + .debug_loc 0x00000000 0x770 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + .debug_aranges + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + .debug_ranges 0x00000000 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + .debug_line 0x00000000 0x1409 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + .debug_str 0x00000000 0xf4b esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + .xt.prop 0x00000000 0x6b4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + .literal.wps_kdf + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .literal.wps_derive_keys + 0x00000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .literal.wps_derive_psk + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .literal.wps_decrypt_encr_settings + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .literal.wps_pin_checksum + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .literal.wps_pin_valid + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .literal.wps_generate_pin + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .literal.wps_fail_event + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .literal.wps_success_event + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .literal.wps_pwd_auth_fail_event + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .literal.wps_dev_type_str2bin + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .literal.wps_dev_type_bin2str + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .literal.uuid_gen_mac_addr + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .literal.wps_config_methods_str2bin + 0x00000000 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .literal.wps_build_wsc_ack + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .literal.wps_build_wsc_nack + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text.wps_kdf 0x00000000 0x9f esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .rodata.wps_derive_keys.str1.1 + 0x00000000 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text.wps_derive_keys + 0x00000000 0xed esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text.wps_derive_psk + 0x00000000 0x59 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text.wps_decrypt_encr_settings + 0x00000000 0x7f esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text.wps_pin_checksum + 0x00000000 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text.wps_pin_valid + 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text.wps_generate_pin + 0x00000000 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text.wps_pin_str_valid + 0x00000000 0x31 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text.wps_fail_event + 0x00000000 0x3f esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text.wps_success_event + 0x00000000 0x2f esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text.wps_pwd_auth_fail_event + 0x00000000 0x33 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text.wps_pbc_overlap_event + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text.wps_selected_registrar_timeout_event + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text.wps_pbc_timeout_event + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text.wps_pbc_active_event + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text.wps_pbc_disable_event + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text.wps_dev_type_str2bin + 0x00000000 0x5c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .rodata.wps_dev_type_bin2str.str1.1 + 0x00000000 0xb esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text.wps_dev_type_bin2str + 0x00000000 0x76 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .rodata.uuid_gen_mac_addr.str1.1 + 0x00000000 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text.uuid_gen_mac_addr + 0x00000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .rodata.wps_config_methods_str2bin.str1.1 + 0x00000000 0xa3 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text.wps_config_methods_str2bin + 0x00000000 0x120 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text.wps_build_wsc_ack + 0x00000000 0x66 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .text.wps_build_wsc_nack + 0x00000000 0x76 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .debug_frame 0x00000000 0x220 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .debug_info 0x00000000 0x264e esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .debug_abbrev 0x00000000 0x521 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .debug_loc 0x00000000 0x83a esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .debug_aranges + 0x00000000 0xc8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .debug_ranges 0x00000000 0x108 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .debug_line 0x00000000 0x1a61 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .debug_str 0x00000000 0x118c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .xt.lit 0x00000000 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .xt.prop 0x00000000 0x690 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .literal.wpabuf_put_be16 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .literal.wpabuf_put_data + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .literal.wps_build_manufacturer$part$0 + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .literal.wps_build_manufacturer + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .literal.wps_build_model_name + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .literal.wps_build_model_number + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .literal.wps_build_serial_number + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .literal.wps_build_primary_dev_type + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .literal.wps_build_secondary_dev_type + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .literal.wps_build_req_dev_type + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .literal.wps_build_dev_name + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .literal.wps_build_device_attrs + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .literal.wps_build_os_version + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .literal.wps_build_vendor_ext_m1 + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .literal.wps_build_rf_bands + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .literal.wps_build_vendor_ext + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .literal.wps_build_application_ext + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .literal.wps_process_device_attrs + 0x00000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .literal.wps_process_os_version + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .literal.wps_device_data_free + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wpabuf_put_be16 + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wpabuf_put_data + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wps_build_manufacturer$part$0 + 0x00000000 0x1f esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wps_build_manufacturer + 0x00000000 0x47 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wps_build_model_name + 0x00000000 0x47 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wps_build_model_number + 0x00000000 0x47 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wps_build_serial_number + 0x00000000 0x47 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wps_build_primary_dev_type + 0x00000000 0x2d esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wps_build_secondary_dev_type + 0x00000000 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wps_build_req_dev_type + 0x00000000 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wps_build_dev_name + 0x00000000 0x47 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wps_build_device_attrs + 0x00000000 0x63 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wps_build_os_version + 0x00000000 0x49 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wps_build_vendor_ext_m1 + 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wps_build_rf_bands + 0x00000000 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wps_build_vendor_ext + 0x00000000 0x41 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wps_build_application_ext + 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wps_process_device_attrs + 0x00000000 0xc3 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wps_process_os_version + 0x00000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wps_process_vendor_ext_m1 + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wps_process_rf_bands + 0x00000000 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .text.wps_device_data_free + 0x00000000 0x49 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .debug_frame 0x00000000 0x220 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .debug_info 0x00000000 0x1d6d esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .debug_abbrev 0x00000000 0x3fb esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .debug_loc 0x00000000 0x8cb esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .debug_aranges + 0x00000000 0xc8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .debug_ranges 0x00000000 0xe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .debug_line 0x00000000 0x1322 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .debug_str 0x00000000 0x10e9 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .xt.lit 0x00000000 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .xt.prop 0x00000000 0x564 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .literal.wpabuf_put_be16 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .literal.wps_process_enrollee_nonce + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .literal.wps_enrollee_get_msg + 0x00000000 0x144 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .literal.wps_enrollee_process_msg + 0x00000000 0x130 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .text.wpabuf_put_be16 + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .text.wps_process_enrollee_nonce + 0x00000000 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .text.wps_enrollee_get_msg + 0x00000000 0x566 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .text.wps_enrollee_process_msg + 0x00000000 0x92a esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .debug_frame 0x00000000 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .debug_info 0x00000000 0x44e0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .debug_abbrev 0x00000000 0x559 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .debug_loc 0x00000000 0x13f7 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .debug_aranges + 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .debug_ranges 0x00000000 0x360 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .debug_line 0x00000000 0x2fe5 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .debug_str 0x00000000 0x21d8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .xt.prop 0x00000000 0x690 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .literal.sae_pk_base32_encode + 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .text.sae_pk_base32_encode + 0x00000000 0x11e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .xt.lit 0x00000000 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .xt.prop 0x00000000 0x498 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .literal.wpa2_api_lock + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.wpa2_api_unlock + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.wpa2_set_eap_state + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_client_enable_fn + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_wifi_sta_enterprise_disable + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.wpa2_post + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.wpa2_start_eapol + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.wpa2_ent_rx_eapol + 0x00000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.eap_peer_sm_deinit + 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.eap_peer_sm_init + 0x00000000 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.eap_client_disable_fn + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.eap_sm_send_eapol + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.eap_sm_process_request + 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.wpa2_task + 0x00000000 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_wifi_sta_enterprise_enable + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_set_certificate_and_key + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_clear_certificate_and_key + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_set_ca_cert + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_clear_ca_cert + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_set_identity + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_clear_identity + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_set_username + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_clear_username + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_set_password + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_clear_password + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_set_new_password + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_clear_new_password + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_set_disable_time_check + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.wifi_sta_get_enterprise_disable_time_check + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_get_disable_time_check + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_set_ttls_phase2_method + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_set_pac_file + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_set_fast_params + 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.esp_eap_client_use_default_cert_bundle + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.wpa2_api_lock + 0x00000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.wpa2_api_unlock + 0x00000000 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.wpa2_set_eap_state + 0x00000000 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_client_enable_fn + 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_wifi_sta_enterprise_disable + 0x00000000 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.wpa2_post + 0x00000000 0x97 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.wpa2_start_eapol + 0x00000000 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.wpa2_ent_rx_eapol + 0x00000000 0xa9 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .rodata.eap_peer_sm_deinit.str1.1 + 0x00000000 0xb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.eap_peer_sm_deinit + 0x00000000 0xd9 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .rodata.eap_peer_sm_init.str1.1 + 0x00000000 0x6 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.eap_peer_sm_init + 0x00000000 0xf6 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.eap_client_disable_fn + 0x00000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.eap_sm_send_eapol + 0x00000000 0x56 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .rodata.eap_sm_process_request.str1.1 + 0x00000000 0xb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.eap_sm_process_request + 0x00000000 0x1db esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .rodata.wpa2_task.str1.1 + 0x00000000 0xd esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.wpa2_task + 0x00000000 0x213 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_wifi_sta_enterprise_enable + 0x00000000 0x45 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_set_certificate_and_key + 0x00000000 0x46 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_clear_certificate_and_key + 0x00000000 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_set_ca_cert + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_clear_ca_cert + 0x00000000 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_set_identity + 0x00000000 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_clear_identity + 0x00000000 0x1b esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_set_username + 0x00000000 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_clear_username + 0x00000000 0x1b esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_set_password + 0x00000000 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_clear_password + 0x00000000 0x1b esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_set_new_password + 0x00000000 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_clear_new_password + 0x00000000 0x1b esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_set_disable_time_check + 0x00000000 0xd esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.wifi_sta_get_enterprise_disable_time_check + 0x00000000 0xb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_get_disable_time_check + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .rodata.esp_eap_client_set_ttls_phase2_method.str1.1 + 0x00000000 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_set_ttls_phase2_method + 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_set_suiteb_192bit_certification + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_set_pac_file + 0x00000000 0x5a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .rodata.esp_eap_client_set_fast_params.str1.1 + 0x00000000 0x47 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_set_fast_params + 0x00000000 0x9d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text.esp_eap_client_use_default_cert_bundle + 0x00000000 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .bss.s_wpa2_rxq + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .data.s_disable_time_check + 0x00000000 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .bss.s_wifi_wpa2_sync_sem + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .bss.s_wpa2_api_lock + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .data.s_wpa2_state + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .bss.s_wpa2_queue + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .bss.s_wpa2_task_hdl + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .bss.s_wpa2_data_lock + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .xt.lit 0x00000000 0x118 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .xt.prop 0x00000000 0xc60 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .text.wpa_sm_get_beacon_ie + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .xt.prop 0x00000000 0x240 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .literal.tls_key_derivation + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_mbedtls_read + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_mbedtls_write + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_mbedtls_cleanup$part$0 + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_init + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_deinit + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_connection_init + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_connection_deinit + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_connection_handshake + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_connection_encrypt + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_connection_decrypt + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_get_version + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_get_cipher + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_connection_set_params + 0x00000000 0x98 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_connection_export_key + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_connection_shutdown + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.tls_connection_get_random + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_key_derivation + 0x00000000 0x31 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_mbedtls_read + 0x00000000 0x4f esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_mbedtls_write + 0x00000000 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_mbedtls_cleanup$part$0 + 0x00000000 0x5a esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_init + 0x00000000 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_deinit + 0x00000000 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_init + 0x00000000 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_deinit + 0x00000000 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_get_errors + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_established + 0x00000000 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_global_set_verify + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_set_verify + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_handshake + 0x00000000 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_server_handshake + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_encrypt + 0x00000000 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_decrypt + 0x00000000 0x5b esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_resumed + 0x00000000 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_set_cipher_list + 0x00000000 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_get_version + 0x00000000 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_get_cipher + 0x00000000 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_enable_workaround + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_get_failed + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_get_read_alerts + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_get_write_alerts + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_set_params + 0x00000000 0x223 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_global_set_params + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_set_session_ticket_cb + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_export_key + 0x00000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_get_eap_fast_key + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_client_hello_ext + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_shutdown + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .text.tls_connection_get_random + 0x00000000 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .rodata.eap_ciphersuite_preference + 0x00000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .rodata.eap_mbedtls_x509_crt_profile + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .data.tls_sig_algs_for_eap + 0x00000000 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .bss.tls_instance_count + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .debug_frame 0x00000000 0x310 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .debug_info 0x00000000 0x4772 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .debug_abbrev 0x00000000 0x674 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .debug_loc 0x00000000 0xd71 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .debug_aranges + 0x00000000 0x118 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .debug_ranges 0x00000000 0x198 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .debug_line 0x00000000 0x1bb1 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .debug_str 0x00000000 0x3107 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .xt.lit 0x00000000 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .xt.prop 0x00000000 0x7e0 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .literal.crypto_bignum_bits + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .literal.crypto_bignum_to_string + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .literal.crypto_free_buffer + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .text.crypto_bignum_bits + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .text.crypto_bignum_to_string + 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .text.crypto_free_buffer + 0x00000000 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .xt.lit 0x00000000 0xc8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .xt.prop 0x00000000 0x588 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .literal.dbl 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .literal.aes_siv_encrypt + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .text.aes_siv_encrypt + 0x00000000 0xa5 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .xt.prop 0x00000000 0x1b0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .literal.dh5_init + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + .literal.dh5_derive_shared + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + .text.dh5_init + 0x00000000 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + .text.dh5_init_fixed + 0x00000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + .text.dh5_derive_shared + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + .text.dh5_free + 0x00000000 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + .debug_frame 0x00000000 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + .debug_info 0x00000000 0x33d esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + .debug_abbrev 0x00000000 0x1ab esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + .debug_loc 0x00000000 0x81 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + .debug_aranges + 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + .debug_ranges 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + .debug_line 0x00000000 0x398 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + .debug_str 0x00000000 0x371 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + .xt.prop 0x00000000 0xa8 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + .literal.WPA_GET_BE32 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .literal.get_vendor_ie + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .literal.mbo_add_ie + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .literal.ieee802_11_parse_candidate_list + 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .literal.ieee802_11_vendor_ie_concat + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .text.WPA_GET_BE32 + 0x00000000 0x2b esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .text.get_ie 0x00000000 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .text.ieee802_11_ie_count + 0x00000000 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .text.get_vendor_ie + 0x00000000 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .text.mbo_add_ie + 0x00000000 0x3f esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .rodata.ieee802_11_parse_candidate_list.str1.1 + 0x00000000 0xb esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .text.ieee802_11_parse_candidate_list + 0x00000000 0x12a esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .text.ieee802_11_vendor_ie_concat + 0x00000000 0xa1 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .text.ieee802_11_ext_capab + 0x00000000 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .text.get_operating_class + 0x00000000 0x1f esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .xt.prop 0x00000000 0x39c esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .literal.eap_peer_get_eap_method + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_get_methods + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_get_type + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_get_phase2_type + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_get_phase2_types + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_method_alloc + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_method_free + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_method_register + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_unregister_methods + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_sm_allowMethod + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_register_methods + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_sm_build_identity_resp + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_sm_build_nak + 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_config_init + 0x00000000 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_config_deinit + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_blob_init + 0x00000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_sm_get_method_name + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_sm_buildIdentity + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_peer_blob_deinit + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_sm_abort + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_set_config_blob + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_get_config_blob + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_get_eap_method + 0x00000000 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_get_methods + 0x00000000 0x1b esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_get_type + 0x00000000 0x2b esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_allowed_method + 0x00000000 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_get_phase2_type + 0x00000000 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_get_phase2_types + 0x00000000 0x85 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_method_alloc + 0x00000000 0x1b esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_method_free + 0x00000000 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_method_register + 0x00000000 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_unregister_methods + 0x00000000 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_allowMethod + 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_register_methods + 0x00000000 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_deinit_prev_method + 0x00000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_build_identity_resp + 0x00000000 0x63 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_build_nak + 0x00000000 0x17c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .rodata.eap_peer_config_init.str1.1 + 0x00000000 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_config_init + 0x00000000 0x197 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_config_deinit + 0x00000000 0x47 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .rodata.eap_peer_blob_init.str1.1 + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_blob_init + 0x00000000 0x106 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .rodata.eap_sm_get_method_name.str1.1 + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_get_method_name + 0x00000000 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_request_identity + 0x00000000 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_buildIdentity + 0x00000000 0x7e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_request_password + 0x00000000 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_request_new_password + 0x00000000 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_peer_blob_deinit + 0x00000000 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_sm_abort + 0x00000000 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_get_config + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_get_config_identity + 0x00000000 0xd esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_get_config_password + 0x00000000 0xd esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_get_config_password2 + 0x00000000 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_get_config_new_password + 0x00000000 0xd esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_set_config_blob + 0x00000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .text.eap_get_config_blob + 0x00000000 0x31 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.config_methods + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.eap_methods + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.esp_crt_bundle_attach_fn + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_default_cert_bundle + 0x00000000 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_suiteb_certification + 0x00000000 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_pac_file_len + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_pac_file + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_phase1_options + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_ttls_phase2_type + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_new_password_len + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_new_password + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_password_len + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_password + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_ca_cert_len + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_ca_cert + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_private_key_passwd_len + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_private_key_passwd + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_private_key_len + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_private_key + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_client_cert_len + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_client_cert + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_username_len + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_username + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_anonymous_identity_len + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .bss.g_wpa_anonymous_identity + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .debug_frame 0x00000000 0x310 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .debug_info 0x00000000 0x2a10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .debug_abbrev 0x00000000 0x5d4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .debug_loc 0x00000000 0x137a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .debug_aranges + 0x00000000 0x118 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .debug_ranges 0x00000000 0x1b8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .debug_line 0x00000000 0x270e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .debug_str 0x00000000 0x1a01 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .xt.lit 0x00000000 0xb0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .xt.prop 0x00000000 0xb4c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .literal.eap_mschapv2_getKey + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_mschapv2_deinit + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_mschapv2_init + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_mschapv2_process + 0x00000000 0x130 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_peer_mschapv2_register + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_isKeyAvailable + 0x00000000 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_getKey + 0x00000000 0x47 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_deinit + 0x00000000 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_init + 0x00000000 0x55 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .rodata.eap_mschapv2_process.str1.1 + 0x00000000 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_mschapv2_process + 0x00000000 0x6d7 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .rodata.eap_peer_mschapv2_register.str1.1 + 0x00000000 0x9 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .text.eap_peer_mschapv2_register + 0x00000000 0x43 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .debug_frame 0x00000000 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .debug_info 0x00000000 0x2886 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .debug_abbrev 0x00000000 0x4e8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .debug_loc 0x00000000 0x112a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .debug_aranges + 0x00000000 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .debug_ranges 0x00000000 0x148 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .debug_line 0x00000000 0x1d9a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .debug_str 0x00000000 0x114e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .xt.prop 0x00000000 0x3cc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .literal.eap_peap_get_session_id + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_init_for_reauth + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_deinit_for_reauth + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_has_reauth_data + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_get_status + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_getKey + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.wpabuf_put_u8 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.wpabuf_put_be16 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.peap_phase2_sufficient + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_deinit + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.wpabuf_put_data + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_init + 0x00000000 0x74 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_decrypt$constprop$0 + 0x00000000 0x124 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peap_process + 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.eap_peer_peap_register + 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_isKeyAvailable + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_get_session_id + 0x00000000 0x35 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_init_for_reauth + 0x00000000 0x6a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_deinit_for_reauth + 0x00000000 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_has_reauth_data + 0x00000000 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .rodata.eap_peap_get_status.str1.1 + 0x00000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_get_status + 0x00000000 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .rodata 0x00000000 0x2 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .rodata.eap_peap_getKey.str1.1 + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_getKey + 0x00000000 0x67 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.wpabuf_put_u8 + 0x00000000 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.wpabuf_put_be16 + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.peap_phase2_sufficient + 0x00000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_deinit + 0x00000000 0x52 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.wpabuf_put_data + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .rodata.eap_peap_init.str1.1 + 0x00000000 0xb7 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_init + 0x00000000 0x151 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .rodata.eap_peap_decrypt$constprop$0.str1.1 + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_decrypt$constprop$0 + 0x00000000 0x8e2 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .rodata.eap_peap_process.str1.1 + 0x00000000 0x2d esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peap_process + 0x00000000 0x187 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .rodata.eap_peer_peap_register.str1.1 + 0x00000000 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .text.eap_peer_peap_register + 0x00000000 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .debug_frame 0x00000000 0x190 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .debug_info 0x00000000 0x3753 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .debug_abbrev 0x00000000 0x560 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .debug_loc 0x00000000 0x1809 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .debug_aranges + 0x00000000 0x98 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .debug_ranges 0x00000000 0x2e0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .debug_line 0x00000000 0x329b esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .debug_str 0x00000000 0x1351 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .xt.lit 0x00000000 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .xt.prop 0x00000000 0x8dc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .literal.peap_prfplus + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .text.peap_prfplus + 0x00000000 0xb1 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .debug_frame 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .debug_info 0x00000000 0x348 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .debug_abbrev 0x00000000 0x164 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .debug_loc 0x00000000 0x1b3 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .debug_aranges + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .debug_ranges 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .debug_line 0x00000000 0x5a8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .debug_str 0x00000000 0x30d esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .xt.prop 0x00000000 0x84 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .literal.eap_tls_getKey + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .literal.eap_tls_process + 0x00000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .literal.eap_tls_deinit + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .literal.eap_tls_init + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .literal.eap_peer_tls_register + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .text.eap_tls_isKeyAvailable + 0x00000000 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .text.eap_tls_getKey + 0x00000000 0x2b esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .rodata.eap_tls_process.str1.1 + 0x00000000 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .text.eap_tls_process + 0x00000000 0xef esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .text.eap_tls_deinit + 0x00000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .text.eap_tls_init + 0x00000000 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .rodata.eap_peer_tls_register.str1.1 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .text.eap_peer_tls_register + 0x00000000 0x43 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .debug_frame 0x00000000 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .debug_info 0x00000000 0x1357 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .debug_abbrev 0x00000000 0x3ae esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .debug_loc 0x00000000 0x354 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .debug_aranges + 0x00000000 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .debug_ranges 0x00000000 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .debug_line 0x00000000 0xa8c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .debug_str 0x00000000 0xc76 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .xt.prop 0x00000000 0x1b0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .literal.eap_tls_check_blob + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_tls_msg_alloc$constprop$0 + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_ssl_init + 0x00000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_derive_key + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_derive_session_id + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_build_ack + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_status + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_process_init + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_reset_input + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_data_reassemble + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_reset_output + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_ssl_deinit + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_tls_process_output + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_process_helper + 0x00000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_reauth_init + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_decrypt + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_encrypt + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_select_phase2_methods + 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_peer_tls_phase2_nak + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_tls_check_blob + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_tls_msg_alloc$constprop$0 + 0x00000000 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .rodata.eap_peer_tls_ssl_init.str1.1 + 0x00000000 0x79 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_ssl_init + 0x00000000 0x208 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_derive_key + 0x00000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_derive_session_id + 0x00000000 0x56 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_build_ack + 0x00000000 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .rodata.eap_peer_tls_status.str1.1 + 0x00000000 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_status + 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_process_init + 0x00000000 0xbf esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_reset_input + 0x00000000 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_data_reassemble + 0x00000000 0x84 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_reset_output + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_ssl_deinit + 0x00000000 0x1f esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .rodata.eap_tls_process_output.str1.1 + 0x00000000 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_tls_process_output + 0x00000000 0xf4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_process_helper + 0x00000000 0xf1 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_reauth_init + 0x00000000 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_decrypt + 0x00000000 0x43 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_encrypt + 0x00000000 0x43 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_select_phase2_methods + 0x00000000 0xf9 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .text.eap_peer_tls_phase2_nak + 0x00000000 0x4f esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .debug_frame 0x00000000 0x1d8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .debug_info 0x00000000 0x2ae2 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .debug_abbrev 0x00000000 0x5b6 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .debug_loc 0x00000000 0x1304 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .debug_aranges + 0x00000000 0xb0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .debug_ranges 0x00000000 0x220 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .debug_line 0x00000000 0x22d5 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .debug_str 0x00000000 0x13a0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .xt.lit 0x00000000 0x98 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .xt.prop 0x00000000 0x774 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .literal.eap_ttls_get_emsk + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_get_session_id + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_getKey + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_init_for_reauth + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_deinit_for_reauth + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_has_reauth_data + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_get_status + 0x00000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_deinit + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_init + 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_avp_add$constprop$0 + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_phase2_request + 0x00000000 0x108 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_implicit_identity_request + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_decrypt + 0x00000000 0x64 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_ttls_process + 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.eap_peer_ttls_register + 0x00000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_isKeyAvailable + 0x00000000 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_get_emsk + 0x00000000 0x2b esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_get_session_id + 0x00000000 0x35 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_getKey + 0x00000000 0x35 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_init_for_reauth + 0x00000000 0x5f esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_deinit_for_reauth + 0x00000000 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_has_reauth_data + 0x00000000 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .rodata.eap_ttls_get_status.str1.1 + 0x00000000 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_get_status + 0x00000000 0x92 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_deinit + 0x00000000 0x56 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .rodata.eap_ttls_init.str1.1 + 0x00000000 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_init + 0x00000000 0xc1 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_avp_add$constprop$0 + 0x00000000 0x5c esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .rodata.eap_ttls_phase2_request.str1.1 + 0x00000000 0xb7 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_phase2_request + 0x00000000 0x667 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_implicit_identity_request + 0x00000000 0xb7 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_decrypt + 0x00000000 0x367 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .rodata.eap_ttls_process.str1.1 + 0x00000000 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_ttls_process + 0x00000000 0x167 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .rodata.eap_peer_ttls_register.str1.1 + 0x00000000 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .text.eap_peer_ttls_register + 0x00000000 0x64 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .debug_frame 0x00000000 0x190 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .debug_info 0x00000000 0x465f esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .debug_abbrev 0x00000000 0x568 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .debug_loc 0x00000000 0x2bb4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .debug_aranges + 0x00000000 0x98 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .debug_ranges 0x00000000 0x468 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .debug_line 0x00000000 0x3942 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .debug_str 0x00000000 0x1527 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .xt.lit 0x00000000 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .xt.prop 0x00000000 0x9b4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .literal.mschapv2_derive_response + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .literal.mschapv2_verify_auth_response + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .text.mschapv2_remove_domain + 0x00000000 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .text.mschapv2_derive_response + 0x00000000 0xd4 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .text.mschapv2_verify_auth_response + 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .debug_frame 0x00000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .debug_info 0x00000000 0x5a5 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .debug_abbrev 0x00000000 0x190 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .debug_loc 0x00000000 0x211 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .debug_aranges + 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .debug_ranges 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .debug_line 0x00000000 0x68c esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .debug_str 0x00000000 0x458 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .xt.prop 0x00000000 0x108 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .literal.pmksa_cache_list + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .rodata.pmksa_cache_list.str1.1 + 0x00000000 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .text.pmksa_cache_list + 0x00000000 0xb5 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .xt.prop 0x00000000 0x558 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .literal.wps_workaround_cred_key + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .literal.wps_process_cred_ssid$part$0 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .literal.wps_process_authenticator + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .literal.wps_process_key_wrap_auth + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .literal.wps_process_cred + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .literal.wps_process_ap_settings + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .text.wps_workaround_cred_key + 0x00000000 0x46 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .text.wps_process_cred_ssid$part$0 + 0x00000000 0x2b esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .text.wps_process_authenticator + 0x00000000 0x55 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .text.wps_process_key_wrap_auth + 0x00000000 0x45 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .text.wps_process_cred + 0x00000000 0xae esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .text.wps_process_ap_settings + 0x00000000 0xb6 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .debug_frame 0x00000000 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .debug_info 0x00000000 0x1c2f esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .debug_abbrev 0x00000000 0x3fe esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .debug_loc 0x00000000 0x5f4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .debug_aranges + 0x00000000 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .debug_ranges 0x00000000 0x98 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .debug_line 0x00000000 0xd2e esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .debug_str 0x00000000 0x1080 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .xt.prop 0x00000000 0x240 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .literal.challenge_hash + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.nt_password_hash + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.hash_nt_password_hash + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.challenge_response + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.generate_nt_response + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.generate_nt_response_pwhash + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.generate_authenticator_response_pwhash + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.generate_authenticator_response + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.nt_challenge_response + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.get_master_key + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.get_asymetric_start_key + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.encrypt_pw_block_with_password_hash + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.new_password_encrypted_with_old_nt_password_hash + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.nt_password_hash_encrypted_with_block + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.old_nt_password_hash_encrypted_with_new_nt_password_hash + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.utf8_to_ucs2$constprop$0 + 0x00000000 0x9d esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.challenge_hash + 0x00000000 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.nt_password_hash + 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.hash_nt_password_hash + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.challenge_response + 0x00000000 0x52 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.generate_nt_response + 0x00000000 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.generate_nt_response_pwhash + 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .rodata 0x00000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.generate_authenticator_response_pwhash + 0x00000000 0x89 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.generate_authenticator_response + 0x00000000 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.nt_challenge_response + 0x00000000 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.get_master_key + 0x00000000 0x43 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.get_asymetric_start_key + 0x00000000 0x69 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.encrypt_pw_block_with_password_hash + 0x00000000 0x7a esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.new_password_encrypted_with_old_nt_password_hash + 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.nt_password_hash_encrypted_with_block + 0x00000000 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .text.old_nt_password_hash_encrypted_with_new_nt_password_hash + 0x00000000 0x3f esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .rodata.shs_pad2$0 + 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .rodata.magic2$1 + 0x00000000 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .rodata.magic3$2 + 0x00000000 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .rodata.shs_pad1$3 + 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .rodata.magic1$4 + 0x00000000 0x1b esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .rodata.magic2$5 + 0x00000000 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .rodata.magic1$6 + 0x00000000 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .debug_frame 0x00000000 0x190 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .debug_info 0x00000000 0x130e esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .debug_abbrev 0x00000000 0x2d8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .debug_loc 0x00000000 0x854 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .debug_aranges + 0x00000000 0x98 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .debug_ranges 0x00000000 0x128 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .debug_line 0x00000000 0x1105 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .debug_str 0x00000000 0x6ce esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .xt.lit 0x00000000 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .xt.prop 0x00000000 0x510 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .literal.MD4Transform + 0x00000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .literal.MD4Update + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .literal.md4_vector + 0x00000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .text.MD4Transform + 0x00000000 0x456 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .text.MD4Update + 0x00000000 0x86 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .text.md4_vector + 0x00000000 0xd9 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .rodata.PADDING + 0x00000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .debug_frame 0x00000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .debug_info 0x00000000 0x796 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .debug_abbrev 0x00000000 0x26e esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .debug_loc 0x00000000 0x6e5 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .debug_aranges + 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .debug_ranges 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .debug_line 0x00000000 0xba3 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .debug_str 0x00000000 0xa04 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .xt.prop 0x00000000 0x108 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .literal.chap_md5 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .text.chap_md5 + 0x00000000 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .debug_frame 0x00000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .debug_info 0x00000000 0x1ca esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .debug_abbrev 0x00000000 0x10b esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .debug_loc 0x00000000 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .debug_aranges + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .debug_ranges 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .debug_line 0x00000000 0x35b esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .debug_str 0x00000000 0x2cf esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .xt.prop 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .literal.WPA_GET_BE32 + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .literal.desfunc + 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .literal.deskey + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .literal.des_encrypt + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .literal.des_key_setup + 0x00000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .literal.des_block_encrypt + 0x00000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .literal.des_block_decrypt + 0x00000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .literal.des3_key_setup + 0x00000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .literal.des3_encrypt + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .literal.des3_decrypt + 0x00000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .text 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .data 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .bss 0x00000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .text.WPA_GET_BE32 + 0x00000000 0x2b esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .text.WPA_PUT_BE32 + 0x00000000 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .text.desfunc 0x00000000 0x1de esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .text.deskey 0x00000000 0x193 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .text.des_encrypt + 0x00000000 0xa4 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .text.des_key_setup + 0x00000000 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .text.des_block_encrypt + 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .text.des_block_decrypt + 0x00000000 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .text.des3_key_setup + 0x00000000 0x62 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .text.des3_encrypt + 0x00000000 0x52 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .text.des3_decrypt + 0x00000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.SP8 0x00000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.SP7 0x00000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.SP6 0x00000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.SP5 0x00000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.SP4 0x00000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.SP3 0x00000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.SP2 0x00000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.SP1 0x00000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.pc2 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.totrot + 0x00000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.pc1 0x00000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.bigbyte + 0x00000000 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .rodata.bytebit + 0x00000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .debug_frame 0x00000000 0x118 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .debug_info 0x00000000 0xd6e esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .debug_abbrev 0x00000000 0x360 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .debug_loc 0x00000000 0xe6b esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .debug_aranges + 0x00000000 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .debug_ranges 0x00000000 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .debug_line 0x00000000 0x130a esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .debug_str 0x00000000 0xa99 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .comment 0x00000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .xt.lit 0x00000000 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .xt.prop 0x00000000 0x324 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .literal.esp_coex_internal_semphr_give_wrapper + 0x00000000 0x4 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .literal.esp_coex_internal_semphr_delete_wrapper + 0x00000000 0x8 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .iram1.9.literal + 0x00000000 0x4 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .iram1.8.literal + 0x00000000 0x4 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .literal.esp_coex_internal_semphr_create_wrapper + 0x00000000 0x8 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .literal.esp_coex_internal_semphr_take_wrapper + 0x00000000 0x4 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .text 0x00000000 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .data 0x00000000 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .iram1.7 0x00000000 0x12 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .text.esp_coex_internal_semphr_give_wrapper + 0x00000000 0x15 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .text.esp_coex_internal_semphr_delete_wrapper + 0x00000000 0x1a esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .iram1.9 0x00000000 0x11 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .iram1.8 0x00000000 0x14 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .text.esp_coex_internal_semphr_create_wrapper + 0x00000000 0x26 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .text.esp_coex_internal_semphr_take_wrapper + 0x00000000 0x11 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .data.g_coex_adapter_funcs + 0x00000000 0x58 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .xt.lit 0x00000000 0x98 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .xt.prop 0x00000000 0x414 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .literal.mbedtls_ct_uint_ge + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.ssl_check_ctr_renegotiate + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.ssl_build_record_nonce$constprop$0 + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.ssl_extract_add_data_from_record$isra$0 + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_check_record + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_encrypt_buf + 0x00000000 0x54 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_decrypt_buf + 0x00000000 0xa4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_fetch_input + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_handle_message_type + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_flush_output + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_write_record + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_write_handshake_msg_ext + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_finish_handshake_msg + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_write_change_cipher_spec + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_send_alert_message + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_send_fatal_handshake_failure + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_read_record + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_parse_change_cipher_spec + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_reset_in_out_pointers + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_read + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_write + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_close_notify + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_transform_free + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_set_inbound_transform + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_set_outbound_transform + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.mbedtls_ssl_handle_pending_alert + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ct_bool + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ct_uint_ge + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.ssl_check_ctr_renegotiate + 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.ssl_build_record_nonce$constprop$0 + 0x00000000 0x39 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.ssl_extract_add_data_from_record$isra$0 + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_set_timer + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_check_timer + 0x00000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_check_record + 0x00000000 0x1f esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_encrypt_buf + 0x00000000 0x314 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_decrypt_buf + 0x00000000 0x509 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_fetch_input + 0x00000000 0x99 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_start_handshake_msg + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_prepare_handshake_record + 0x00000000 0x3a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_update_handshake_status + 0x00000000 0x25 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_handle_message_type + 0x00000000 0x7d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_update_out_pointers + 0x00000000 0x23 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_flush_output + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_write_record + 0x00000000 0x12d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_write_handshake_msg_ext + 0x00000000 0xa2 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_finish_handshake_msg + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_write_change_cipher_spec + 0x00000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_send_alert_message + 0x00000000 0x47 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_send_fatal_handshake_failure + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_update_in_pointers + 0x00000000 0x1b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_read_record + 0x00000000 0x215 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_parse_change_cipher_spec + 0x00000000 0x59 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_reset_in_out_pointers + 0x00000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_get_bytes_avail + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_check_pending + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_get_record_expansion + 0x00000000 0x45 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_read + 0x00000000 0x1a0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_write + 0x00000000 0x7f esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_close_notify + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_transform_free + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_set_inbound_transform + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_set_outbound_transform + 0x00000000 0x17 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_write_version + 0x00000000 0x17 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_read_version + 0x00000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_handle_pending_alert + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .text.mbedtls_ssl_pend_fatal_alert + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .debug_frame 0x00000000 0x3d0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .debug_info 0x00000000 0x5937 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .debug_abbrev 0x00000000 0x6a0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .debug_loc 0x00000000 0x2d34 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .debug_aranges + 0x00000000 0x158 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .debug_ranges 0x00000000 0x598 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .debug_line 0x00000000 0x4b99 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .debug_str 0x00000000 0x2961 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .xt.lit 0x00000000 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .xt.prop 0x00000000 0xf30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .literal.ssl_key_cert_free + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_append_key_cert + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.tls_prf_generic + 0x00000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.tls_prf_sha256 + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.tls_prf_sha384 + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_update_checksum_sha256 + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_update_checksum_sha384 + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_clear_peer_cert + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_calc_finished_tls_generic + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_calc_finished_tls_sha256 + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_calc_finished_tls_sha384 + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_update_checksum_start + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_calc_verify_tls_legacy$isra$0 + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_calc_verify_tls_sha384 + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_calc_verify_tls_sha256 + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_tls_prf + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_extension_mask + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_optimize_checksum + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_add_hs_msg_to_checksum + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_reset_checksum + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_transform_init + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_session_init + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_init + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_session_reset_msg_layer + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_set_timer_cb + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_conf_own_cert + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_set_hs_own_cert + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_mode_from_ciphersuite + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_set_hostname + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_conf_alpn_protocols + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_conf_max_frag_len + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_conf_renegotiation_period + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_ciphersuite + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_version + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_input_max_frag_len + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_output_max_frag_len + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_max_out_record_payload + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_max_in_record_payload + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_session_save + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_handshake_step + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_handshake + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_handshake_free + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_session_free + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_session_copy + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_set_session + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_session + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_handshake_init + 0x00000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_setup + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_start_renegotiation + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_renegotiate + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_session_reset_int + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_session_reset + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_session_load + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_free + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_config_init + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_config_defaults + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_config_free + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_sig_from_pk + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_psa_curve_info_from_tls_id + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_ecp_group_id_from_tls_id + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_tls_id_from_ecp_group_id + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_check_curve + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_check_cert_usage + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_handshake_transcript + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_parse_sig_alg_ext + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_derive_keys + 0x00000000 0x8c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_set_calc_verify_md + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_write_certificate + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_parse_certificate + 0x00000000 0x54 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_handshake_wrapup_free_hs_transform + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_handshake_wrapup + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_write_finished + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_parse_finished + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_key_exchange_md_tls1_2 + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_tls12_get_preferred_hash_for_sig_alg + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_write_sig_alg_ext + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_parse_server_name_ext + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_parse_alpn_ext + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_write_alpn_ext + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_tls12_sig_alg_is_supported + 0x00000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_mfl_code_to_length + 0x00000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_key_cert_free + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_append_key_cert + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.tls_prf_generic + 0x00000000 0x177 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.tls_prf_sha256 + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.tls_prf_sha384 + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_update_checksum_sha256 + 0x00000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_update_checksum_sha384 + 0x00000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_clear_peer_cert + 0x00000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata.ssl_calc_finished_tls_generic.str1.1 + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_calc_finished_tls_generic + 0x00000000 0x8f esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_calc_finished_tls_sha256 + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_calc_finished_tls_sha384 + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_update_checksum_start + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_calc_verify_tls_legacy$isra$0 + 0x00000000 0x5e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_calc_verify_tls_sha384 + 0x00000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_calc_verify_tls_sha256 + 0x00000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_tls_prf + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_extension_id + 0x00000000 0x15d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_extension_mask + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_optimize_checksum + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_add_hs_hdr_to_checksum + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_add_hs_msg_to_checksum + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_reset_checksum + 0x00000000 0x8c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_transform_init + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_session_init + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_init + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_session_reset_msg_layer + 0x00000000 0x8a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_endpoint + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_transport + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_dtls_badmac_limit + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_authmode + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_verify + 0x00000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_rng + 0x00000000 0x9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_dbg + 0x00000000 0x9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_bio + 0x00000000 0xd esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_read_timeout + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_timer_cb + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_session_cache + 0x00000000 0xb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_ciphersuites + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_cert_profile + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_own_cert + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_ca_chain + 0x00000000 0xb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_hs_sni + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_hs_own_cert + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_hs_ca_chain + 0x00000000 0xe esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_hs_dn_hints + 0x00000000 0xb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_hs_authmode + 0x00000000 0xb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_verify + 0x00000000 0x9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_mode_from_transform + 0x00000000 0x47 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_mode_from_ciphersuite + 0x00000000 0x4c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_sig_algs + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_groups + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_hostname + 0x00000000 0x72 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_sni + 0x00000000 0x9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_alpn_protocols + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_alpn_protocol + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_cert_req_ca_list + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_encrypt_then_mac + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_extended_master_secret + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_max_frag_len + 0x00000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_legacy_renegotiation + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_renegotiation + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_renegotiation_enforced + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_renegotiation_period + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_session_tickets + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_session_tickets_cb + 0x00000000 0xe esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_export_keys_cb + 0x00000000 0xb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_verify_result + 0x00000000 0x17 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_ciphersuite_id_from_ssl + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_ciphersuite + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata.mbedtls_ssl_get_version.str1.1 + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_version + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_input_max_frag_len + 0x00000000 0x4c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_output_max_frag_len + 0x00000000 0x36 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_max_out_record_payload + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_max_in_record_payload + 0x00000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_peer_cert + 0x00000000 0xe esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_session_save + 0x00000000 0x1ec esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_handshake_step + 0x00000000 0x87 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_handshake + 0x00000000 0x2b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_handshake_free + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_session_free + 0x00000000 0x23 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_session_copy + 0x00000000 0x95 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_session + 0x00000000 0x54 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_session + 0x00000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_handshake_init + 0x00000000 0xed esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_setup + 0x00000000 0xb3 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_start_renegotiation + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_renegotiate + 0x00000000 0x75 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_session_reset_int + 0x00000000 0x6d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_session_reset + 0x00000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_session_load + 0x00000000 0x2ac esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_free + 0x00000000 0xba esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_config_init + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_config_defaults + 0x00000000 0x8f esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_config_free + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_sig_from_pk + 0x00000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_sig_from_pk_alg + 0x00000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_pk_alg_from_sig + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_md_alg_from_hash + 0x00000000 0x33 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_hash_from_md_alg + 0x00000000 0x3a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_check_curve_tls_id + 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_psa_curve_info_from_tls_id + 0x00000000 0x4a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_ecp_group_id_from_tls_id + 0x00000000 0x2d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_tls_id_from_ecp_group_id + 0x00000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_check_curve + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata.mbedtls_ssl_check_cert_usage.str1.1 + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_check_cert_usage + 0x00000000 0x83 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_handshake_transcript + 0x00000000 0xc1 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_parse_sig_alg_ext + 0x00000000 0xfb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata.mbedtls_ssl_derive_keys.str1.1 + 0x00000000 0x33 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_derive_keys + 0x00000000 0x3dd esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_calc_verify_md + 0x00000000 0x25 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_write_certificate + 0x00000000 0xfd esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_parse_certificate + 0x00000000 0x393 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_handshake_wrapup_free_hs_transform + 0x00000000 0x3b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_handshake_wrapup + 0x00000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_write_finished + 0x00000000 0x9f esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_parse_finished + 0x00000000 0xdf esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_key_exchange_md_tls1_2 + 0x00000000 0x86 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_tls12_get_preferred_hash_for_sig_alg + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_validate_ciphersuite + 0x00000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_write_sig_alg_ext + 0x00000000 0xc1 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_parse_server_name_ext + 0x00000000 0xb3 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_parse_alpn_ext + 0x00000000 0xe3 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_write_alpn_ext + 0x00000000 0x6e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata.tls_id_match_table + 0x00000000 0x9c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata.ssl_preset_suiteb_groups + 0x00000000 0x6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .data.ssl_tls12_preset_suiteb_sig_algs + 0x00000000 0x6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .data.ssl_tls12_preset_default_sig_algs + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata.ssl_preset_default_sig_algs + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata.ssl_preset_suiteb_ciphersuites + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata.ssl_preset_default_groups + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata.ssl_serialized_session_header + 0x00000000 0x5 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .debug_frame 0x00000000 0xbb0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .debug_info 0x00000000 0x951c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .debug_abbrev 0x00000000 0x73d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .debug_loc 0x00000000 0x5829 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .debug_aranges + 0x00000000 0x3f8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .debug_ranges 0x00000000 0xb38 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .debug_line 0x00000000 0x8fb1 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .debug_str 0x00000000 0x4616 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .xt.lit 0x00000000 0x278 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .xt.prop 0x00000000 0x2754 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_check_server_ecdh_params + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.mbedtls_ssl_tls12_write_client_hello_exts + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.mbedtls_ssl_handshake_client_step + 0x00000000 0x11c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.mbedtls_ssl_own_key + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.ssl_check_server_ecdh_params + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.mbedtls_ssl_tls12_write_client_hello_exts + 0x00000000 0x17f esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .text.mbedtls_ssl_handshake_client_step + 0x00000000 0xd3f esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .debug_frame 0x00000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .debug_info 0x00000000 0x4b59 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .debug_abbrev 0x00000000 0x521 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .debug_loc 0x00000000 0x2549 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .debug_aranges + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .debug_ranges 0x00000000 0x408 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .debug_line 0x00000000 0x3839 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .debug_str 0x00000000 0x271d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .xt.prop 0x00000000 0x84c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .literal.mbedtls_ssl_write_handshake_msg + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.ssl_ciphersuite_match + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.mbedtls_ssl_handshake_server_step + 0x00000000 0x180 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.mbedtls_ssl_own_key + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.mbedtls_ssl_write_handshake_msg + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.ssl_ciphersuite_match + 0x00000000 0x111 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.mbedtls_ct_uint_ne + 0x00000000 0x17 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .rodata 0x00000000 0x6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.mbedtls_ssl_handshake_server_step + 0x00000000 0x12b9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .text.mbedtls_ssl_conf_preference_order + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .debug_frame 0x00000000 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .debug_info 0x00000000 0x57e8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .debug_abbrev 0x00000000 0x57f esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .debug_loc 0x00000000 0x34e7 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .debug_aranges + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .debug_ranges 0x00000000 0x6d8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .debug_line 0x00000000 0x4b9d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .debug_str 0x00000000 0x2b11 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .xt.prop 0x00000000 0xa2c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .literal.mbedtls_ms_time + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .text.mbedtls_ms_time + 0x00000000 0x6b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .debug_frame 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .debug_info 0x00000000 0x1a8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .debug_abbrev 0x00000000 0xfb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .debug_loc 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .debug_aranges + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .debug_ranges 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .debug_line 0x00000000 0x34b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .debug_str 0x00000000 0x2f9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .xt.prop 0x00000000 0x54 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .literal.mbedtls_ssl_ciphersuite_from_string + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .literal.mbedtls_ssl_ciphersuite_from_id + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .literal.mbedtls_ssl_list_ciphersuites + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .literal.mbedtls_ssl_get_ciphersuite_name + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .literal.mbedtls_ssl_get_ciphersuite_id + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .literal.mbedtls_ssl_ciphersuite_get_cipher_key_bitlen + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .text.mbedtls_ssl_ciphersuite_from_string + 0x00000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .text.mbedtls_ssl_ciphersuite_from_id + 0x00000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .text.mbedtls_ssl_list_ciphersuites + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .rodata.mbedtls_ssl_get_ciphersuite_name.str1.1 + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .text.mbedtls_ssl_get_ciphersuite_name + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .text.mbedtls_ssl_get_ciphersuite_id + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .text.mbedtls_ssl_ciphersuite_get_cipher_key_bitlen + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .text.mbedtls_ssl_get_ciphersuite_sig_pk_alg + 0x00000000 0x39 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .text.mbedtls_ssl_get_ciphersuite_sig_alg + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .text.mbedtls_ssl_ciphersuite_uses_ec + 0x00000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .bss.supported_init + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .bss.supported_ciphersuites + 0x00000000 0xec esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .rodata.str1.1 + 0x00000000 0x82b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .rodata.ciphersuite_definitions + 0x00000000 0x3b0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .rodata.ciphersuite_preference + 0x00000000 0x2e8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .debug_frame 0x00000000 0xe8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .debug_info 0x00000000 0x94c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .debug_abbrev 0x00000000 0x276 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .debug_loc 0x00000000 0x291 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .debug_aranges + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .debug_ranges 0x00000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .debug_line 0x00000000 0x757 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .debug_str 0x00000000 0x1283 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .xt.prop 0x00000000 0x2dc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .literal.mbedtls_ssl_write_client_hello + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .text.mbedtls_ssl_write_client_hello + 0x00000000 0x4ea esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .debug_frame 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .debug_info 0x00000000 0x3300 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .debug_abbrev 0x00000000 0x4f0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .debug_loc 0x00000000 0x149f esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .debug_aranges + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .debug_ranges 0x00000000 0x308 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .debug_line 0x00000000 0x1bb8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .debug_str 0x00000000 0x1e98 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .xt.prop 0x00000000 0x174 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .literal.pk_hashlen_helper + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_setup_rsa_alt + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_verify_restartable + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_verify + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_sign_restartable + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_sign + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_get_name + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.import_pair_into_psa$constprop$0 + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.import_public_into_psa$constprop$0 + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_import_into_psa + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_verify_ext + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_get_psa_attributes + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_sign_ext + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.copy_from_psa + 0x00000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_copy_from_psa + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_copy_public_from_psa + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.pk_hashlen_helper + 0x00000000 0x23 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_setup_rsa_alt + 0x00000000 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_can_do + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_verify_restartable + 0x00000000 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_verify + 0x00000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_sign_restartable + 0x00000000 0x5e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_sign + 0x00000000 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_decrypt + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_encrypt + 0x00000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_check_pair + 0x00000000 0x72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_get_bitlen + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_debug + 0x00000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .rodata.mbedtls_pk_get_name.str1.1 + 0x00000000 0xb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_get_name + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.import_pair_into_psa$constprop$0 + 0x00000000 0x145 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.import_public_into_psa$constprop$0 + 0x00000000 0xed esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_import_into_psa + 0x00000000 0x45 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_verify_ext + 0x00000000 0xcb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_get_psa_attributes + 0x00000000 0x1f5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_sign_ext + 0x00000000 0xb4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.copy_from_psa + 0x00000000 0x249 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_copy_from_psa + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_copy_public_from_psa + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .xt.lit 0x00000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .xt.prop 0x00000000 0x93c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_ecc_set_key + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .literal.mbedtls_pk_ecc_set_pubkey_from_prv + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .text.mbedtls_pk_ecc_set_key + 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .text.mbedtls_pk_ecc_set_pubkey_from_prv + 0x00000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .xt.prop 0x00000000 0x12c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .literal.rsa_alt_free_wrap + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.rsa_alt_alloc_wrap + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.rsa_alt_check_pair + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.rsa_alt_can_do + 0x00000000 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.rsa_alt_get_bitlen + 0x00000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.rsa_alt_sign_wrap + 0x00000000 0x46 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.rsa_alt_decrypt_wrap + 0x00000000 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.rsa_alt_free_wrap + 0x00000000 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.rsa_alt_alloc_wrap + 0x00000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.rsa_alt_check_pair + 0x00000000 0x7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .rodata.mbedtls_rsa_alt_info + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .xt.lit 0x00000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .xt.prop 0x00000000 0x594 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.pk_parse_key_sec1_der + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.pk_parse_key_pkcs8_unencrypted_der + 0x00000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.mbedtls_pk_parse_key_pkcs8_encrypted_der + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.mbedtls_pk_parse_key + 0x00000000 0xac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.mbedtls_pk_load_file + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.mbedtls_pk_parse_keyfile + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.mbedtls_pk_parse_public_keyfile + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.pk_parse_key_sec1_der + 0x00000000 0x17f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.pk_parse_key_pkcs8_unencrypted_der + 0x00000000 0x1a6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .rodata.mbedtls_pk_parse_key_pkcs8_encrypted_der.str1.1 + 0x00000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.mbedtls_pk_parse_key_pkcs8_encrypted_der + 0x00000000 0x10e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .rodata.mbedtls_pk_parse_key.str1.1 + 0x00000000 0xfa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.mbedtls_pk_parse_key + 0x00000000 0x2cb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .rodata.mbedtls_pk_load_file.str1.1 + 0x00000000 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.mbedtls_pk_load_file + 0x00000000 0xc6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.mbedtls_pk_parse_keyfile + 0x00000000 0x53 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.mbedtls_pk_parse_public_keyfile + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .xt.lit 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .xt.prop 0x00000000 0x8ac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.mbedtls_pk_get_ec_group_id + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.pk_write_ec_param + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.pk_write_ec_pubkey + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.pk_write_ec_private + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.mbedtls_pk_write_pubkey + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.mbedtls_pk_write_pubkey_der + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.mbedtls_pk_write_key_der + 0x00000000 0x6c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.mbedtls_pk_write_pubkey_pem + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.mbedtls_pk_write_key_pem + 0x00000000 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.mbedtls_pk_get_ec_group_id + 0x00000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.pk_write_ec_param + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.pk_write_ec_pubkey + 0x00000000 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.pk_write_ec_private + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.mbedtls_pk_write_pubkey + 0x00000000 0x5b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.mbedtls_pk_write_pubkey_der + 0x00000000 0x11c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.mbedtls_pk_write_key_der + 0x00000000 0x23c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .rodata.mbedtls_pk_write_pubkey_pem.str1.1 + 0x00000000 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.mbedtls_pk_write_pubkey_pem + 0x00000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .rodata.mbedtls_pk_write_key_pem.str1.1 + 0x00000000 0xb6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.mbedtls_pk_write_key_pem + 0x00000000 0xb5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_frame 0x00000000 0xe8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_info 0x00000000 0x1927 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_abbrev 0x00000000 0x446 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_loc 0x00000000 0xfa5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_aranges + 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_ranges 0x00000000 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_line 0x00000000 0x1706 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_str 0x00000000 0x940 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .xt.lit 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .xt.prop 0x00000000 0x360 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.mbedtls_pem_write_buffer + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .text.mbedtls_pem_write_buffer + 0x00000000 0x118 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .xt.prop 0x00000000 0x3cc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .literal.pkcs12_fill_buffer + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .literal.mbedtls_pkcs12_derivation + 0x00000000 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .literal.mbedtls_pkcs12_pbe_ext + 0x00000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .text.pkcs12_fill_buffer + 0x00000000 0x23 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .text.mbedtls_pkcs12_derivation + 0x00000000 0x2a5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .text.mbedtls_pkcs12_pbe_ext + 0x00000000 0x250 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_frame 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_info 0x00000000 0x172c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_abbrev 0x00000000 0x4a5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_loc 0x00000000 0xe7f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_aranges + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_ranges 0x00000000 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_line 0x00000000 0xf4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_str 0x00000000 0x1343 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .xt.prop 0x00000000 0x2c4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .literal.mbedtls_pkcs5_pbkdf2_hmac_ext + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .literal.mbedtls_pkcs5_pbes2_ext + 0x00000000 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .literal.mbedtls_pkcs5_self_test + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .text.mbedtls_pkcs5_pbkdf2_hmac_ext + 0x00000000 0x195 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .rodata.mbedtls_pkcs5_pbes2_ext.str1.1 + 0x00000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .text.mbedtls_pkcs5_pbes2_ext + 0x00000000 0x28c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .rodata.mbedtls_pkcs5_self_test.str1.1 + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .text.mbedtls_pkcs5_self_test + 0x00000000 0x9b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .rodata.result_key_test_data + 0x00000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .rodata.key_len_test_data + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .rodata.it_cnt_test_data + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .rodata.salt_test_data + 0x00000000 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .rodata.slen_test_data + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .rodata.password_test_data + 0x00000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .rodata.plen_test_data + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_frame 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_info 0x00000000 0x1816 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_abbrev 0x00000000 0x47e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_loc 0x00000000 0x918 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_aranges + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_ranges 0x00000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_line 0x00000000 0xec8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_str 0x00000000 0x1469 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .xt.prop 0x00000000 0x294 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .literal.mbedtls_ct_base64_enc_char + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .literal.mbedtls_base64_encode + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .literal.mbedtls_base64_self_test + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .text.mbedtls_ct_base64_enc_char + 0x00000000 0x74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .text.mbedtls_base64_encode + 0x00000000 0x128 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .rodata.mbedtls_base64_self_test.str1.1 + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .text.mbedtls_base64_self_test + 0x00000000 0x8e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .rodata.base64_test_enc + 0x00000000 0x59 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .rodata.base64_test_dec + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .xt.prop 0x00000000 0x324 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .literal.x509_name_cmp + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_profile_check_key + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_crt_check_cn + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_info + 0x00000000 0xd8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_verify_info + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_check_extended_key_usage + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_is_revoked + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_parse_cn_inet_pton + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_crt_verify_restartable_ca_cb$constprop$0$isra$0 + 0x00000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_verify + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_verify_with_profile + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_verify_restartable + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_init + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_free + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_parse_der_internal + 0x00000000 0xf8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_parse_der_nocopy + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_parse_der_with_ext_cb + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_parse_der + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_parse + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_parse_file + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_parse_path + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_profile_check_pk_alg + 0x00000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_memcasecmp + 0x00000000 0x3a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_name_cmp + 0x00000000 0xb5 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_profile_check_key + 0x00000000 0x81 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_crt_check_cn + 0x00000000 0x73 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.mbedtls_x509_crt_info.str1.1 + 0x00000000 0x1d7 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_info + 0x00000000 0x44f esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.mbedtls_x509_crt_verify_info.str1.1 + 0x00000000 0x31 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_verify_info + 0x00000000 0x61 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_check_key_usage + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata 0x00000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_check_extended_key_usage + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_is_revoked + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_parse_cn_inet_pton + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.x509_crt_verify_restartable_ca_cb$constprop$0$isra$0.str1.1 + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_crt_verify_restartable_ca_cb$constprop$0$isra$0 + 0x00000000 0x4b6 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_verify + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_verify_with_profile + 0x00000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_verify_restartable + 0x00000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_init + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_free + 0x00000000 0x82 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_parse_der_internal + 0x00000000 0x96a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_parse_der_nocopy + 0x00000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_parse_der_with_ext_cb + 0x00000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_parse_der + 0x00000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.mbedtls_x509_crt_parse.str1.1 + 0x00000000 0x36 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_parse + 0x00000000 0xea esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_parse_file + 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.mbedtls_x509_crt_parse_path.str1.1 + 0x00000000 0x6 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_parse_path + 0x00000000 0xa6 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_get_ca_istrue + 0x00000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.str1.1 + 0x00000000 0x3e2 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.x509_crt_verify_strings + 0x00000000 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.mbedtls_x509_crt_profile_none + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.mbedtls_x509_crt_profile_suiteb + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.mbedtls_x509_crt_profile_next + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.mbedtls_x509_crt_profile_default + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .debug_frame 0x00000000 0x268 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .debug_info 0x00000000 0x55b0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .debug_abbrev 0x00000000 0x63c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .debug_loc 0x00000000 0x3d9a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .debug_aranges + 0x00000000 0xe0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .debug_ranges 0x00000000 0x548 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .debug_line 0x00000000 0x4ee5 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .debug_str 0x00000000 0x19c7 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .xt.lit 0x00000000 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .xt.prop 0x00000000 0x1098 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.md_type_to_string + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_get_serial + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_get_alg_null + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_get_alg + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_get_rsassa_pss_params + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_get_name + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_get_time + 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_get_sig + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_get_sig_alg + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_get_ext + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_dn_gets + 0x00000000 0x54 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_serial_gets + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_sig_alg_gets + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_key_size_helper + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_get_ns_cert_type + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_get_key_usage + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_parse_subject_alt_name + 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_free_subject_alt_name + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_get_subject_alt_name_ext + 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_get_subject_alt_name + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_info_subject_alt_name + 0x00000000 0x98 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_info_cert_type + 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_info_key_usage + 0x00000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .rodata.md_type_to_string.str1.1 + 0x00000000 0x25 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.md_type_to_string + 0x00000000 0x3b esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.x509_parse2_int + 0x00000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_get_serial + 0x00000000 0x4f esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_get_alg_null + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_get_alg + 0x00000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .rodata.mbedtls_x509_get_rsassa_pss_params.str1.1 + 0x00000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_get_rsassa_pss_params + 0x00000000 0x215 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_get_name + 0x00000000 0x142 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_get_time + 0x00000000 0x171 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_get_sig + 0x00000000 0x3f esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_get_sig_alg + 0x00000000 0x89 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_get_ext + 0x00000000 0x57 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .rodata.mbedtls_x509_dn_gets.str1.1 + 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_dn_gets + 0x00000000 0x29d esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .rodata.mbedtls_x509_serial_gets.str1.1 + 0x00000000 0xf esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_serial_gets + 0x00000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .rodata.mbedtls_x509_sig_alg_gets.str1.1 + 0x00000000 0x1b esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_sig_alg_gets + 0x00000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .rodata.mbedtls_x509_key_size_helper.str1.1 + 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_key_size_helper + 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_time_cmp + 0x00000000 0x57 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_time_is_past + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_time_is_future + 0x00000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_get_ns_cert_type + 0x00000000 0x45 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_get_key_usage + 0x00000000 0x4a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .rodata.mbedtls_x509_parse_subject_alt_name.str1.1 + 0x00000000 0x9 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_parse_subject_alt_name + 0x00000000 0x1f2 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_free_subject_alt_name + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_get_subject_alt_name_ext + 0x00000000 0xe2 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_get_subject_alt_name + 0x00000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .rodata.mbedtls_x509_info_subject_alt_name.str1.1 + 0x00000000 0x14e esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_info_subject_alt_name + 0x00000000 0x30c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .rodata.mbedtls_x509_info_cert_type.str1.1 + 0x00000000 0x66 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_info_cert_type + 0x00000000 0x121 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .rodata.mbedtls_x509_info_key_usage.str1.1 + 0x00000000 0x98 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_info_key_usage + 0x00000000 0x141 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .debug_frame 0x00000000 0x298 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .debug_info 0x00000000 0x30f5 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .debug_abbrev 0x00000000 0x528 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .debug_loc 0x00000000 0x27c1 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .debug_aranges + 0x00000000 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .debug_ranges 0x00000000 0x288 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .debug_line 0x00000000 0x462a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .debug_str 0x00000000 0xcfd esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .xt.lit 0x00000000 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .xt.prop 0x00000000 0xf60 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.misc_nvs_load + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .literal.misc_nvs_deinit + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .literal.misc_nvs_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .literal.misc_nvs_restore + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .text.misc_nvs_restore + 0x00000000 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .data.libcore_reversion_git + 0x00000000 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .xt.lit 0x00000000 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .xt.prop 0x00000000 0x144 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .literal.esp_crt_check_signature + 0x00000000 0x4c esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .literal.esp_crt_verify_callback + 0x00000000 0x30 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .literal.esp_crt_bundle_init + 0x00000000 0x40 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .literal.esp_crt_bundle_attach + 0x00000000 0x34 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .literal.esp_crt_bundle_detach + 0x00000000 0xc esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .literal.esp_crt_bundle_set + 0x00000000 0x4 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .rodata.esp_crt_check_signature.str1.1 + 0x00000000 0xe1 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .text.esp_crt_check_signature + 0x00000000 0xfb esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .rodata.esp_crt_verify_callback.str1.1 + 0x00000000 0x95 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .text.esp_crt_verify_callback + 0x00000000 0xfa esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .rodata.esp_crt_bundle_init.str1.1 + 0x00000000 0x12f esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .text.esp_crt_bundle_init + 0x00000000 0x120 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .rodata.esp_crt_bundle_attach.str1.1 + 0x00000000 0x30 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .text.esp_crt_bundle_attach + 0x00000000 0x6c esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .text.esp_crt_bundle_detach + 0x00000000 0x22 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .text.esp_crt_bundle_set + 0x00000000 0x11 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .bss.s_crt_bundle + 0x00000000 0xc esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .bss.s_dummy_crt + 0x00000000 0x198 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .debug_frame 0x00000000 0xa0 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .debug_info 0x00000000 0x1c3f esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .debug_abbrev 0x00000000 0x34e esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .debug_loc 0x00000000 0x65f esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .debug_aranges + 0x00000000 0x48 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .debug_ranges 0x00000000 0x78 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .debug_line 0x00000000 0xe1c esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .debug_str 0x00000000 0x16cf esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .xt.prop 0x00000000 0x2b8 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/libmbedtls.a(x509_crt_bundle.S.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/libmbedtls.a(x509_crt_bundle.S.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/libmbedtls.a(x509_crt_bundle.S.obj) + .rodata.embedded + 0x00000000 0xfa3d esp-idf/mbedtls/libmbedtls.a(x509_crt_bundle.S.obj) + .literal.bootloader_common_check_long_hold_gpio_level + 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_check_long_hold_gpio + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_label_search + 0x00000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_erase_part_type_data + 0x00000000 0x58 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_get_sha256_of_partition + 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_vddsdio_configure + 0x00000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .rodata.bootloader_common_check_long_hold_gpio_level.str1.1 + 0x00000000 0xf2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_check_long_hold_gpio_level + 0x00000000 0xe5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_check_long_hold_gpio + 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .rodata.bootloader_common_label_search.str1.1 + 0x00000000 0x3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_label_search + 0x00000000 0xab esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .rodata.bootloader_common_erase_part_type_data.str1.1 + 0x00000000 0x10e esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_erase_part_type_data + 0x00000000 0x124 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_get_sha256_of_partition + 0x00000000 0xa2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_vddsdio_configure + 0x00000000 0x37 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .rodata.__func__$0 + 0x00000000 0x2d esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_frame 0x00000000 0xa0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_info 0x00000000 0x1a49 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_abbrev 0x00000000 0x450 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_loc 0x00000000 0x58a esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_aranges + 0x00000000 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_ranges 0x00000000 0x118 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_line 0x00000000 0x1030 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_str 0x00000000 0x13aa esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .comment 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .xt.prop 0x00000000 0x270 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_ota_select_crc + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .literal.bootloader_common_ota_select_valid + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .literal.bootloader_common_check_chip_validity + 0x00000000 0x38 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .literal.bootloader_common_get_active_otadata + 0x00000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_ota_select_crc + 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_ota_select_invalid + 0x00000000 0x19 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_ota_select_valid + 0x00000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .rodata.bootloader_common_check_chip_validity.str1.1 + 0x00000000 0xe6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_check_chip_validity + 0x00000000 0x114 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_select_otadata + 0x00000000 0x49 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_get_active_otadata + 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_frame 0x00000000 0xa0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_info 0x00000000 0x9cb esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_abbrev 0x00000000 0x2c5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_loc 0x00000000 0x2bc esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_aranges + 0x00000000 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_ranges 0x00000000 0x68 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_line 0x00000000 0x87f esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_str 0x00000000 0xe97 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .comment 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .xt.prop 0x00000000 0x174 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .literal.log_invalid_app_partition + 0x00000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_common_read_otadata + 0x00000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_common_get_partition_description + 0x00000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_utility_load_partition_table + 0x00000000 0x84 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_utility_get_selected_boot_partition + 0x00000000 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_utility_load_boot_image + 0x00000000 0x34 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.unlikely.bootloader_reset + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.unlikely.bootloader_atexit + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_sha256_flash_contents + 0x00000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.log_invalid_app_partition.str1.1 + 0x00000000 0xaf esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.log_invalid_app_partition + 0x00000000 0x63 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.index_to_partition + 0x00000000 0x39 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_common_read_otadata.str1.1 + 0x00000000 0x91 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_common_read_otadata + 0x00000000 0x8b esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_common_get_partition_description + 0x00000000 0x81 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_load_partition_table.str1.1 + 0x00000000 0x1c5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_utility_load_partition_table + 0x00000000 0x18e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_get_selected_boot_partition.str1.1 + 0x00000000 0x112 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_utility_get_selected_boot_partition + 0x00000000 0xee esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_load_boot_image.str1.1 + 0x00000000 0x94 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_utility_load_boot_image + 0x00000000 0x9b esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.unlikely.bootloader_reset + 0x00000000 0x9 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.unlikely.bootloader_atexit + 0x00000000 0x9 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_sha256_hex_to_str + 0x00000000 0x5e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_debug_buffer + 0x00000000 0x5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_sha256_flash_contents + 0x00000000 0x82 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_frame 0x00000000 0x130 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_info 0x00000000 0x1abb esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_abbrev 0x00000000 0x54e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_loc 0x00000000 0x748 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_aranges + 0x00000000 0x78 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_ranges 0x00000000 0xf0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_line 0x00000000 0x19d8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_str 0x00000000 0x16e0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .comment 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .xt.lit 0x00000000 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .xt.prop 0x00000000 0x528 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.esp_partition_table_verify + 0x00000000 0x50 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .rodata.esp_partition_table_verify.str1.1 + 0x00000000 0x164 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .text.esp_partition_table_verify + 0x00000000 0x12b esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_frame 0x00000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_info 0x00000000 0x5a4 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_abbrev 0x00000000 0x1e8 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_loc 0x00000000 0x1bd esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_aranges + 0x00000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_ranges 0x00000000 0x60 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_line 0x00000000 0x740 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_str 0x00000000 0x4cb esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .comment 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .xt.prop 0x00000000 0xf0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .literal.process_checksum + 0x00000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.process_image_header + 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.process_appended_hash_and_sig$constprop$0 + 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.process_segments$constprop$0 + 0x00000000 0x74 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.image_load + 0x00000000 0x54 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_verify + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_get_metadata + 0x00000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_verify_bootloader_data + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_verify_bootloader + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_checksum.str1.1 + 0x00000000 0x4d esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_checksum + 0x00000000 0xad esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_image_header.str1.1 + 0x00000000 0x9d esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_image_header + 0x00000000 0xd7 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_appended_hash_and_sig$constprop$0.str1.1 + 0x00000000 0x4d esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_appended_hash_and_sig$constprop$0 + 0x00000000 0x5b esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_segments$constprop$0.str1.1 + 0x00000000 0x18d esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_segments$constprop$0 + 0x00000000 0x23f esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.image_load.str1.1 + 0x00000000 0xa2 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.image_load + 0x00000000 0x186 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.bootloader_load_image + 0x00000000 0x7 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.bootloader_load_image_no_verify + 0x00000000 0x7 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_verify + 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_get_metadata + 0x00000000 0x6e esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_verify_bootloader_data + 0x00000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_verify_bootloader + 0x00000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_get_flash_size + 0x00000000 0x4e esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_frame 0x00000000 0x130 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_info 0x00000000 0x1d3f esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_abbrev 0x00000000 0x455 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_loc 0x00000000 0x1207 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_aranges + 0x00000000 0x78 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_ranges 0x00000000 0x1c0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_line 0x00000000 0x1b2d esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_str 0x00000000 0x14a0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .comment 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .xt.lit 0x00000000 0x48 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .xt.prop 0x00000000 0x4f8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.bootloader_sha256_start + 0x00000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .literal.bootloader_sha256_data + 0x00000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .literal.bootloader_sha256_finish + 0x00000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text.bootloader_sha256_start + 0x00000000 0x2a esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.bootloader_sha256_data.str1.1 + 0x00000000 0x55 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text.bootloader_sha256_data + 0x00000000 0x32 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text.bootloader_sha256_finish + 0x00000000 0x42 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.__func__$0 + 0x00000000 0x19 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.__func__$1 + 0x00000000 0x17 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_frame 0x00000000 0x58 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_info 0x00000000 0x46d esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_abbrev 0x00000000 0x1a4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_loc 0x00000000 0xae esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_aranges + 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_ranges 0x00000000 0x38 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_line 0x00000000 0x506 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_str 0x00000000 0x44b esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .comment 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .xt.prop 0x00000000 0xf0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text 0x00000000 0x0 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .data 0x00000000 0x0 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .bss 0x00000000 0x0 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .xt.prop 0x00000000 0x54 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + .xt.lit 0x00000000 0x8 /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + .xt.prop 0x00000000 0xf0 /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + .xt.prop 0x00000000 0x24 /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .xt.prop 0x00000000 0xc /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + .xt.prop 0x00000000 0x24 /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + .xt.prop 0x00000000 0x24 /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + .text 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_opv.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_opv.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_opv.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_opv.o) + .xt.prop 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_opv.o) + .text 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_opvs.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_opvs.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_opvs.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_opvs.o) + .xt.prop 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_opvs.o) + .literal._ZSt15set_new_handlerPFvvE + 0x00000000 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_handler.o) + .text 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_handler.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_handler.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_handler.o) + .text._ZSt15set_new_handlerPFvvE + 0x00000000 0x1e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_handler.o) + .xt.lit 0x00000000 0x10 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_handler.o) + .xt.prop 0x00000000 0x78 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_handler.o) + .text 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opvnt.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opvnt.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opvnt.o) + .eh_frame 0x00000000 0x38 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opvnt.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opvnt.o) + .xt.prop 0x00000000 0x6c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opvnt.o) + .text 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_op.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_op.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_op.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_op.o) + .xt.prop 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_op.o) + .literal._ZSt18uncaught_exceptionv + 0x00000000 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_catch.o) + .literal._ZSt19uncaught_exceptionsv + 0x00000000 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_catch.o) + .text 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_catch.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_catch.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_catch.o) + .text.__cxa_get_exception_ptr + 0x00000000 0xa /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_catch.o) + .text._ZSt18uncaught_exceptionv + 0x00000000 0x14 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_catch.o) + .text._ZSt19uncaught_exceptionsv + 0x00000000 0xd /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_catch.o) + .eh_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_catch.o) + .xt.lit 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_catch.o) + .xt.prop 0x00000000 0x1a4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_catch.o) + .text 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) + .eh_frame 0x00000000 0x8c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) + .xt.lit 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) + .xt.prop 0x00000000 0x168 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) + .literal._ZSt13set_terminatePFvvE + 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) + .literal._ZN10__cxxabiv112__unexpectedEPFvvE + 0x00000000 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) + .literal._ZSt14set_unexpectedPFvvE + 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) + .literal._ZSt14get_unexpectedv + 0x00000000 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) + .literal._ZSt10unexpectedv + 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) + .text 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) + .text._ZSt13set_terminatePFvvE + 0x00000000 0x25 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) + .text._ZN10__cxxabiv112__unexpectedEPFvvE + 0x00000000 0xc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) + .text._ZSt14set_unexpectedPFvvE + 0x00000000 0x25 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) + .text._ZSt14get_unexpectedv + 0x00000000 0x10 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) + .text._ZSt10unexpectedv + 0x00000000 0xf /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) + .eh_frame 0x00000000 0x70 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) + .xt.lit 0x00000000 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) + .xt.prop 0x00000000 0x18c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) + .text 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_unex_handler.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_unex_handler.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_unex_handler.o) + .data._ZN10__cxxabiv120__unexpected_handlerE + 0x00000000 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_unex_handler.o) + .debug_info 0x00000000 0x3c5 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_unex_handler.o) + .debug_abbrev 0x00000000 0x27a /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_unex_handler.o) + .debug_aranges + 0x00000000 0x18 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_unex_handler.o) + .debug_line 0x00000000 0x7c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_unex_handler.o) + .debug_str 0x00000000 0x674 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_unex_handler.o) + .debug_line_str + 0x00000000 0x413 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_unex_handler.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_unex_handler.o) + .xt.prop 0x00000000 0xc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_unex_handler.o) + .text 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opv.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opv.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opv.o) + .eh_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opv.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opv.o) + .xt.prop 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opv.o) + .text 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_term_handler.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_term_handler.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_term_handler.o) + .xt.prop 0x00000000 0xc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_term_handler.o) + .group 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_op.o) + .group 0x00000000 0x14 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_op.o) + .group 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_op.o) + .group 0x00000000 0x14 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_op.o) + .text 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_op.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_op.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_op.o) + .eh_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_op.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_op.o) + .xt.prop 0x00000000 0x54 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_op.o) + .group 0x00000000 0x14 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) + .text 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) + .eh_frame 0x00000000 0x58 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) + .xt.lit 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) + .xt.prop 0x00000000 0x198 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) + .group 0x00000000 0x14 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(tinfo.o) + .literal._ZNSt9type_infoD0Ev + 0x00000000 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(tinfo.o) + .literal._ZNKSt9type_info10__do_catchEPKS_PPvj + 0x00000000 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(tinfo.o) + .text 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(tinfo.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(tinfo.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(tinfo.o) + .text._ZNKSt9type_info11__do_upcastEPKN10__cxxabiv117__class_type_infoEPPv + 0x00000000 0x7 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(tinfo.o) + .text._ZNSt9type_infoD0Ev + 0x00000000 0xf /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(tinfo.o) + .text._ZNKSt9type_info10__do_catchEPKS_PPvj + 0x00000000 0x32 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(tinfo.o) + .rodata._ZTVSt9type_info + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(tinfo.o) + .xt.lit 0x00000000 0x10 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(tinfo.o) + .xt.prop 0x00000000 0xcc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(tinfo.o) + .xt.prop._ZTVSt9type_info + 0x00000000 0xc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(tinfo.o) + .group 0x00000000 0x14 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(bad_alloc.o) + .text 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(bad_alloc.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(bad_alloc.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(bad_alloc.o) + .xt.lit 0x00000000 0x18 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(bad_alloc.o) + .xt.prop 0x00000000 0x90 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(bad_alloc.o) + .group 0x00000000 0x14 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) + .text 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) + .eh_frame 0x00000000 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) + .xt.lit 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) + .xt.prop 0x00000000 0x1b0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) + .text 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_ops.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_ops.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_ops.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_ops.o) + .xt.prop 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_ops.o) + .group 0x00000000 0x14 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .group 0x00000000 0x14 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .group 0x00000000 0x14 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .group 0x00000000 0x14 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .literal._ZNKSt9exception4whatEv + 0x00000000 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .literal._ZNKSt13bad_exception4whatEv + 0x00000000 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .literal._ZNSt9exceptionD0Ev + 0x00000000 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .literal._ZNSt13bad_exceptionD0Ev + 0x00000000 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .literal._ZN10__cxxabiv115__forced_unwindD0Ev + 0x00000000 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .literal._ZN10__cxxabiv119__foreign_exceptionD0Ev + 0x00000000 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .text 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .text._ZNSt13bad_exceptionD2Ev + 0x00000000 0x5 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .rodata._ZNKSt9exception4whatEv.str1.1 + 0x00000000 0xf /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .text._ZNKSt9exception4whatEv + 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .rodata._ZNKSt13bad_exception4whatEv.str1.1 + 0x00000000 0x13 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .text._ZNKSt13bad_exception4whatEv + 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .text._ZNSt9exceptionD0Ev + 0x00000000 0xf /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .text._ZNSt13bad_exceptionD0Ev + 0x00000000 0xf /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .text._ZN10__cxxabiv115__forced_unwindD2Ev + 0x00000000 0x5 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .text._ZN10__cxxabiv115__forced_unwindD0Ev + 0x00000000 0xf /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .text._ZN10__cxxabiv119__foreign_exceptionD2Ev + 0x00000000 0x5 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .text._ZN10__cxxabiv119__foreign_exceptionD0Ev + 0x00000000 0xf /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .text._ZGTtNKSt9exceptionD1Ev + 0x00000000 0x5 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .text._ZGTtNKSt13bad_exceptionD1Ev + 0x00000000 0x5 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .rodata._ZTVSt9exception + 0x00000000 0x14 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .rodata._ZTVSt13bad_exception + 0x00000000 0x14 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .rodata._ZTVN10__cxxabiv115__forced_unwindE + 0x00000000 0x14 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .rodata._ZTVN10__cxxabiv119__foreign_exceptionE + 0x00000000 0x14 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .xt.lit 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .xt.prop 0x00000000 0x1f8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .xt.prop._ZTVSt9exception + 0x00000000 0xc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .xt.prop._ZTVSt13bad_exception + 0x00000000 0xc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .xt.prop._ZTVN10__cxxabiv115__forced_unwindE + 0x00000000 0xc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .xt.prop._ZTVN10__cxxabiv119__foreign_exceptionE + 0x00000000 0xc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .text 0x00000000 0x18 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_ashldi3.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_ashldi3.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_ashldi3.o) + .debug_line 0x00000000 0x7b /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_ashldi3.o) + .debug_line_str + 0x00000000 0xc4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_ashldi3.o) + .debug_info 0x00000000 0x31 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_ashldi3.o) + .debug_abbrev 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_ashldi3.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_ashldi3.o) + .debug_str 0x00000000 0xda /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_ashldi3.o) + .xt.prop 0x00000000 0x3c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_ashldi3.o) + .text 0x00000000 0x18 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_lshrdi3.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_lshrdi3.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_lshrdi3.o) + .debug_line 0x00000000 0x7b /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_lshrdi3.o) + .debug_line_str + 0x00000000 0xc4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_lshrdi3.o) + .debug_info 0x00000000 0x31 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_lshrdi3.o) + .debug_abbrev 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_lshrdi3.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_lshrdi3.o) + .debug_str 0x00000000 0xda /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_lshrdi3.o) + .xt.prop 0x00000000 0x3c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_lshrdi3.o) + .text 0x00000000 0x14 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_bswapsi2.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_bswapsi2.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_bswapsi2.o) + .debug_line 0x00000000 0x6f /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_bswapsi2.o) + .debug_line_str + 0x00000000 0xc4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_bswapsi2.o) + .debug_info 0x00000000 0x31 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_bswapsi2.o) + .debug_abbrev 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_bswapsi2.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_bswapsi2.o) + .debug_str 0x00000000 0xdb /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_bswapsi2.o) + .xt.prop 0x00000000 0x24 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_bswapsi2.o) + .text 0x00000000 0x22 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_bswapdi2.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_bswapdi2.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_bswapdi2.o) + .debug_line 0x00000000 0x8d /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_bswapdi2.o) + .debug_line_str + 0x00000000 0xc4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_bswapdi2.o) + .debug_info 0x00000000 0x31 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_bswapdi2.o) + .debug_abbrev 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_bswapdi2.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_bswapdi2.o) + .debug_str 0x00000000 0xdb /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_bswapdi2.o) + .xt.prop 0x00000000 0x24 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_bswapdi2.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divsf3.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divsf3.o) + .xt.prop 0x00000000 0x24 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divsf3.o) + .text 0x00000000 0x85 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_floatdisf.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_floatdisf.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_floatdisf.o) + .debug_line 0x00000000 0x159 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_floatdisf.o) + .debug_line_str + 0x00000000 0xc5 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_floatdisf.o) + .debug_info 0x00000000 0x25 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_floatdisf.o) + .debug_abbrev 0x00000000 0x14 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_floatdisf.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_floatdisf.o) + .debug_str 0x00000000 0xd1 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_floatdisf.o) + .xt.prop 0x00000000 0x90 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_floatdisf.o) + .literal 0x00000000 0x10 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_addsubdf3.o) + .text 0x00000000 0x312 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_addsubdf3.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_addsubdf3.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_addsubdf3.o) + .debug_line 0x00000000 0x6b1 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_addsubdf3.o) + .debug_line_str + 0x00000000 0xc5 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_addsubdf3.o) + .debug_info 0x00000000 0x25 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_addsubdf3.o) + .debug_abbrev 0x00000000 0x14 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_addsubdf3.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_addsubdf3.o) + .debug_str 0x00000000 0xd1 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_addsubdf3.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_addsubdf3.o) + .xt.prop 0x00000000 0x420 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_addsubdf3.o) + .literal 0x00000000 0xc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_muldf3.o) + .text 0x00000000 0x1ff /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_muldf3.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_muldf3.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_muldf3.o) + .debug_line 0x00000000 0x478 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_muldf3.o) + .debug_line_str + 0x00000000 0xc5 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_muldf3.o) + .debug_info 0x00000000 0x25 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_muldf3.o) + .debug_abbrev 0x00000000 0x14 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_muldf3.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_muldf3.o) + .debug_str 0x00000000 0xd1 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_muldf3.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_muldf3.o) + .xt.prop 0x00000000 0x228 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_muldf3.o) + .literal 0x00000000 0x10 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divdf3.o) + .text 0x00000000 0x213 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divdf3.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divdf3.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divdf3.o) + .debug_line 0x00000000 0x4a1 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divdf3.o) + .debug_line_str + 0x00000000 0xc5 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divdf3.o) + .debug_info 0x00000000 0x25 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divdf3.o) + .debug_abbrev 0x00000000 0x14 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divdf3.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divdf3.o) + .debug_str 0x00000000 0xd1 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divdf3.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divdf3.o) + .xt.prop 0x00000000 0x264 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divdf3.o) + .literal 0x00000000 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_fixdfsi.o) + .text 0x00000000 0x4c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_fixdfsi.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_fixdfsi.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_fixdfsi.o) + .debug_line 0x00000000 0xe7 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_fixdfsi.o) + .debug_line_str + 0x00000000 0xc5 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_fixdfsi.o) + .debug_info 0x00000000 0x24 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_fixdfsi.o) + .debug_abbrev 0x00000000 0x14 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_fixdfsi.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_fixdfsi.o) + .debug_str 0x00000000 0xd1 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_fixdfsi.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_fixdfsi.o) + .xt.prop 0x00000000 0x6c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_fixdfsi.o) + .literal 0x00000000 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_fixunsdfsi.o) + .text 0x00000000 0x5d /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_fixunsdfsi.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_fixunsdfsi.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_fixunsdfsi.o) + .debug_line 0x00000000 0x117 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_fixunsdfsi.o) + .debug_line_str + 0x00000000 0xc5 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_fixunsdfsi.o) + .debug_info 0x00000000 0x24 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_fixunsdfsi.o) + .debug_abbrev 0x00000000 0x14 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_fixunsdfsi.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_fixunsdfsi.o) + .debug_str 0x00000000 0xd1 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_fixunsdfsi.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_fixunsdfsi.o) + .xt.prop 0x00000000 0xa8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_fixunsdfsi.o) + .text 0x00000000 0x3d /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_floatsidf.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_floatsidf.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_floatsidf.o) + .debug_line 0x00000000 0xc9 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_floatsidf.o) + .debug_line_str + 0x00000000 0xc5 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_floatsidf.o) + .debug_info 0x00000000 0x24 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_floatsidf.o) + .debug_abbrev 0x00000000 0x14 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_floatsidf.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_floatsidf.o) + .debug_str 0x00000000 0xd1 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_floatsidf.o) + .xt.prop 0x00000000 0x54 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_floatsidf.o) + .literal 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_extendsfdf2.o) + .text 0x00000000 0x62 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_extendsfdf2.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_extendsfdf2.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_extendsfdf2.o) + .debug_line 0x00000000 0x117 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_extendsfdf2.o) + .debug_line_str + 0x00000000 0xc5 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_extendsfdf2.o) + .debug_info 0x00000000 0x24 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_extendsfdf2.o) + .debug_abbrev 0x00000000 0x14 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_extendsfdf2.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_extendsfdf2.o) + .debug_str 0x00000000 0xd1 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_extendsfdf2.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_extendsfdf2.o) + .xt.prop 0x00000000 0x6c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_extendsfdf2.o) + .text 0x00000000 0x23 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_ffsdi2.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_ffsdi2.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_ffsdi2.o) + .debug_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_ffsdi2.o) + .debug_info 0x00000000 0x185 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_ffsdi2.o) + .debug_abbrev 0x00000000 0x10b /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_ffsdi2.o) + .debug_loclists + 0x00000000 0x7f /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_ffsdi2.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_ffsdi2.o) + .debug_line 0x00000000 0xe1 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_ffsdi2.o) + .debug_str 0x00000000 0x18a /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_ffsdi2.o) + .debug_line_str + 0x00000000 0x17c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_ffsdi2.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_ffsdi2.o) + .xt.prop 0x00000000 0x48 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_ffsdi2.o) + .literal 0x00000000 0xc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_popcountsi2.o) + .text 0x00000000 0x37 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_popcountsi2.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_popcountsi2.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_popcountsi2.o) + .debug_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_popcountsi2.o) + .debug_info 0x00000000 0xce /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_popcountsi2.o) + .debug_abbrev 0x00000000 0x68 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_popcountsi2.o) + .debug_loclists + 0x00000000 0xf5 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_popcountsi2.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_popcountsi2.o) + .debug_line 0x00000000 0xef /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_popcountsi2.o) + .debug_str 0x00000000 0x160 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_popcountsi2.o) + .debug_line_str + 0x00000000 0x17c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_popcountsi2.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_popcountsi2.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_popcountsi2.o) + .xt.prop 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_popcountsi2.o) + .text 0x00000000 0x24a /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divdi3.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divdi3.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divdi3.o) + .debug_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divdi3.o) + .eh_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divdi3.o) + .debug_info 0x00000000 0x693 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divdi3.o) + .debug_abbrev 0x00000000 0x1b4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divdi3.o) + .debug_loclists + 0x00000000 0x4f1 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divdi3.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divdi3.o) + .debug_rnglists + 0x00000000 0x4c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divdi3.o) + .debug_line 0x00000000 0x9ae /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divdi3.o) + .debug_str 0x00000000 0x1d5 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divdi3.o) + .debug_line_str + 0x00000000 0x17c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divdi3.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divdi3.o) + .xt.prop 0x00000000 0x180 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divdi3.o) + .text 0x00000000 0x28b /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_moddi3.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_moddi3.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_moddi3.o) + .debug_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_moddi3.o) + .eh_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_moddi3.o) + .debug_info 0x00000000 0x71a /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_moddi3.o) + .debug_abbrev 0x00000000 0x1a6 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_moddi3.o) + .debug_loclists + 0x00000000 0x479 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_moddi3.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_moddi3.o) + .debug_rnglists + 0x00000000 0x41 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_moddi3.o) + .debug_line 0x00000000 0xb54 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_moddi3.o) + .debug_str 0x00000000 0x1d5 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_moddi3.o) + .debug_line_str + 0x00000000 0x17c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_moddi3.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_moddi3.o) + .xt.prop 0x00000000 0x144 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_moddi3.o) + .text 0x00000000 0x20c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_udivdi3.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_udivdi3.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_udivdi3.o) + .debug_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_udivdi3.o) + .eh_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_udivdi3.o) + .debug_info 0x00000000 0x64c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_udivdi3.o) + .debug_abbrev 0x00000000 0x196 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_udivdi3.o) + .debug_loclists + 0x00000000 0x4a6 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_udivdi3.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_udivdi3.o) + .debug_rnglists + 0x00000000 0x4f /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_udivdi3.o) + .debug_line 0x00000000 0x8e9 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_udivdi3.o) + .debug_str 0x00000000 0x1d6 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_udivdi3.o) + .debug_line_str + 0x00000000 0x17c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_udivdi3.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_udivdi3.o) + .xt.prop 0x00000000 0x168 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_udivdi3.o) + .text 0x00000000 0x21b /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_umoddi3.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_umoddi3.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_umoddi3.o) + .debug_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_umoddi3.o) + .eh_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_umoddi3.o) + .debug_info 0x00000000 0x6c7 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_umoddi3.o) + .debug_abbrev 0x00000000 0x1a7 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_umoddi3.o) + .debug_loclists + 0x00000000 0x496 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_umoddi3.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_umoddi3.o) + .debug_rnglists + 0x00000000 0x33 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_umoddi3.o) + .debug_line 0x00000000 0x9af /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_umoddi3.o) + .debug_str 0x00000000 0x1d6 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_umoddi3.o) + .debug_line_str + 0x00000000 0x17c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_umoddi3.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_umoddi3.o) + .xt.prop 0x00000000 0x108 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_umoddi3.o) + .literal.unlikely.abort_expect_void + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.unlikely.abort_expect_void_and_return + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.unlikely.forward_abort_uw_ctx + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.unlikely.__wrap__Unwind_SetEnableExceptionFdeSorting + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.unlikely.__wrap___register_frame_info_bases + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.unlikely.__wrap___register_frame_info + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.unlikely.__wrap___register_frame_info_table_bases + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.unlikely.__wrap___register_frame_info_table + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.unlikely.__wrap__Unwind_Find_FDE + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.unlikely.__wrap__Unwind_GetGR + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.unlikely.__wrap__Unwind_GetCFA + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.unlikely.__wrap__Unwind_SetIP + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.unlikely.__wrap__Unwind_SetGR + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.unlikely.__wrap__Unwind_GetIPInfo + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.unlikely._Z17__frame_state_forPvP11frame_state + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.unlikely.__wrap__Unwind_Resume + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.unlikely.__wrap__Unwind_RaiseException + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.unlikely.__wrap__Unwind_ForcedUnwind + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.unlikely.__wrap__Unwind_Backtrace + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .data 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .bss 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.unlikely.abort_expect_void + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.unlikely.abort_expect_void_and_return + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.unlikely.forward_abort_uw_ctx + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.unlikely.__wrap__Unwind_SetEnableExceptionFdeSorting + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.unlikely.__wrap___register_frame_info_bases + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.unlikely.__wrap___register_frame_info + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.unlikely.__wrap___register_frame_info_table_bases + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.unlikely.__wrap___register_frame_info_table + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.unlikely.__wrap__Unwind_Find_FDE + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.unlikely.__wrap__Unwind_GetGR + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.unlikely.__wrap__Unwind_GetCFA + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.unlikely.__wrap__Unwind_SetIP + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.unlikely.__wrap__Unwind_SetGR + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.unlikely.__wrap__Unwind_GetIPInfo + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.unlikely._Z17__frame_state_forPvP11frame_state + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.unlikely.__wrap__Unwind_Resume + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.unlikely.__wrap__Unwind_RaiseException + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.unlikely.__wrap__Unwind_ForcedUnwind + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.unlikely.__wrap__Unwind_Backtrace + 0x00000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .xt.lit 0x00000000 0xb8 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .xt.prop 0x00000000 0x33c esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .iram1.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .phyiram.0.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.ram_set_pbus_mem + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.ram_start_tx_tone + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.ram_bb_tx_ht20_cen + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.ram_phy_get_noisefloor + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.ram_check_noise_floor + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .phyiram.1.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.ram_bb_bss_bw_40_en + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.bt_txdc_cal$part$5 + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.bt_txiq_cal$part$6 + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.spur_cal$part$8 + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .phyiram.2.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .phyiram.3.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .phyiram.5.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .phyiram.6.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .phyiram.4.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .phyiram.7.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .phyiram.8.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .phyiram.9.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .phyiram.10.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .phyiram.11.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .phyiram.13.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .phyiram.15.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .phyiram.14.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .phyiram.16.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .phyiram.18.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.ram_gen_rx_gain_table + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.set_rx_gain_cal_iq + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.rx_chan_dc_sort + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.set_rx_gain_cal_dc + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.wr_rx_gain_mem + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.set_rx_gain_testchip_70 + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.bt_correct_bbgain + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.bt_index_to_bb + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.bt_bb_to_index + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.bt_txdc_cal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.get_bbgain_db + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.bt_txiq_cal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.force_bttx_gain + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_bttx_low_power + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_wifitx_low_power + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.set_tx_gain_table_bt + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.set_tx_dig_gain + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.spur_cal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.set_chanfreq + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.set_chanfreq_nomac + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.chip_sleep_prot_en + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.chip_sleep_prot_dis + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.chip_v7_rxmax_ext_dig + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.chip_v7_rxmax_ext + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.set_cca + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.set_rx_sense + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.read_hw_noisefloor + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_get_txpwr_param + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.noise_check_loop + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.noise_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.target_power_backoff + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_set_rfrx_dcap + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.chip_v7_set_chan_misc + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.set_rx_gain_table + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.rx_blocking_set + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.rx_gain_level + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.txiq_cal_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_rx11blr_cfg + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.analog_gain_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_param_set + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.bb_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.wifi_rifs_mode_en + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_chan_filt_set + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_get_tx_rate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.register_chipv7_phy_init_param + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.uart_wait_idle + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_get_romfunc_addr + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_byte_to_word + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.rf_cal_data_recovery + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.rf_cal_data_backup + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_get_rf_cal_version + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_rfcal_data_check + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.i2cmst_reg_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.fe_reg_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .phyiram.12.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .phyiram.17.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.get_phy_version_str + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_version_print + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.get_iq_value + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_rfcal_data_check_value + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.tx_cont_en + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.tx_cont_dis + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.tx_cont_cfg + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_get_tx_pwr + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_init_pwr_print + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_get_rx_freq + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.reset_rf_dig + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.register_chipv7_phy + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_set_most_tpw + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_get_most_tpw + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_rx_sense_set + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.ant_dft_cfg + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.ant_wifitx_cfg + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.ant_wifirx_cfg + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.ant_bttx_cfg + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.ant_btrx_cfg + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.ant_tx_cfg + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.ant_rx_cfg + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.esp_tx_state_out + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_chan_dump_cfg + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.chan14_mic_cfg + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.chan14_mic_enable + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_get_adc_rand + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_enable_low_rate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_disable_low_rate + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_close_pa + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.btpwr_backoff + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_dig_reg_backup + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.get_iq_est_snr_1 + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.freq_offset_get_pwr_1 + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.get_spur4m_pwr + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.rx_spur_cal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.bt_opt_write_mem + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.bt_rx_spur_opt + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_init_param_set + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.pbus_print + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_reg_check + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_i2c_check + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_cal_print + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .phyiram.5 0x00000000 0x67 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .phyiram.11 0x00000000 0x42 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.bt_correct_bbgain + 0x00000000 0xb4 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.bt_bb_to_index + 0x00000000 0x1a /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.bt_txdc_cal + 0x00000000 0x1b /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.get_bbgain_db + 0x00000000 0x26 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.bt_txiq_cal + 0x00000000 0x1b /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.force_bttx_gain + 0x00000000 0xa7 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_bttx_low_power + 0x00000000 0xb1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_wifitx_low_power + 0x00000000 0x17a /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.set_tx_dig_gain + 0x00000000 0x48 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.spur_cal + 0x00000000 0x28 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.set_chanfreq + 0x00000000 0x2f /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.chip_v7_rxmax_ext_dig + 0x00000000 0x5 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.chip_v7_rxmax_ext + 0x00000000 0x5 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.set_cca 0x00000000 0x8e /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_get_txpwr_param + 0x00000000 0x81 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.noise_init + 0x00000000 0x12b /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.target_power_backoff + 0x00000000 0x37 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_set_rfrx_dcap + 0x00000000 0xf0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.rx_blocking_set + 0x00000000 0x2e /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.rx_gain_level + 0x00000000 0x18 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_rx11blr_cfg + 0x00000000 0x7d /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_param_set + 0x00000000 0x4f /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.wifi_rifs_mode_en + 0x00000000 0x2b /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_chan_filt_set + 0x00000000 0x10d /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_get_tx_rate + 0x00000000 0x19 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.uart_wait_idle + 0x00000000 0x3a /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_version_print + 0x00000000 0x32 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.get_iq_value + 0x00000000 0x2a /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.tx_cont_en + 0x00000000 0x8e /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.tx_cont_dis + 0x00000000 0x52 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.tx_cont_cfg + 0x00000000 0x21 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_get_tx_pwr + 0x00000000 0x59 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_init_pwr_print + 0x00000000 0x152 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_get_rx_freq + 0x00000000 0x51 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_get_most_tpw + 0x00000000 0x2b /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_rx_sense_set + 0x00000000 0xa8 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.ant_dft_cfg + 0x00000000 0x33 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.ant_wifitx_cfg + 0x00000000 0x5a /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.ant_wifirx_cfg + 0x00000000 0xc8 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.ant_bttx_cfg + 0x00000000 0x53 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.ant_btrx_cfg + 0x00000000 0xc7 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.ant_tx_cfg + 0x00000000 0x22 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.ant_rx_cfg + 0x00000000 0x2e /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.esp_tx_state_out + 0x00000000 0xfd /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_chan_dump_cfg + 0x00000000 0xb8 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.chan14_mic_enable + 0x00000000 0x71 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_get_adc_rand + 0x00000000 0x19a /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_close_pa + 0x00000000 0xb6 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.btpwr_backoff + 0x00000000 0x74 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_dig_reg_backup + 0x00000000 0x3c9 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.get_iq_est_snr_1 + 0x00000000 0x4ce /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.freq_offset_get_pwr_1 + 0x00000000 0x214 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.get_spur4m_pwr + 0x00000000 0xfd /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.rx_spur_cal + 0x00000000 0xe9 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.bt_opt_write_mem + 0x00000000 0x91 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.bt_rx_spur_opt + 0x00000000 0x187 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.pbus_print + 0x00000000 0xdf /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_reg_check + 0x00000000 0x275 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_i2c_check + 0x00000000 0x1ed /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_cal_print + 0x00000000 0x592 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .rodata.CSWTCH$373 + 0x00000000 0xb /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .rodata.CSWTCH$372 + 0x00000000 0x16 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .rodata.CSWTCH$371 + 0x00000000 0x16 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .bss.rfrx_dcap_enable + 0x00000000 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .bss.rfrx_vga_lna_dcap + 0x00000000 0x2 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .bss.bt_txpwr_backoff + 0x00000000 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .bss.chan14_mic_flag + 0x00000000 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .bss.bt_mode_wifibb + 0x00000000 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .bss.rxmax_ext_level + 0x00000000 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .bss.noise_timeout_flag + 0x00000000 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .data.noise_array + 0x00000000 0x6 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .xt.lit 0x00000000 0x458 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .xt.prop 0x00000000 0x3b4c /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.RFChannelSel + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + .literal.phy_change_channel + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + .literal.phy_change_channel_nomac + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + .text.RFChannelSel + 0x00000000 0x15 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + .text.phy_change_channel + 0x00000000 0x17 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + .xt.lit 0x00000000 0x18 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + .xt.prop 0x00000000 0x90 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + .iram1.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .phyiram.24.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .phyiram.25.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .phyiram.26.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .phyiram.27.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .phyiram.28.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.ram_index_to_txbbgain + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.ram_txdc_cal_v70 + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.txcal_debuge_mode + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.ram_txcal_work_mode + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.ram_get_fm_sar_dout + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.ram_txiq_get_mis_pwr + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.ram_txiq_cover + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.rfcal_txiq + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.ram_iq_est_enable + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.ram_iq_est_disable + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.ram_dc_iq_est + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.ram_pbus_rx_dco_cal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.rxdc_est_min + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.pbus_rx_dco_cal_1step + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.rc_cal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.ram_rfcal_txcap + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.tx_cap_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.ram_meas_tone_pwr_db + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.ram_rfcal_pwrctrl + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.ram_tx_pwr_backoff + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.cal_rf_ana_gain + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.tx_pwctrl_init_cal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.tx_pwctrl_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.bt_tx_pwctrl_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.set_bt_chan_cal_interp + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.phy_set_bt_dig_gain + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.ram_phy_get_vdd33 + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.txpwr_offset + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.phy_get_bb_freqoffset + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.phy_pwdet_always_en + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.dpd_scale_set + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .phyiram.24 0x00000000 0x20 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .text.set_bt_chan_cal_interp + 0x00000000 0xcc /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .text.phy_set_bt_dig_gain + 0x00000000 0x40 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .text.phy_get_bb_freqoffset + 0x00000000 0x85 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .text.phy_pwdet_always_en + 0x00000000 0x6f /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .text.dpd_scale_set + 0x00000000 0x5 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .xt.lit 0x00000000 0x1a8 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .xt.prop 0x00000000 0x2178 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .phyiram.23.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .iram1.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .phyiram.21.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .phyiram.22.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .phyiram.19.literal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.ram_pbus_force_mode + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.ram_pbus_xpd_tx_on + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.i2c_xtal_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.i2c_rfpll_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.ram_rfpll_reset + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.ram_restart_cal + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.ram_wait_rfpll_cal_end + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.ram_rfpll_set_freq + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.get_lna_vga_dcap_val + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.chip_v7_rxmax_ext_ana + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.phy_freq_correct_opt + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.chip_v7_adc_wr_dly + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.i2c_bbtop_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.i2c_rftx_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.i2c_bias_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.rfpll_1p2_opt + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.get_rf_freq_cap + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.correct_rfpll_offset + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.wr_rf_freq_mem + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.write_freq_mem_all + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.get_rfrx_dcap_bt + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.get_rf_freq_init$part$2 + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.get_rf_freq_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.bt_i2c_read_set + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.bt_i2c_read_mem + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.bt_i2c_write_set + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.bt_i2c_set_wifi_data + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.phy_wifi_pll_track + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.phy_bt_pll_track + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.tsens_read_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.phy_bt_power_track + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.bt_get_i2c_data + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.write_wifi_chan_data + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.set_chan_freq_hw_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.rf_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.check_rfpll_write_i2c + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.phy_hw_set_freq_enable + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.set_chan_freq_sw_start + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.set_channel_rfpll_freq + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.chip_v7_set_chan_nomac + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.chip_v7_set_chan + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.chip_v7_set_chan_offset + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.chip_v7_set_chan_ana + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.freq_write_wifi_chan + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.phy_unforce_chan + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.phy_force_chan + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.phy_set_wifi_mode_only + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .text.i2c_xtal_init + 0x00000000 0x30 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .text.i2c_rfpll_init + 0x00000000 0x90 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .text.chip_v7_adc_wr_dly + 0x00000000 0x62 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .text.i2c_bbtop_init + 0x00000000 0x58 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .text.i2c_rftx_init + 0x00000000 0x78 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .text.get_rf_freq_init + 0x00000000 0x1b /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .text.bt_i2c_read_set + 0x00000000 0xf1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .text.bt_i2c_read_mem + 0x00000000 0xc3 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .text.phy_wifi_pll_track + 0x00000000 0x12 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .text.phy_bt_pll_track + 0x00000000 0x1c /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .text.phy_bt_power_track + 0x00000000 0x1c /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .text.check_rfpll_write_i2c + 0x00000000 0x86 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .text.phy_hw_set_freq_enable + 0x00000000 0xfe /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .text.freq_write_wifi_chan + 0x00000000 0xd4 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .text.phy_unforce_chan + 0x00000000 0x56 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .text.phy_force_chan + 0x00000000 0x36 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .text.phy_set_wifi_mode_only + 0x00000000 0x12 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .bss.flag$5259 + 0x00000000 0x4 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .xt.lit 0x00000000 0x250 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .xt.prop 0x00000000 0x1c80 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.BT_tx_8m_enable + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .literal.BT_tx_if_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .literal.BT_init_rx_filters + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .literal.bt_dgmixer_fstep_250k + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .literal.bt_rfoffset_en + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .literal.bt_bb_init_cmplx + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .literal.bt_bb_init_cmplx_reg + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .literal.rw_coex_on + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .literal.force_bt_mode + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .literal.force_wifi_mode + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .literal.unforce_wifi_mode + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .literal.coex_bt_high_prio + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .literal.bt_rxfilt + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .literal.bt_txfilt + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .literal.bt_cmplx_hq_wr + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .literal.bt_cmplx_lq_wr + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .literal.bt_cmplx_hq_re + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .literal.bt_cmplx_lq_re + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .text.BT_tx_8m_enable + 0x00000000 0x7f /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .text.BT_tx_if_init + 0x00000000 0x94 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .text.BT_init_rx_filters + 0x00000000 0x2bc /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .text.bt_dgmixer_fstep_250k + 0x00000000 0x2a /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .text.bt_rfoffset_en + 0x00000000 0x47 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .text.bt_bb_init_cmplx + 0x00000000 0x26e /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .text.bt_bb_init_cmplx_reg + 0x00000000 0xb5 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .text.rw_coex_on + 0x00000000 0x90 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .text.force_bt_mode + 0x00000000 0xf6 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .text.force_wifi_mode + 0x00000000 0xb2 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .text.unforce_wifi_mode + 0x00000000 0x96 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .text.bt_rxfilt + 0x00000000 0x22 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .text.bt_txfilt + 0x00000000 0x22 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .text.bt_cmplx_hq_wr + 0x00000000 0x22 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .text.bt_cmplx_lq_wr + 0x00000000 0x22 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .text.bt_cmplx_hq_re + 0x00000000 0x21 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .text.bt_cmplx_lq_re + 0x00000000 0x21 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .bss.force_wifi_mode_on + 0x00000000 0x4 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .xt.lit 0x00000000 0x90 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .xt.prop 0x00000000 0x3e4 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .literal.temprature_sens_read + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .literal.dac_out + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .literal.touch_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .literal.touch_read + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .literal.vdd33_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .literal.get_vdd33 + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .literal.adc1_read_test + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .literal.adc1_amp_read_full + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .literal.hall_sens_read_full + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .literal.hall_sens_amp_read_full + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .literal.adc2_read_test + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .literal.adc1_pad_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .literal.adc1_read + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .literal.adc1_amp_read + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .literal.hall_sens_read + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .literal.hall_sens_amp_read + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .literal.adc2_pad_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .literal.adc2_read + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .literal.adc_pad_int + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .literal.adc_pad_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .literal.dac_pad_init + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .text.dac_out 0x00000000 0x249 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .text.touch_init + 0x00000000 0xc2 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .text.touch_read + 0x00000000 0xba /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .text.vdd33_init + 0x00000000 0x13b /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .text.get_vdd33 + 0x00000000 0x100 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .text.adc1_read_test + 0x00000000 0x1f0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .text.adc1_amp_read_full + 0x00000000 0x213 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .text.hall_sens_read_full + 0x00000000 0xfd /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .text.hall_sens_amp_read_full + 0x00000000 0xe8 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .text.adc2_read_test + 0x00000000 0x1b0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .text.adc1_pad_init + 0x00000000 0x6e /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .text.adc1_read + 0x00000000 0x28 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .text.adc1_amp_read + 0x00000000 0x29 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .text.hall_sens_read + 0x00000000 0x2a /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .text.hall_sens_amp_read + 0x00000000 0x26 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .text.adc2_pad_init + 0x00000000 0x70 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .text.adc2_read + 0x00000000 0x28 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .text.adc_pad_int + 0x00000000 0x108 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .text.adc_pad_init + 0x00000000 0x180 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .text.dac_pad_init + 0x00000000 0xce /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .rodata.CSWTCH$24 + 0x00000000 0x28 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .rodata.CSWTCH$18 + 0x00000000 0x20 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .xt.lit 0x00000000 0xa8 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .xt.prop 0x00000000 0x630 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .literal.rtc_cmd_wakeup_conf + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.rtc_pads_muxsel + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.rtc_pads_funsel + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.rtc_pads_slpsel + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.rtc_pads_slpoe + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.rtc_pads_slpie + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.rtc_pads_funie + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.rtc_pads_pu + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.rtc_pads_pd + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.rtc_pads_hold + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.rtc_apbbridge_sel + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.rtc_powerup_rf + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.rtc_powerdown_rf + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.rtc_get_st + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.rtc_is_st_idle + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.rtc_soc_clk_ck12m + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.rtc_init_full + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.rtc_pad_gpio_wakeup + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.rtc_pad_ext_wakeup + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.rtc_cmd_ext_wakeup + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.rtc_wifi_force_pd + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.rtc_sdreg_off + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.rtc_slp_prep_lite_12M + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal.cfg_sdio_volt + 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .data 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .bss 0x00000000 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_cmd_wakeup_conf + 0x00000000 0x67 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_pads_muxsel + 0x00000000 0x29e /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_pads_funsel + 0x00000000 0x292 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_pads_slpsel + 0x00000000 0x292 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_pads_slpoe + 0x00000000 0x1ba /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_pads_slpie + 0x00000000 0x28e /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_pads_funie + 0x00000000 0x292 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_pads_pu + 0x00000000 0x1ba /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_pads_pd + 0x00000000 0x1ba /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_pads_hold + 0x00000000 0x266 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_apbbridge_sel + 0x00000000 0x29 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_powerup_rf + 0x00000000 0x20 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_powerdown_rf + 0x00000000 0x20 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_get_st + 0x00000000 0x14 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_is_st_idle + 0x00000000 0x1e /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_soc_clk_ck12m + 0x00000000 0x4f /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_init_full + 0x00000000 0x3ba /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_pad_gpio_wakeup + 0x00000000 0xd3 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_pad_ext_wakeup + 0x00000000 0xd7 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_cmd_ext_wakeup + 0x00000000 0xce /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_wifi_force_pd + 0x00000000 0x68 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_sdreg_off + 0x00000000 0x48 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.rtc_slp_prep_lite_12M + 0x00000000 0x32 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .text.cfg_sdio_volt + 0x00000000 0xb3 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .debug_frame 0x00000000 0x250 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .debug_info 0x00000000 0x965 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .debug_abbrev 0x00000000 0x1ac /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .debug_loc 0x00000000 0x455 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .debug_aranges + 0x00000000 0xd8 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .debug_ranges 0x00000000 0xc8 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .debug_line 0x00000000 0x104b /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .debug_str 0x00000000 0x4a2 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .comment 0x00000000 0x3b /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .xt.lit 0x00000000 0xc0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .xt.prop 0x00000000 0xc6c /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .literal 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-atoi.o) + .text 0x00000000 0x29 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-atoi.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-atoi.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-atoi.o) + .debug_frame 0x00000000 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-atoi.o) + .debug_info 0x00000000 0x8ea /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-atoi.o) + .debug_abbrev 0x00000000 0x1eb /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-atoi.o) + .debug_loclists + 0x00000000 0x3c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-atoi.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-atoi.o) + .debug_line 0x00000000 0xd6 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-atoi.o) + .debug_str 0x00000000 0x4e4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-atoi.o) + .debug_line_str + 0x00000000 0x29d /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-atoi.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-atoi.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-atoi.o) + .xt.prop 0x00000000 0x48 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-atoi.o) + .text 0x00000000 0xd /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-div.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-div.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-div.o) + .debug_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-div.o) + .debug_info 0x00000000 0xfc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-div.o) + .debug_abbrev 0x00000000 0xc1 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-div.o) + .debug_loclists + 0x00000000 0x5e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-div.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-div.o) + .debug_line 0x00000000 0x99 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-div.o) + .debug_str 0x00000000 0x11b /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-div.o) + .debug_line_str + 0x00000000 0x1c9 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-div.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-div.o) + .xt.prop 0x00000000 0x24 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-div.o) + .text 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-environ.o) + .data 0x00000000 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-environ.o) + .bss 0x00000000 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-environ.o) + .debug_info 0x00000000 0x6b /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-environ.o) + .debug_abbrev 0x00000000 0x5b /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-environ.o) + .debug_aranges + 0x00000000 0x18 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-environ.o) + .debug_line 0x00000000 0x3a /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-environ.o) + .debug_str 0x00000000 0x9b /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-environ.o) + .debug_line_str + 0x00000000 0x180 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-environ.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-environ.o) + .xt.prop 0x00000000 0x18 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-environ.o) + .literal 0x00000000 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-itoa.o) + .text 0x00000000 0x4c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-itoa.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-itoa.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-itoa.o) + .debug_frame 0x00000000 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-itoa.o) + .debug_info 0x00000000 0x17e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-itoa.o) + .debug_abbrev 0x00000000 0x119 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-itoa.o) + .debug_loclists + 0x00000000 0x99 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-itoa.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-itoa.o) + .debug_line 0x00000000 0x15c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-itoa.o) + .debug_str 0x00000000 0x12f /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-itoa.o) + .debug_line_str + 0x00000000 0x1cc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-itoa.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-itoa.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-itoa.o) + .xt.prop 0x00000000 0x78 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-itoa.o) + .literal 0x00000000 0x48 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-rand.o) + .text 0x00000000 0xce /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-rand.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-rand.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-rand.o) + .rodata.str1.1 + 0x00000000 0x6b /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-rand.o) + .debug_frame 0x00000000 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-rand.o) + .debug_info 0x00000000 0x9a8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-rand.o) + .debug_abbrev 0x00000000 0x24c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-rand.o) + .debug_loclists + 0x00000000 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-rand.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-rand.o) + .debug_rnglists + 0x00000000 0x1b /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-rand.o) + .debug_line 0x00000000 0x2aa /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-rand.o) + .debug_str 0x00000000 0x503 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-rand.o) + .debug_line_str + 0x00000000 0x2a6 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-rand.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-rand.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-rand.o) + .xt.prop 0x00000000 0x54 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-rand.o) + .literal 0x00000000 0x10 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtol.o) + .text 0x00000000 0x13a /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtol.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtol.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtol.o) + .debug_frame 0x00000000 0x70 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtol.o) + .debug_info 0x00000000 0xe47 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtol.o) + .debug_abbrev 0x00000000 0x323 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtol.o) + .debug_loclists + 0x00000000 0x248 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtol.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtol.o) + .debug_rnglists + 0x00000000 0x14 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtol.o) + .debug_line 0x00000000 0x59b /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtol.o) + .debug_str 0x00000000 0x762 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtol.o) + .debug_line_str + 0x00000000 0x331 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtol.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtol.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtol.o) + .xt.prop 0x00000000 0x18c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtol.o) + .literal 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-utoa.o) + .text 0x00000000 0x7c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-utoa.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-utoa.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-utoa.o) + .rodata.str1.1 + 0x00000000 0x25 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-utoa.o) + .debug_frame 0x00000000 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-utoa.o) + .debug_info 0x00000000 0x1c6 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-utoa.o) + .debug_abbrev 0x00000000 0x115 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-utoa.o) + .debug_loclists + 0x00000000 0xb9 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-utoa.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-utoa.o) + .debug_line 0x00000000 0x225 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-utoa.o) + .debug_str 0x00000000 0x14a /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-utoa.o) + .debug_line_str + 0x00000000 0x1d7 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-utoa.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-utoa.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-utoa.o) + .xt.prop 0x00000000 0x78 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-utoa.o) + .text 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ctype_.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ctype_.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ctype_.o) + .rodata 0x00000000 0x101 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ctype_.o) + .debug_info 0x00000000 0xb9 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ctype_.o) + .debug_abbrev 0x00000000 0x62 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ctype_.o) + .debug_aranges + 0x00000000 0x18 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ctype_.o) + .debug_line 0x00000000 0x3e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ctype_.o) + .debug_str 0x00000000 0x112 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ctype_.o) + .debug_line_str + 0x00000000 0x1c6 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ctype_.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ctype_.o) + .literal 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-qsort.o) + .text 0x00000000 0x338 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-qsort.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-qsort.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-qsort.o) + .debug_frame 0x00000000 0x58 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-qsort.o) + .debug_info 0x00000000 0x83d /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-qsort.o) + .debug_abbrev 0x00000000 0x267 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-qsort.o) + .debug_loclists + 0x00000000 0x539 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-qsort.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-qsort.o) + .debug_line 0x00000000 0x934 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-qsort.o) + .debug_str 0x00000000 0x173 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-qsort.o) + .debug_line_str + 0x00000000 0x238 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-qsort.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-qsort.o) + .xt.prop 0x00000000 0x36c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-qsort.o) + .literal 0x00000000 0x3c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fclose.o) + .text 0x00000000 0xf6 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fclose.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fclose.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fclose.o) + .debug_frame 0x00000000 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fclose.o) + .debug_info 0x00000000 0xa72 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fclose.o) + .debug_abbrev 0x00000000 0x2c1 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fclose.o) + .debug_loclists + 0x00000000 0x66 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fclose.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fclose.o) + .debug_line 0x00000000 0x2ef /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fclose.o) + .debug_str 0x00000000 0x5c4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fclose.o) + .debug_line_str + 0x00000000 0x2bb /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fclose.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fclose.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fclose.o) + .xt.prop 0x00000000 0xcc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fclose.o) + .literal 0x00000000 0x18 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ferror.o) + .text 0x00000000 0x60 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ferror.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ferror.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ferror.o) + .debug_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ferror.o) + .debug_info 0x00000000 0x937 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ferror.o) + .debug_abbrev 0x00000000 0x22b /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ferror.o) + .debug_loclists + 0x00000000 0x2b /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ferror.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ferror.o) + .debug_rnglists + 0x00000000 0x13 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ferror.o) + .debug_line 0x00000000 0x165 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ferror.o) + .debug_str 0x00000000 0x565 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ferror.o) + .debug_line_str + 0x00000000 0x2b2 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ferror.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ferror.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ferror.o) + .xt.prop 0x00000000 0x48 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ferror.o) + .literal 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fflush.o) + .text 0x00000000 0x1c4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fflush.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fflush.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fflush.o) + .debug_frame 0x00000000 0x58 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fflush.o) + .debug_info 0x00000000 0xbbd /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fflush.o) + .debug_abbrev 0x00000000 0x347 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fflush.o) + .debug_loclists + 0x00000000 0x162 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fflush.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fflush.o) + .debug_line 0x00000000 0x60c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fflush.o) + .debug_str 0x00000000 0x5bb /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fflush.o) + .debug_line_str + 0x00000000 0x2bb /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fflush.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fflush.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fflush.o) + .xt.prop 0x00000000 0x1b0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fflush.o) + .literal 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fgets.o) + .text 0x00000000 0x11e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fgets.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fgets.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fgets.o) + .debug_frame 0x00000000 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fgets.o) + .debug_info 0x00000000 0xb05 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fgets.o) + .debug_abbrev 0x00000000 0x290 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fgets.o) + .debug_loclists + 0x00000000 0xd5 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fgets.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fgets.o) + .debug_rnglists + 0x00000000 0x19 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fgets.o) + .debug_line 0x00000000 0x3ca /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fgets.o) + .debug_str 0x00000000 0x587 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fgets.o) + .debug_line_str + 0x00000000 0x2b8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fgets.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fgets.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fgets.o) + .xt.prop 0x00000000 0xc0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fgets.o) + .literal 0x00000000 0xc0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-findfp.o) + .text 0x00000000 0x25a /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-findfp.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-findfp.o) + .xt.prop 0x00000000 0x210 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-findfp.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fopen.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fopen.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fopen.o) + .xt.prop 0x00000000 0x90 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fopen.o) + .literal 0x00000000 0xc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fprintf.o) + .text 0x00000000 0x60 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fprintf.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fprintf.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fprintf.o) + .debug_frame 0x00000000 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fprintf.o) + .debug_info 0x00000000 0x988 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fprintf.o) + .debug_abbrev 0x00000000 0x256 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fprintf.o) + .debug_loclists + 0x00000000 0x4c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fprintf.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fprintf.o) + .debug_line 0x00000000 0x14c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fprintf.o) + .debug_str 0x00000000 0x535 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fprintf.o) + .debug_line_str + 0x00000000 0x2b7 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fprintf.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fprintf.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fprintf.o) + .xt.prop 0x00000000 0x48 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fprintf.o) + .literal 0x00000000 0x1c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputc.o) + .text 0x00000000 0x74 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputc.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputc.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputc.o) + .debug_frame 0x00000000 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputc.o) + .debug_info 0x00000000 0x9e6 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputc.o) + .debug_abbrev 0x00000000 0x26e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputc.o) + .debug_loclists + 0x00000000 0x5c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputc.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputc.o) + .debug_line 0x00000000 0x18b /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputc.o) + .debug_str 0x00000000 0x57a /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputc.o) + .debug_line_str + 0x00000000 0x2af /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputc.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputc.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputc.o) + .xt.prop 0x00000000 0x60 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputc.o) + .literal 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputs.o) + .text 0x00000000 0x90 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputs.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputs.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputs.o) + .debug_frame 0x00000000 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputs.o) + .debug_info 0x00000000 0xaae /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputs.o) + .debug_abbrev 0x00000000 0x287 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputs.o) + .debug_loclists + 0x00000000 0x5f /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputs.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputs.o) + .debug_line 0x00000000 0x213 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputs.o) + .debug_str 0x00000000 0x5c4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputs.o) + .debug_line_str + 0x00000000 0x2c2 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputs.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputs.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputs.o) + .xt.prop 0x00000000 0x60 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputs.o) + .literal 0x00000000 0x2c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fread.o) + .text 0x00000000 0x100 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fread.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fread.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fread.o) + .debug_frame 0x00000000 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fread.o) + .debug_info 0x00000000 0xaf3 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fread.o) + .debug_abbrev 0x00000000 0x2dc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fread.o) + .debug_loclists + 0x00000000 0x110 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fread.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fread.o) + .debug_rnglists + 0x00000000 0x16 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fread.o) + .debug_line 0x00000000 0x33e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fread.o) + .debug_str 0x00000000 0x597 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fread.o) + .debug_line_str + 0x00000000 0x2b8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fread.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fread.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fread.o) + .xt.prop 0x00000000 0xc0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fread.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseek.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseek.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseek.o) + .xt.prop 0x00000000 0x48 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseek.o) + .literal 0x00000000 0xc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftell.o) + .text 0x00000000 0x29 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftell.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftell.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftell.o) + .debug_frame 0x00000000 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftell.o) + .debug_info 0x00000000 0x93b /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftell.o) + .debug_abbrev 0x00000000 0x251 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftell.o) + .debug_loclists + 0x00000000 0x5c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftell.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftell.o) + .debug_line 0x00000000 0x121 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftell.o) + .debug_str 0x00000000 0x4ef /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftell.o) + .debug_line_str + 0x00000000 0x29d /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftell.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftell.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftell.o) + .xt.prop 0x00000000 0x48 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftell.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fvwrite.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fvwrite.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fvwrite.o) + .xt.prop 0x00000000 0x204 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fvwrite.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fwalk.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fwalk.o) + .xt.prop 0x00000000 0x54 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fwalk.o) + .literal 0x00000000 0x24 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fwrite.o) + .text 0x00000000 0xbc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fwrite.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fwrite.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fwrite.o) + .debug_frame 0x00000000 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fwrite.o) + .debug_info 0x00000000 0xae9 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fwrite.o) + .debug_abbrev 0x00000000 0x2ca /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fwrite.o) + .debug_loclists + 0x00000000 0x8f /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fwrite.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fwrite.o) + .debug_line 0x00000000 0x252 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fwrite.o) + .debug_str 0x00000000 0x5c3 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fwrite.o) + .debug_line_str + 0x00000000 0x2bc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fwrite.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fwrite.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fwrite.o) + .xt.prop 0x00000000 0x84 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fwrite.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-printf.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-printf.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-printf.o) + .xt.prop 0x00000000 0x48 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-printf.o) + .literal 0x00000000 0x1c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putc.o) + .text 0x00000000 0x98 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putc.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putc.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putc.o) + .debug_frame 0x00000000 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putc.o) + .debug_info 0x00000000 0xa52 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putc.o) + .debug_abbrev 0x00000000 0x2b6 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putc.o) + .debug_loclists + 0x00000000 0xc0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putc.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putc.o) + .debug_line 0x00000000 0x1e7 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putc.o) + .debug_str 0x00000000 0x584 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putc.o) + .debug_line_str + 0x00000000 0x2ac /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putc.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putc.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putc.o) + .xt.prop 0x00000000 0x78 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putc.o) + .literal 0x00000000 0xc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putchar.o) + .text 0x00000000 0x2c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putchar.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putchar.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putchar.o) + .debug_frame 0x00000000 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putchar.o) + .debug_info 0x00000000 0x8e3 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putchar.o) + .debug_abbrev 0x00000000 0x214 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putchar.o) + .debug_loclists + 0x00000000 0x44 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putchar.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putchar.o) + .debug_line 0x00000000 0xf9 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putchar.o) + .debug_str 0x00000000 0x4f7 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putchar.o) + .debug_line_str + 0x00000000 0x2a3 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putchar.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putchar.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putchar.o) + .xt.prop 0x00000000 0x48 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putchar.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-puts.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-puts.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-puts.o) + .xt.prop 0x00000000 0x60 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-puts.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-refill.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-refill.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-refill.o) + .xt.prop 0x00000000 0xfc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-refill.o) + .literal 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-remove.o) + .text 0x00000000 0x2e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-remove.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-remove.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-remove.o) + .debug_frame 0x00000000 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-remove.o) + .debug_info 0x00000000 0x8be /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-remove.o) + .debug_abbrev 0x00000000 0x213 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-remove.o) + .debug_loclists + 0x00000000 0x3c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-remove.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-remove.o) + .debug_line 0x00000000 0xed /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-remove.o) + .debug_str 0x00000000 0x4f5 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-remove.o) + .debug_line_str + 0x00000000 0x2a8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-remove.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-remove.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-remove.o) + .xt.prop 0x00000000 0x48 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-remove.o) + .literal 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-rename.o) + .text 0x00000000 0x18 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-rename.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-rename.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-rename.o) + .debug_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-rename.o) + .debug_info 0x00000000 0x884 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-rename.o) + .debug_abbrev 0x00000000 0x1e2 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-rename.o) + .debug_loclists + 0x00000000 0x24 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-rename.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-rename.o) + .debug_line 0x00000000 0xa2 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-rename.o) + .debug_str 0x00000000 0x4e2 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-rename.o) + .debug_line_str + 0x00000000 0x2a0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-rename.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-rename.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-rename.o) + .xt.prop 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-rename.o) + .literal 0x00000000 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setbuf.o) + .text 0x00000000 0x1b /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setbuf.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setbuf.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setbuf.o) + .debug_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setbuf.o) + .debug_info 0x00000000 0x89c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setbuf.o) + .debug_abbrev 0x00000000 0x1b6 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setbuf.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setbuf.o) + .debug_line 0x00000000 0xa7 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setbuf.o) + .debug_str 0x00000000 0x4e1 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setbuf.o) + .debug_line_str + 0x00000000 0x2a0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setbuf.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setbuf.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setbuf.o) + .xt.prop 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setbuf.o) + .literal 0x00000000 0x3c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setvbuf.o) + .text 0x00000000 0x1a1 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setvbuf.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setvbuf.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setvbuf.o) + .debug_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setvbuf.o) + .debug_info 0x00000000 0xaec /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setvbuf.o) + .debug_abbrev 0x00000000 0x2a2 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setvbuf.o) + .debug_loclists + 0x00000000 0x12b /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setvbuf.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setvbuf.o) + .debug_rnglists + 0x00000000 0x16 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setvbuf.o) + .debug_line 0x00000000 0x4e3 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setvbuf.o) + .debug_str 0x00000000 0x5ab /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setvbuf.o) + .debug_line_str + 0x00000000 0x2be /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setvbuf.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setvbuf.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setvbuf.o) + .xt.prop 0x00000000 0x15c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setvbuf.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-snprintf.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-snprintf.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-snprintf.o) + .xt.prop 0x00000000 0xc0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-snprintf.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sprintf.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sprintf.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sprintf.o) + .xt.prop 0x00000000 0x48 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sprintf.o) + .literal 0x00000000 0x14 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-stdio.o) + .text 0x00000000 0xc6 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-stdio.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-stdio.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-stdio.o) + .debug_frame 0x00000000 0x88 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-stdio.o) + .debug_info 0x00000000 0xb40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-stdio.o) + .debug_abbrev 0x00000000 0x231 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-stdio.o) + .debug_loclists + 0x00000000 0xc8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-stdio.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-stdio.o) + .debug_line 0x00000000 0x273 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-stdio.o) + .debug_str 0x00000000 0x54d /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-stdio.o) + .debug_line_str + 0x00000000 0x2a5 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-stdio.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-stdio.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-stdio.o) + .xt.prop 0x00000000 0xcc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-stdio.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vprintf.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vprintf.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vprintf.o) + .xt.prop 0x00000000 0x48 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vprintf.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vsnprintf.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vsnprintf.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vsnprintf.o) + .xt.prop 0x00000000 0x84 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vsnprintf.o) + .literal 0x00000000 0x14 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wbuf.o) + .text 0x00000000 0x9c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wbuf.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wbuf.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wbuf.o) + .debug_frame 0x00000000 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wbuf.o) + .debug_info 0x00000000 0x98c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wbuf.o) + .debug_abbrev 0x00000000 0x26a /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wbuf.o) + .debug_loclists + 0x00000000 0xa1 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wbuf.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wbuf.o) + .debug_rnglists + 0x00000000 0x13 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wbuf.o) + .debug_line 0x00000000 0x250 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wbuf.o) + .debug_str 0x00000000 0x516 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wbuf.o) + .debug_line_str + 0x00000000 0x2ac /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wbuf.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wbuf.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wbuf.o) + .xt.prop 0x00000000 0x90 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wbuf.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wsetup.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wsetup.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wsetup.o) + .xt.prop 0x00000000 0xb4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wsetup.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseeko.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseeko.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseeko.o) + .xt.prop 0x00000000 0x270 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseeko.o) + .literal 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftello.o) + .text 0x00000000 0xf2 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftello.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftello.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftello.o) + .debug_frame 0x00000000 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftello.o) + .debug_info 0x00000000 0x9be /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftello.o) + .debug_abbrev 0x00000000 0x276 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftello.o) + .debug_loclists + 0x00000000 0xa0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftello.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftello.o) + .debug_line 0x00000000 0x323 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftello.o) + .debug_str 0x00000000 0x568 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftello.o) + .debug_line_str + 0x00000000 0x2b2 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftello.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftello.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftello.o) + .xt.prop 0x00000000 0x108 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftello.o) + .literal 0x00000000 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-bzero.o) + .text 0x00000000 0x12 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-bzero.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-bzero.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-bzero.o) + .debug_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-bzero.o) + .debug_info 0x00000000 0xf1 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-bzero.o) + .debug_abbrev 0x00000000 0xab /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-bzero.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-bzero.o) + .debug_line 0x00000000 0x8c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-bzero.o) + .debug_str 0x00000000 0x125 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-bzero.o) + .debug_line_str + 0x00000000 0x242 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-bzero.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-bzero.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-bzero.o) + .xt.prop 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-bzero.o) + .text 0x00000000 0x1b /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memchr.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memchr.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memchr.o) + .debug_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memchr.o) + .debug_info 0x00000000 0x110 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memchr.o) + .debug_abbrev 0x00000000 0xb1 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memchr.o) + .debug_loclists + 0x00000000 0x98 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memchr.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memchr.o) + .debug_line 0x00000000 0xd0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memchr.o) + .debug_str 0x00000000 0x128 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memchr.o) + .debug_line_str + 0x00000000 0x23b /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memchr.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memchr.o) + .xt.prop 0x00000000 0x48 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memchr.o) + .literal 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memcmp.o) + .text 0x00000000 0x4f /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memcmp.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memcmp.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memcmp.o) + .debug_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memcmp.o) + .debug_info 0x00000000 0x12b /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memcmp.o) + .debug_abbrev 0x00000000 0x90 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memcmp.o) + .debug_loclists + 0x00000000 0x150 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memcmp.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memcmp.o) + .debug_line 0x00000000 0x17f /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memcmp.o) + .debug_str 0x00000000 0x118 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memcmp.o) + .debug_line_str + 0x00000000 0x23b /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memcmp.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memcmp.o) + .xt.prop 0x00000000 0x90 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memcmp.o) + .text 0x00000000 0x41 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memmove.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memmove.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memmove.o) + .debug_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memmove.o) + .debug_info 0x00000000 0x109 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memmove.o) + .debug_abbrev 0x00000000 0xac /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memmove.o) + .debug_loclists + 0x00000000 0xc9 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memmove.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memmove.o) + .debug_line 0x00000000 0x121 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memmove.o) + .debug_str 0x00000000 0x132 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memmove.o) + .debug_line_str + 0x00000000 0x23e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memmove.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memmove.o) + .xt.prop 0x00000000 0x78 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memmove.o) + .text 0x00000000 0x22 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcat.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcat.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcat.o) + .debug_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcat.o) + .debug_info 0x00000000 0xe1 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcat.o) + .debug_abbrev 0x00000000 0x86 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcat.o) + .debug_loclists + 0x00000000 0x7e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcat.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcat.o) + .debug_line 0x00000000 0xda /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcat.o) + .debug_str 0x00000000 0x111 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcat.o) + .debug_line_str + 0x00000000 0x1d2 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcat.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcat.o) + .xt.prop 0x00000000 0x3c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcat.o) + .text 0x00000000 0x1d /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strchr.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strchr.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strchr.o) + .debug_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strchr.o) + .debug_info 0x00000000 0xf4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strchr.o) + .debug_abbrev 0x00000000 0x82 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strchr.o) + .debug_loclists + 0x00000000 0x4c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strchr.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strchr.o) + .debug_line 0x00000000 0xd6 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strchr.o) + .debug_str 0x00000000 0x111 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strchr.o) + .debug_line_str + 0x00000000 0x1d2 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strchr.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strchr.o) + .xt.prop 0x00000000 0x54 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strchr.o) + .text 0x00000000 0x25 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcspn.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcspn.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcspn.o) + .debug_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcspn.o) + .debug_info 0x00000000 0xe9 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcspn.o) + .debug_abbrev 0x00000000 0x9f /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcspn.o) + .debug_loclists + 0x00000000 0x42 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcspn.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcspn.o) + .debug_line 0x00000000 0xf9 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcspn.o) + .debug_str 0x00000000 0x119 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcspn.o) + .debug_line_str + 0x00000000 0x23e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcspn.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcspn.o) + .xt.prop 0x00000000 0x60 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcspn.o) + .literal 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strdup.o) + .text 0x00000000 0x15 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strdup.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strdup.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strdup.o) + .debug_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strdup.o) + .debug_info 0x00000000 0x86a /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strdup.o) + .debug_abbrev 0x00000000 0x1d1 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strdup.o) + .debug_loclists + 0x00000000 0x24 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strdup.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strdup.o) + .debug_line 0x00000000 0xa0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strdup.o) + .debug_str 0x00000000 0x4e2 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strdup.o) + .debug_line_str + 0x00000000 0x2a3 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strdup.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strdup.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strdup.o) + .xt.prop 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strdup.o) + .literal 0x00000000 0xc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strdup_r.o) + .text 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strdup_r.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strdup_r.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strdup_r.o) + .debug_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strdup_r.o) + .debug_info 0x00000000 0x913 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strdup_r.o) + .debug_abbrev 0x00000000 0x21c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strdup_r.o) + .debug_loclists + 0x00000000 0x34 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strdup_r.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strdup_r.o) + .debug_line 0x00000000 0xd7 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strdup_r.o) + .debug_str 0x00000000 0x4fe /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strdup_r.o) + .debug_line_str + 0x00000000 0x2b2 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strdup_r.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strdup_r.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strdup_r.o) + .xt.prop 0x00000000 0x3c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strdup_r.o) + .literal 0x00000000 0x10 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror_r.o) + .text 0x00000000 0x2e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror_r.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror_r.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror_r.o) + .debug_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror_r.o) + .debug_info 0x00000000 0x923 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror_r.o) + .debug_abbrev 0x00000000 0x21a /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror_r.o) + .debug_loclists + 0x00000000 0x2c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror_r.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror_r.o) + .debug_line 0x00000000 0xcd /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror_r.o) + .debug_str 0x00000000 0x511 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror_r.o) + .debug_line_str + 0x00000000 0x2af /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror_r.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror_r.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror_r.o) + .xt.prop 0x00000000 0x3c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror_r.o) + .literal 0x00000000 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlcat.o) + .text 0x00000000 0x50 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlcat.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlcat.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlcat.o) + .debug_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlcat.o) + .debug_info 0x00000000 0x151 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlcat.o) + .debug_abbrev 0x00000000 0xde /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlcat.o) + .debug_loclists + 0x00000000 0xea /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlcat.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlcat.o) + .debug_line 0x00000000 0x1c9 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlcat.o) + .debug_str 0x00000000 0x135 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlcat.o) + .debug_line_str + 0x00000000 0x23e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlcat.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlcat.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlcat.o) + .xt.prop 0x00000000 0xa8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlcat.o) + .text 0x00000000 0x3c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlcpy.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlcpy.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlcpy.o) + .debug_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlcpy.o) + .debug_info 0x00000000 0x10d /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlcpy.o) + .debug_abbrev 0x00000000 0xa3 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlcpy.o) + .debug_loclists + 0x00000000 0xab /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlcpy.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlcpy.o) + .debug_line 0x00000000 0x14d /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlcpy.o) + .debug_str 0x00000000 0x12a /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlcpy.o) + .debug_line_str + 0x00000000 0x23e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlcpy.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlcpy.o) + .xt.prop 0x00000000 0x9c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlcpy.o) + .text 0x00000000 0x3a /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strncmp.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strncmp.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strncmp.o) + .debug_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strncmp.o) + .debug_info 0x00000000 0xde /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strncmp.o) + .debug_abbrev 0x00000000 0x79 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strncmp.o) + .debug_loclists + 0x00000000 0xa6 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strncmp.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strncmp.o) + .debug_line 0x00000000 0x101 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strncmp.o) + .debug_str 0x00000000 0x119 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strncmp.o) + .debug_line_str + 0x00000000 0x23e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strncmp.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strncmp.o) + .xt.prop 0x00000000 0x48 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strncmp.o) + .text 0x00000000 0x1a /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strnlen.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strnlen.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strnlen.o) + .debug_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strnlen.o) + .debug_info 0x00000000 0xe1 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strnlen.o) + .debug_abbrev 0x00000000 0x8d /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strnlen.o) + .debug_loclists + 0x00000000 0x4b /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strnlen.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strnlen.o) + .debug_line 0x00000000 0xbd /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strnlen.o) + .debug_str 0x00000000 0x11f /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strnlen.o) + .debug_line_str + 0x00000000 0x23e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strnlen.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strnlen.o) + .xt.prop 0x00000000 0x48 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strnlen.o) + .literal 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strrchr.o) + .text 0x00000000 0x32 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strrchr.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strrchr.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strrchr.o) + .debug_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strrchr.o) + .debug_info 0x00000000 0x128 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strrchr.o) + .debug_abbrev 0x00000000 0xce /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strrchr.o) + .debug_loclists + 0x00000000 0x96 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strrchr.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strrchr.o) + .debug_line 0x00000000 0x100 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strrchr.o) + .debug_str 0x00000000 0x11e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strrchr.o) + .debug_line_str + 0x00000000 0x1d5 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strrchr.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strrchr.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strrchr.o) + .xt.prop 0x00000000 0x6c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strrchr.o) + .literal 0x00000000 0x18 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtok.o) + .text 0x00000000 0x6c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtok.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtok.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtok.o) + .rodata.str1.1 + 0x00000000 0x6d /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtok.o) + .debug_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtok.o) + .debug_info 0x00000000 0x966 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtok.o) + .debug_abbrev 0x00000000 0x24a /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtok.o) + .debug_loclists + 0x00000000 0x3c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtok.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtok.o) + .debug_rnglists + 0x00000000 0x13 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtok.o) + .debug_line 0x00000000 0x1e9 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtok.o) + .debug_str 0x00000000 0x50b /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtok.o) + .debug_line_str + 0x00000000 0x2b5 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtok.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtok.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtok.o) + .xt.prop 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtok.o) + .literal 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtok_r.o) + .text 0x00000000 0x76 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtok_r.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtok_r.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtok_r.o) + .debug_frame 0x00000000 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtok_r.o) + .debug_info 0x00000000 0x19d /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtok_r.o) + .debug_abbrev 0x00000000 0xf9 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtok_r.o) + .debug_loclists + 0x00000000 0xa9 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtok_r.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtok_r.o) + .debug_line 0x00000000 0x27e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtok_r.o) + .debug_str 0x00000000 0x148 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtok_r.o) + .debug_line_str + 0x00000000 0x1d8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtok_r.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtok_r.o) + .xt.prop 0x00000000 0xfc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtok_r.o) + .text 0x00000000 0x36 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strstr.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strstr.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strstr.o) + .debug_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strstr.o) + .debug_info 0x00000000 0xef /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strstr.o) + .debug_abbrev 0x00000000 0x9f /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strstr.o) + .debug_loclists + 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strstr.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strstr.o) + .debug_line 0x00000000 0x134 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strstr.o) + .debug_str 0x00000000 0x118 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strstr.o) + .debug_line_str + 0x00000000 0x23b /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strstr.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strstr.o) + .xt.prop 0x00000000 0x78 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strstr.o) + .literal 0x00000000 0x18 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gmtime.o) + .text 0x00000000 0x3a /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gmtime.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gmtime.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gmtime.o) + .rodata.str1.1 + 0x00000000 0x6b /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gmtime.o) + .debug_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gmtime.o) + .debug_info 0x00000000 0x9cc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gmtime.o) + .debug_abbrev 0x00000000 0x23d /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gmtime.o) + .debug_loclists + 0x00000000 0x34 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gmtime.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gmtime.o) + .debug_rnglists + 0x00000000 0x13 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gmtime.o) + .debug_line 0x00000000 0x118 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gmtime.o) + .debug_str 0x00000000 0x566 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gmtime.o) + .debug_line_str + 0x00000000 0x31f /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gmtime.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gmtime.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gmtime.o) + .xt.prop 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gmtime.o) + .literal 0x00000000 0x50 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gmtime_r.o) + .text 0x00000000 0x1be /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gmtime_r.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gmtime_r.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gmtime_r.o) + .debug_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gmtime_r.o) + .debug_info 0x00000000 0x24e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gmtime_r.o) + .debug_abbrev 0x00000000 0xf7 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gmtime_r.o) + .debug_loclists + 0x00000000 0x103 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gmtime_r.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gmtime_r.o) + .debug_line 0x00000000 0x4ec /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gmtime_r.o) + .debug_str 0x00000000 0x1bf /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gmtime_r.o) + .debug_line_str + 0x00000000 0x292 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gmtime_r.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gmtime_r.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gmtime_r.o) + .xt.prop 0x00000000 0xa8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gmtime_r.o) + .literal 0x00000000 0x38 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-lcltime_r.o) + .text 0x00000000 0x25c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-lcltime_r.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-lcltime_r.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-lcltime_r.o) + .debug_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-lcltime_r.o) + .debug_info 0x00000000 0x390 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-lcltime_r.o) + .debug_abbrev 0x00000000 0x191 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-lcltime_r.o) + .debug_loclists + 0x00000000 0x95 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-lcltime_r.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-lcltime_r.o) + .debug_line 0x00000000 0x648 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-lcltime_r.o) + .debug_str 0x00000000 0x259 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-lcltime_r.o) + .debug_line_str + 0x00000000 0x2ab /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-lcltime_r.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-lcltime_r.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-lcltime_r.o) + .xt.prop 0x00000000 0x204 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-lcltime_r.o) + .literal 0x00000000 0x54 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mktime.o) + .text 0x00000000 0x562 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mktime.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mktime.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mktime.o) + .rodata 0x00000000 0x60 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mktime.o) + .debug_frame 0x00000000 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mktime.o) + .debug_info 0x00000000 0x4a1 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mktime.o) + .debug_abbrev 0x00000000 0x20c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mktime.o) + .debug_loclists + 0x00000000 0x2ca /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mktime.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mktime.o) + .debug_rnglists + 0x00000000 0x17 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mktime.o) + .debug_line 0x00000000 0xce8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mktime.o) + .debug_str 0x00000000 0x2b2 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mktime.o) + .debug_line_str + 0x00000000 0x2ab /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mktime.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mktime.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mktime.o) + .xt.prop 0x00000000 0x360 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mktime.o) + .text 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-month_lengths.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-month_lengths.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-month_lengths.o) + .rodata 0x00000000 0x60 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-month_lengths.o) + .debug_info 0x00000000 0xad /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-month_lengths.o) + .debug_abbrev 0x00000000 0x61 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-month_lengths.o) + .debug_aranges + 0x00000000 0x18 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-month_lengths.o) + .debug_line 0x00000000 0x3f /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-month_lengths.o) + .debug_str 0x00000000 0x11a /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-month_lengths.o) + .debug_line_str + 0x00000000 0x196 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-month_lengths.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-month_lengths.o) + .xt.prop 0x00000000 0xc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-month_lengths.o) + .literal 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-time.o) + .text 0x00000000 0x34 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-time.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-time.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-time.o) + .debug_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-time.o) + .debug_info 0x00000000 0x8eb /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-time.o) + .debug_abbrev 0x00000000 0x1e3 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-time.o) + .debug_loclists + 0x00000000 0x1b /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-time.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-time.o) + .debug_line 0x00000000 0x129 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-time.o) + .debug_str 0x00000000 0x52e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-time.o) + .debug_line_str + 0x00000000 0x30f /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-time.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-time.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-time.o) + .xt.prop 0x00000000 0x48 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-time.o) + .literal 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzcalc_limits.o) + .text 0x00000000 0x1a6 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzcalc_limits.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzcalc_limits.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzcalc_limits.o) + .debug_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzcalc_limits.o) + .debug_info 0x00000000 0x298 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzcalc_limits.o) + .debug_abbrev 0x00000000 0x139 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzcalc_limits.o) + .debug_loclists + 0x00000000 0x13e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzcalc_limits.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzcalc_limits.o) + .debug_line 0x00000000 0x44f /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzcalc_limits.o) + .debug_str 0x00000000 0x1ea /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzcalc_limits.o) + .debug_line_str + 0x00000000 0x264 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzcalc_limits.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzcalc_limits.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzcalc_limits.o) + .xt.prop 0x00000000 0x114 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzcalc_limits.o) + .literal 0x00000000 0x10 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzlock.o) + .text 0x00000000 0x1e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzlock.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzlock.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzlock.o) + .debug_frame 0x00000000 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzlock.o) + .debug_info 0x00000000 0x106 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzlock.o) + .debug_abbrev 0x00000000 0xc8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzlock.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzlock.o) + .debug_line 0x00000000 0x7e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzlock.o) + .debug_str 0x00000000 0x17c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzlock.o) + .debug_line_str + 0x00000000 0x1d0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzlock.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzlock.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzlock.o) + .xt.prop 0x00000000 0x48 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzlock.o) + .literal 0x00000000 0x18 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset.o) + .text 0x00000000 0x31 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset.o) + .debug_frame 0x00000000 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset.o) + .debug_info 0x00000000 0x889 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset.o) + .debug_abbrev 0x00000000 0x1d7 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset.o) + .debug_line 0x00000000 0xc2 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset.o) + .debug_str 0x00000000 0x50f /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset.o) + .debug_line_str + 0x00000000 0x2a2 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset.o) + .xt.prop 0x00000000 0x48 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset.o) + .literal 0x00000000 0x88 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset_r.o) + .text 0x00000000 0x472 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset_r.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset_r.o) + .bss 0x00000000 0x1c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset_r.o) + .rodata.str1.1 + 0x00000000 0x61 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset_r.o) + .debug_frame 0x00000000 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset_r.o) + .debug_info 0x00000000 0xe64 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset_r.o) + .debug_abbrev 0x00000000 0x2bd /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset_r.o) + .debug_loclists + 0x00000000 0x1bc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset_r.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset_r.o) + .debug_line 0x00000000 0xb95 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset_r.o) + .debug_str 0x00000000 0x64a /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset_r.o) + .debug_line_str + 0x00000000 0x340 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset_r.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset_r.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset_r.o) + .xt.prop 0x00000000 0x21c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset_r.o) + .text 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzvars.o) + .data 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzvars.o) + .bss 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzvars.o) + .rodata.str1.1 + 0x00000000 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzvars.o) + .debug_info 0x00000000 0xcb /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzvars.o) + .debug_abbrev 0x00000000 0x5e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzvars.o) + .debug_aranges + 0x00000000 0x18 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzvars.o) + .debug_line 0x00000000 0x3e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzvars.o) + .debug_str 0x00000000 0x126 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzvars.o) + .debug_line_str + 0x00000000 0x1c3 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzvars.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzvars.o) + .xt.prop 0x00000000 0xc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzvars.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-reent.o) + .bss 0x00000000 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-reent.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-reent.o) + .xt.prop 0x00000000 0xd8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-reent.o) + .text 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-impure.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-impure.o) + .xt.prop 0x00000000 0x18 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-impure.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-errno.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-errno.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-errno.o) + .xt.prop 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-errno.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sysgettod.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sysgettod.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sysgettod.o) + .xt.prop 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sysgettod.o) + .literal 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sysstat.o) + .text 0x00000000 0x18 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sysstat.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sysstat.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sysstat.o) + .debug_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sysstat.o) + .debug_info 0x00000000 0xa83 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sysstat.o) + .debug_abbrev 0x00000000 0x1e1 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sysstat.o) + .debug_loclists + 0x00000000 0x24 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sysstat.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sysstat.o) + .debug_line 0x00000000 0xbf /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sysstat.o) + .debug_str 0x00000000 0x629 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sysstat.o) + .debug_line_str + 0x00000000 0x334 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sysstat.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sysstat.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sysstat.o) + .xt.prop 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sysstat.o) + .literal 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memcpy.o) + .text 0x00000000 0x135 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memcpy.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memcpy.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memcpy.o) + .debug_line 0x00000000 0x30f /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memcpy.o) + .debug_line_str + 0x00000000 0xc2 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memcpy.o) + .debug_info 0x00000000 0x33 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memcpy.o) + .debug_abbrev 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memcpy.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memcpy.o) + .debug_str 0x00000000 0xd5 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memcpy.o) + .xt.prop 0x00000000 0x15c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memcpy.o) + .literal 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memset.o) + .text 0x00000000 0x74 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memset.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memset.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memset.o) + .debug_line 0x00000000 0x146 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memset.o) + .debug_line_str + 0x00000000 0xc2 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memset.o) + .debug_info 0x00000000 0x31 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memset.o) + .debug_abbrev 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memset.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memset.o) + .debug_str 0x00000000 0xd5 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memset.o) + .xt.prop 0x00000000 0xd8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memset.o) + .literal 0x00000000 0x1c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcmp.o) + .text 0x00000000 0x123 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcmp.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcmp.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcmp.o) + .debug_line 0x00000000 0x2b4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcmp.o) + .debug_line_str + 0x00000000 0xc2 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcmp.o) + .debug_info 0x00000000 0x33 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcmp.o) + .debug_abbrev 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcmp.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcmp.o) + .debug_str 0x00000000 0xd5 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcmp.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcmp.o) + .xt.prop 0x00000000 0x120 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcmp.o) + .literal 0x00000000 0xc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcpy.o) + .text 0x00000000 0x90 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcpy.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcpy.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcpy.o) + .debug_line 0x00000000 0x182 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcpy.o) + .debug_line_str + 0x00000000 0xc2 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcpy.o) + .debug_info 0x00000000 0x33 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcpy.o) + .debug_abbrev 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcpy.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcpy.o) + .debug_str 0x00000000 0xd5 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcpy.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcpy.o) + .xt.prop 0x00000000 0x114 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcpy.o) + .literal 0x00000000 0xc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlen.o) + .text 0x00000000 0x63 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlen.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlen.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlen.o) + .debug_line 0x00000000 0x122 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlen.o) + .debug_line_str + 0x00000000 0xc2 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlen.o) + .debug_info 0x00000000 0x31 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlen.o) + .debug_abbrev 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlen.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlen.o) + .debug_str 0x00000000 0xd5 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlen.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlen.o) + .xt.prop 0x00000000 0xc0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlen.o) + .literal 0x00000000 0xc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strncpy.o) + .text 0x00000000 0x113 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strncpy.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strncpy.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strncpy.o) + .debug_line 0x00000000 0x2a8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strncpy.o) + .debug_line_str + 0x00000000 0xc3 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strncpy.o) + .debug_info 0x00000000 0x33 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strncpy.o) + .debug_abbrev 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strncpy.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strncpy.o) + .debug_str 0x00000000 0xd7 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strncpy.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strncpy.o) + .xt.prop 0x00000000 0x1a4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strncpy.o) + .literal 0x00000000 0x14 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-getenv_r.o) + .text 0x00000000 0x90 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-getenv_r.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-getenv_r.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-getenv_r.o) + .debug_frame 0x00000000 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-getenv_r.o) + .debug_info 0x00000000 0x9a4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-getenv_r.o) + .debug_abbrev 0x00000000 0x245 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-getenv_r.o) + .debug_loclists + 0x00000000 0x94 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-getenv_r.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-getenv_r.o) + .debug_line 0x00000000 0x235 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-getenv_r.o) + .debug_str 0x00000000 0x52a /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-getenv_r.o) + .debug_line_str + 0x00000000 0x2bc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-getenv_r.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-getenv_r.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-getenv_r.o) + .xt.prop 0x00000000 0xcc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-getenv_r.o) + .literal 0x00000000 0xc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoul.o) + .text 0x00000000 0x11e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoul.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoul.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoul.o) + .debug_frame 0x00000000 0x70 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoul.o) + .debug_info 0x00000000 0xdc9 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoul.o) + .debug_abbrev 0x00000000 0x2df /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoul.o) + .debug_loclists + 0x00000000 0x1fd /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoul.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoul.o) + .debug_line 0x00000000 0x554 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoul.o) + .debug_str 0x00000000 0x75e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoul.o) + .debug_line_str + 0x00000000 0x32c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoul.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoul.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoul.o) + .xt.prop 0x00000000 0x180 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoul.o) + .literal 0x00000000 0x1c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-siscanf.o) + .text 0x00000000 0xc4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-siscanf.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-siscanf.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-siscanf.o) + .debug_frame 0x00000000 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-siscanf.o) + .debug_info 0x00000000 0xa0a /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-siscanf.o) + .debug_abbrev 0x00000000 0x25a /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-siscanf.o) + .debug_loclists + 0x00000000 0x51 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-siscanf.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-siscanf.o) + .debug_line 0x00000000 0x2d3 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-siscanf.o) + .debug_str 0x00000000 0x551 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-siscanf.o) + .debug_line_str + 0x00000000 0x2c8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-siscanf.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-siscanf.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-siscanf.o) + .xt.prop 0x00000000 0x48 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-siscanf.o) + .literal 0x00000000 0xcc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) + .text 0x00000000 0x1fb9 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) + .rodata 0x00000000 0x13e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) + .debug_frame 0x00000000 0x8c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) + .debug_info 0x00000000 0x2257 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) + .debug_abbrev 0x00000000 0x489 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) + .debug_loclists + 0x00000000 0x1644 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) + .debug_rnglists + 0x00000000 0x167 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) + .debug_line 0x00000000 0x4146 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) + .debug_str 0x00000000 0x977 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) + .debug_line_str + 0x00000000 0x3da /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) + .xt.prop 0x00000000 0x1c8c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) + .xt.prop 0x00000000 0x27a8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + .xt.prop 0x00000000 0x2868 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfiprintf.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfiprintf.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfiprintf.o) + .xt.prop 0x00000000 0x2118 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfiprintf.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-flags.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-flags.o) + .xt.prop 0x00000000 0xb4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-flags.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-makebuf.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-makebuf.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-makebuf.o) + .xt.prop 0x00000000 0xe4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-makebuf.o) + .literal 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sccl.o) + .text 0x00000000 0x9a /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sccl.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sccl.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sccl.o) + .debug_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sccl.o) + .debug_info 0x00000000 0x10e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sccl.o) + .debug_abbrev 0x00000000 0x9a /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sccl.o) + .debug_loclists + 0x00000000 0xf8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sccl.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sccl.o) + .debug_line 0x00000000 0x242 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sccl.o) + .debug_str 0x00000000 0x121 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sccl.o) + .debug_line_str + 0x00000000 0x1cd /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sccl.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sccl.o) + .xt.prop 0x00000000 0xd8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sccl.o) + .literal 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ungetc.o) + .text 0x00000000 0x1b4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ungetc.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ungetc.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ungetc.o) + .debug_frame 0x00000000 0x58 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ungetc.o) + .debug_info 0x00000000 0xb1f /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ungetc.o) + .debug_abbrev 0x00000000 0x2c6 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ungetc.o) + .debug_loclists + 0x00000000 0x106 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ungetc.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ungetc.o) + .debug_line 0x00000000 0x645 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ungetc.o) + .debug_str 0x00000000 0x5a4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ungetc.o) + .debug_line_str + 0x00000000 0x2c4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ungetc.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ungetc.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ungetc.o) + .xt.prop 0x00000000 0x174 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ungetc.o) + .literal 0x00000000 0x154 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror.o) + .text 0x00000000 0x242 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror.o) + .rodata.str1.1 + 0x00000000 0x697 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror.o) + .rodata 0x00000000 0x23c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror.o) + .debug_frame 0x00000000 0x58 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror.o) + .debug_info 0x00000000 0x992 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror.o) + .debug_abbrev 0x00000000 0x22e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror.o) + .debug_loclists + 0x00000000 0xd46 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror.o) + .debug_line 0x00000000 0xaa8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror.o) + .debug_str 0x00000000 0x52d /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror.o) + .debug_line_str + 0x00000000 0x2b3 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror.o) + .xt.prop 0x00000000 0x828 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror.o) + .text 0x00000000 0x7 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-u_strerr.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-u_strerr.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-u_strerr.o) + .debug_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-u_strerr.o) + .debug_info 0x00000000 0x96 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-u_strerr.o) + .debug_abbrev 0x00000000 0x77 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-u_strerr.o) + .debug_loclists + 0x00000000 0x24 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-u_strerr.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-u_strerr.o) + .debug_line 0x00000000 0x7b /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-u_strerr.o) + .debug_str 0x00000000 0xc4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-u_strerr.o) + .debug_line_str + 0x00000000 0x183 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-u_strerr.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-u_strerr.o) + .xt.prop 0x00000000 0x24 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-u_strerr.o) + .literal 0x00000000 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gettzinfo.o) + .text 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gettzinfo.o) + .data 0x00000000 0x58 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gettzinfo.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gettzinfo.o) + .debug_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gettzinfo.o) + .debug_info 0x00000000 0x170 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gettzinfo.o) + .debug_abbrev 0x00000000 0xb7 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gettzinfo.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gettzinfo.o) + .debug_line 0x00000000 0x74 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gettzinfo.o) + .debug_str 0x00000000 0x19a /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gettzinfo.o) + .debug_line_str + 0x00000000 0x250 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gettzinfo.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gettzinfo.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gettzinfo.o) + .xt.prop 0x00000000 0x3c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gettzinfo.o) + .literal 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-locale.o) + .text 0x00000000 0x58 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-locale.o) + .bss 0x00000000 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-locale.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-locale.o) + .xt.prop 0x00000000 0x84 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-locale.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-localeconv.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-localeconv.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-localeconv.o) + .xt.prop 0x00000000 0x60 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-localeconv.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libm_a-s_frexp.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libm_a-s_frexp.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libm_a-s_frexp.o) + .xt.prop 0x00000000 0x48 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libm_a-s_frexp.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) + .xt.prop 0x00000000 0x7f8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) + .literal 0x00000000 0x10 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-envlock.o) + .text 0x00000000 0x1e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-envlock.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-envlock.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-envlock.o) + .debug_frame 0x00000000 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-envlock.o) + .debug_info 0x00000000 0x88a /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-envlock.o) + .debug_abbrev 0x00000000 0x1e4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-envlock.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-envlock.o) + .debug_line 0x00000000 0xaa /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-envlock.o) + .debug_str 0x00000000 0x555 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-envlock.o) + .debug_line_str + 0x00000000 0x2a7 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-envlock.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-envlock.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-envlock.o) + .xt.prop 0x00000000 0x48 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-envlock.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mbtowc_r.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mbtowc_r.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mbtowc_r.o) + .xt.prop 0x00000000 0x6c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mbtowc_r.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) + .xt.prop 0x00000000 0x804 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) + .literal 0x00000000 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wctomb_r.o) + .text 0x00000000 0x3f /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wctomb_r.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wctomb_r.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wctomb_r.o) + .debug_frame 0x00000000 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wctomb_r.o) + .debug_info 0x00000000 0xbaa /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wctomb_r.o) + .debug_abbrev 0x00000000 0x243 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wctomb_r.o) + .debug_loclists + 0x00000000 0x3b /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wctomb_r.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wctomb_r.o) + .debug_line 0x00000000 0x1b3 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wctomb_r.o) + .debug_str 0x00000000 0x70d /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wctomb_r.o) + .debug_line_str + 0x00000000 0x31d /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wctomb_r.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wctomb_r.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wctomb_r.o) + .xt.prop 0x00000000 0x6c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wctomb_r.o) + .literal 0x00000000 0x14 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoll.o) + .text 0x00000000 0x198 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoll.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoll.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoll.o) + .debug_frame 0x00000000 0x70 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoll.o) + .debug_info 0x00000000 0xe0b /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoll.o) + .debug_abbrev 0x00000000 0x30d /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoll.o) + .debug_loclists + 0x00000000 0x2cb /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoll.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoll.o) + .debug_line 0x00000000 0x5da /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoll.o) + .debug_str 0x00000000 0x772 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoll.o) + .debug_line_str + 0x00000000 0x32c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoll.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoll.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoll.o) + .xt.prop 0x00000000 0x198 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoll.o) + .literal 0x00000000 0x14 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoull.o) + .text 0x00000000 0x190 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoull.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoull.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoull.o) + .debug_frame 0x00000000 0x70 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoull.o) + .debug_info 0x00000000 0xe03 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoull.o) + .debug_abbrev 0x00000000 0x314 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoull.o) + .debug_loclists + 0x00000000 0x28d /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoull.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoull.o) + .debug_line 0x00000000 0x5b8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoull.o) + .debug_str 0x00000000 0x776 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoull.o) + .debug_line_str + 0x00000000 0x32f /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoull.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoull.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoull.o) + .xt.prop 0x00000000 0x198 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoull.o) + .literal 0x00000000 0xc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mbrtowc.o) + .text 0x00000000 0x4c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mbrtowc.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mbrtowc.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mbrtowc.o) + .rodata.str1.1 + 0x00000000 0x1 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mbrtowc.o) + .debug_frame 0x00000000 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mbrtowc.o) + .debug_info 0x00000000 0xbe8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mbrtowc.o) + .debug_abbrev 0x00000000 0x25f /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mbrtowc.o) + .debug_loclists + 0x00000000 0x43 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mbrtowc.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mbrtowc.o) + .debug_line 0x00000000 0x1be /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mbrtowc.o) + .debug_str 0x00000000 0x706 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mbrtowc.o) + .debug_line_str + 0x00000000 0x311 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mbrtowc.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mbrtowc.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mbrtowc.o) + .xt.prop 0x00000000 0x60 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mbrtowc.o) + .literal 0x00000000 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-iswspace.o) + .text 0x00000000 0x11 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-iswspace.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-iswspace.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-iswspace.o) + .debug_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-iswspace.o) + .debug_info 0x00000000 0xea /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-iswspace.o) + .debug_abbrev 0x00000000 0xb9 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-iswspace.o) + .debug_loclists + 0x00000000 0x24 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-iswspace.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-iswspace.o) + .debug_line 0x00000000 0x97 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-iswspace.o) + .debug_str 0x00000000 0x128 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-iswspace.o) + .debug_line_str + 0x00000000 0x299 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-iswspace.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-iswspace.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-iswspace.o) + .xt.prop 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-iswspace.o) + .literal 0x00000000 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-iswspace_l.o) + .text 0x00000000 0x1c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-iswspace_l.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-iswspace_l.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-iswspace_l.o) + .debug_frame 0x00000000 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-iswspace_l.o) + .debug_info 0x00000000 0xacf /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-iswspace_l.o) + .debug_abbrev 0x00000000 0x1b1 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-iswspace_l.o) + .debug_loclists + 0x00000000 0x2b /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-iswspace_l.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-iswspace_l.o) + .debug_line 0x00000000 0xda /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-iswspace_l.o) + .debug_str 0x00000000 0x6be /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-iswspace_l.o) + .debug_line_str + 0x00000000 0x328 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-iswspace_l.o) + .comment 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-iswspace_l.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-iswspace_l.o) + .xt.prop 0x00000000 0x3c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-iswspace_l.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiprintf.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiprintf.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiprintf.o) + .xt.prop 0x00000000 0x2100 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiprintf.o) + .literal 0x00000000 0x18 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_cmpdf2.o) + .text 0x00000000 0x176 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_cmpdf2.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_cmpdf2.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_cmpdf2.o) + .debug_line 0x00000000 0x36f /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_cmpdf2.o) + .debug_line_str + 0x00000000 0xc5 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_cmpdf2.o) + .debug_info 0x00000000 0x25 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_cmpdf2.o) + .debug_abbrev 0x00000000 0x14 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_cmpdf2.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_cmpdf2.o) + .debug_str 0x00000000 0xd1 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_cmpdf2.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_cmpdf2.o) + .xt.prop 0x00000000 0x288 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_cmpdf2.o) + .literal 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_truncdfsf2.o) + .text 0x00000000 0xa4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_truncdfsf2.o) + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_truncdfsf2.o) + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_truncdfsf2.o) + .debug_line 0x00000000 0x195 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_truncdfsf2.o) + .debug_line_str + 0x00000000 0xc5 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_truncdfsf2.o) + .debug_info 0x00000000 0x25 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_truncdfsf2.o) + .debug_abbrev 0x00000000 0x14 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_truncdfsf2.o) + .debug_aranges + 0x00000000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_truncdfsf2.o) + .debug_str 0x00000000 0xd1 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_truncdfsf2.o) + .xt.lit 0x00000000 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_truncdfsf2.o) + .xt.prop 0x00000000 0xb4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_truncdfsf2.o) + .literal 0x00000000 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + .init.literal 0x00000000 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + .text 0x00000000 0x16 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + .ctors 0x00000000 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + .eh_frame 0x00000000 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + .tm_clone_table + 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + .init 0x00000000 0x6 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + .xt.lit 0x00000000 0x10 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + .xt.prop 0x00000000 0x84 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + .text 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtn.o + .data 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtn.o + .bss 0x00000000 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtn.o + .init 0x00000000 0x2 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtn.o + .fini 0x00000000 0x2 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtn.o + .xt.prop 0x00000000 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtn.o + +Memory Configuration + +Name Origin Length Attributes +iram0_0_seg 0x40080000 0x00020000 xr +iram0_2_seg 0x400d0020 0x0032ffe0 xr +dram0_0_seg 0x3ffb0000 0x0002c200 rw +drom0_0_seg 0x3f400020 0x003fffe0 r +rtc_iram_seg 0x400c0000 0x00002000 xrw +rtc_data_seg 0x3ff80000 0x00002000 rw +rtc_fast_reserved_seg 0x3ff82000 0x00000000 rw +rtc_slow_seg 0x50000000 0x00001fe8 rw +rtc_slow_reserved_seg 0x50001fe8 0x00000018 rw +extern_ram_seg 0x3f800000 0x00400000 xrw +*default* 0x00000000 0xffffffff + +Linker script and memory map + +LOAD /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o +LOAD /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crti.o +LOAD /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + 0x00000000 IDF_TARGET_ESP32 = 0x0 +LOAD CMakeFiles/internal_communication.elf.dir/project_elf_src_esp32.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/esp_mm/libesp_mm.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_bootloader_format/libesp_bootloader_format.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_coex/libesp_coex.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/nvs_sec_provider/libnvs_sec_provider.a +LOAD esp-idf/perfmon/libperfmon.a +LOAD esp-idf/spiffs/libspiffs.a +LOAD esp-idf/wifi_provisioning/libwifi_provisioning.a +LOAD esp-idf/main/libmain.a +LOAD esp-idf/app_trace/libapp_trace.a +LOAD esp-idf/app_trace/libapp_trace.a +LOAD esp-idf/cmock/libcmock.a +LOAD esp-idf/unity/libunity.a +LOAD esp-idf/esp_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/nvs_sec_provider/libnvs_sec_provider.a +LOAD esp-idf/perfmon/libperfmon.a +LOAD esp-idf/spiffs/libspiffs.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/esp_mm/libesp_mm.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_bootloader_format/libesp_bootloader_format.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_coex/libesp_coex.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/mbedtls/mbedtls/library/libmbedtls.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a +LOAD esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a +LOAD esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a +LOAD /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a +LOAD /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libespnow.a +LOAD /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a +LOAD /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a +LOAD /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a +LOAD /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a +LOAD /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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/esp_mm/libesp_mm.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_bootloader_format/libesp_bootloader_format.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_coex/libesp_coex.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/mbedtls/mbedtls/library/libmbedtls.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a +LOAD esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a +LOAD esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a +LOAD /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a +LOAD /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libespnow.a +LOAD /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a +LOAD /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a +LOAD /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a +LOAD /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a +LOAD /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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/esp_mm/libesp_mm.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_bootloader_format/libesp_bootloader_format.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_coex/libesp_coex.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/mbedtls/mbedtls/library/libmbedtls.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a +LOAD esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a +LOAD esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a +LOAD /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a +LOAD /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libespnow.a +LOAD /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a +LOAD /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a +LOAD /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a +LOAD /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a +LOAD /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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/esp_mm/libesp_mm.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_bootloader_format/libesp_bootloader_format.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_coex/libesp_coex.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/mbedtls/mbedtls/library/libmbedtls.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a +LOAD esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a +LOAD esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a +LOAD /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a +LOAD /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libespnow.a +LOAD /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a +LOAD /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a +LOAD /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a +LOAD /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a +LOAD /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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/esp_mm/libesp_mm.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_bootloader_format/libesp_bootloader_format.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_coex/libesp_coex.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/mbedtls/mbedtls/library/libmbedtls.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a +LOAD esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a +LOAD esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a +LOAD /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a +LOAD /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libespnow.a +LOAD /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a +LOAD /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a +LOAD /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a +LOAD /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a +LOAD /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libwapi.a +LOAD /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a +LOAD /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/newlib/libnewlib.a +LOAD /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a +LOAD esp-idf/cxx/libcxx.a +LOAD /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a +LOAD /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a +LOAD esp-idf/esp_phy/libesp_phy.a +LOAD /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a +LOAD /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a +LOAD esp-idf/esp_phy/libesp_phy.a +LOAD /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a +LOAD /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a +LOAD /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a +LOAD /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libm.a +LOAD /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a +LOAD /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a +LOAD /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a +LOAD /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libnosys.a +LOAD /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a +LOAD /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a +LOAD /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o +LOAD /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtn.o + 0x3ff40000 PROVIDE (UART0 = 0x3ff40000) + 0x3ff42000 PROVIDE (SPI1 = 0x3ff42000) + 0x3ff43000 PROVIDE (SPI0 = 0x3ff43000) + 0x3ff44000 PROVIDE (GPIO = 0x3ff44000) + [!provide] PROVIDE (SDM = 0x3ff44f00) + 0x3ff48000 PROVIDE (RTCCNTL = 0x3ff48000) + 0x3ff48400 PROVIDE (RTCIO = 0x3ff48400) + 0x3ff48800 PROVIDE (SENS = 0x3ff48800) + [!provide] PROVIDE (HINF = 0x3ff4b000) + [!provide] PROVIDE (UHCI1 = 0x3ff4c000) + [!provide] PROVIDE (I2S0 = 0x3ff4f000) + 0x3ff50000 PROVIDE (UART1 = 0x3ff50000) + [!provide] PROVIDE (I2C0 = 0x3ff53000) + [!provide] PROVIDE (UHCI0 = 0x3ff54000) + [!provide] PROVIDE (HOST = 0x3ff55000) + [!provide] PROVIDE (RMT = 0x3ff56000) + [!provide] PROVIDE (RMTMEM = 0x3ff56800) + [!provide] PROVIDE (PCNT = 0x3ff57000) + [!provide] PROVIDE (SLC = 0x3ff58000) + 0x3ff59000 PROVIDE (LEDC = 0x3ff59000) + 0x3ff5a000 PROVIDE (EFUSE = 0x3ff5a000) + [!provide] PROVIDE (MCPWM0 = 0x3ff5e000) + 0x3ff5f000 PROVIDE (TIMERG0 = 0x3ff5f000) + 0x3ff60000 PROVIDE (TIMERG1 = 0x3ff60000) + 0x3ff64000 PROVIDE (SPI2 = 0x3ff64000) + 0x3ff65000 PROVIDE (SPI3 = 0x3ff65000) + [!provide] PROVIDE (SYSCON = 0x3ff66000) + [!provide] PROVIDE (I2C1 = 0x3ff67000) + [!provide] PROVIDE (SDMMC = 0x3ff68000) + [!provide] PROVIDE (EMAC_DMA = 0x3ff69000) + [!provide] PROVIDE (EMAC_EXT = 0x3ff69800) + [!provide] PROVIDE (EMAC_MAC = 0x3ff6a000) + [!provide] PROVIDE (TWAI = 0x3ff6b000) + [!provide] PROVIDE (MCPWM1 = 0x3ff6c000) + [!provide] PROVIDE (I2S1 = 0x3ff6d000) + 0x3ff6e000 PROVIDE (UART2 = 0x3ff6e000) + [!provide] PROVIDE (Add2SelfBigHex256 = 0x40015b7c) + [!provide] PROVIDE (AddBigHex256 = 0x40015b28) + [!provide] PROVIDE (AddBigHexModP256 = 0x40015c98) + [!provide] PROVIDE (AddP256 = 0x40015c74) + [!provide] PROVIDE (AddPdiv2_256 = 0x40015ce0) + [!provide] PROVIDE (app_gpio_arg = 0x3ffe003c) + [!provide] PROVIDE (app_gpio_handler = 0x3ffe0040) + [!provide] PROVIDE (BasePoint_x_256 = 0x3ff97488) + [!provide] PROVIDE (BasePoint_y_256 = 0x3ff97468) + [!provide] PROVIDE (bigHexInversion256 = 0x400168f0) + [!provide] PROVIDE (bigHexP256 = 0x3ff973bc) + [!provide] PROVIDE (btdm_r_ble_bt_handler_tab_p_get = 0x40019b0c) + [!provide] PROVIDE (btdm_r_btdm_option_data_p_get = 0x40010004) + [!provide] PROVIDE (btdm_r_btdm_rom_version_get = 0x40010078) + [!provide] PROVIDE (btdm_r_data_init = 0x4001002c) + [!provide] PROVIDE (btdm_r_import_rf_phy_func_p_get = 0x40054298) + [!provide] PROVIDE (btdm_r_ip_func_p_get = 0x40019af0) + [!provide] PROVIDE (btdm_r_ip_func_p_set = 0x40019afc) + [!provide] PROVIDE (btdm_r_modules_func_p_get = 0x4005427c) + [!provide] PROVIDE (btdm_r_modules_func_p_set = 0x40054270) + [!provide] PROVIDE (btdm_r_plf_func_p_set = 0x40054288) + [!provide] PROVIDE (bt_util_buf_env = 0x3ffb8bd4) + [!provide] PROVIDE (cache_flash_mmu_set_rom = 0x400095e0) + 0x40009a14 PROVIDE (Cache_Flush_rom = 0x40009a14) + 0x40009ab8 PROVIDE (Cache_Read_Disable_rom = 0x40009ab8) + 0x40009a84 PROVIDE (Cache_Read_Enable_rom = 0x40009a84) + [!provide] PROVIDE (Cache_Read_Init_rom = 0x40009950) + [!provide] PROVIDE (cache_sram_mmu_set_rom = 0x400097f4) + [!provide] PROVIDE (calc_rtc_memory_crc = 0x40008170) + [!provide] PROVIDE (__clear_cache = 0x40063860) + [!provide] PROVIDE (co_default_bdaddr = 0x3ffae704) + [!provide] PROVIDE (co_null_bdaddr = 0x3ffb80e0) + [!provide] PROVIDE (co_sca2ppm = 0x3ff971e8) + [!provide] PROVIDE (crc16_be = 0x4005d09c) + [!provide] PROVIDE (crc16_le = 0x4005d05c) + [!provide] PROVIDE (crc32_be = 0x4005d024) + 0x4005cfec PROVIDE (crc32_le = 0x4005cfec) + [!provide] PROVIDE (crc8_be = 0x4005d114) + [!provide] PROVIDE (crc8_le = 0x4005d0e0) + [!provide] PROVIDE (_data_end_rom = 0x4000d5c8) + [!provide] PROVIDE (_data_end_btdm_rom = 0x4000d4f8) + [!provide] PROVIDE (_data_start_rom = 0x4000d4f8) + [!provide] PROVIDE (_data_start_btdm_rom = 0x4000d4f4) + [!provide] PROVIDE (_data_start_btdm = 0x3ffae6e0) + [!provide] PROVIDE (_data_end_btdm = 0x3ffaff10) + [!provide] PROVIDE (_bss_start_btdm = 0x3ffb8000) + [!provide] PROVIDE (_bss_end_btdm = 0x3ffbff70) + [!provide] PROVIDE (dbg_default_handler = 0x3ff97218) + [!provide] PROVIDE (dbg_default_state = 0x3ff97220) + [!provide] PROVIDE (dbg_state = 0x3ffb8d5d) + [!provide] PROVIDE (DebugE256PublicKey_x = 0x3ff97428) + [!provide] PROVIDE (DebugE256PublicKey_y = 0x3ff97408) + [!provide] PROVIDE (DebugE256SecretKey = 0x3ff973e8) + [!provide] PROVIDE (debug_timer = 0x3ffe042c) + [!provide] PROVIDE (debug_timerfn = 0x3ffe0430) + [!provide] PROVIDE (dh_group14_generator = 0x3ff9ac60) + [!provide] PROVIDE (dh_group14_prime = 0x3ff9ab60) + [!provide] PROVIDE (dh_group15_generator = 0x3ff9ab5f) + [!provide] PROVIDE (dh_group15_prime = 0x3ff9a9df) + [!provide] PROVIDE (dh_group16_generator = 0x3ff9a9de) + [!provide] PROVIDE (dh_group16_prime = 0x3ff9a7de) + [!provide] PROVIDE (dh_group17_generator = 0x3ff9a7dd) + [!provide] PROVIDE (dh_group17_prime = 0x3ff9a4dd) + [!provide] PROVIDE (dh_group18_generator = 0x3ff9a4dc) + [!provide] PROVIDE (dh_group18_prime = 0x3ff9a0dc) + [!provide] PROVIDE (dh_group1_generator = 0x3ff9ae03) + [!provide] PROVIDE (dh_group1_prime = 0x3ff9ada3) + [!provide] PROVIDE (dh_group2_generator = 0x3ff9ada2) + [!provide] PROVIDE (dh_group2_prime = 0x3ff9ad22) + [!provide] PROVIDE (dh_group5_generator = 0x3ff9ad21) + [!provide] PROVIDE (dh_group5_prime = 0x3ff9ac61) + 0x3ffae290 PROVIDE (g_rom_spiflash_dummy_len_plus = 0x3ffae290) + [!provide] PROVIDE (ecc_env = 0x3ffb8d60) + [!provide] PROVIDE (ecc_Jacobian_InfinityPoint256 = 0x3ff972e8) + [!provide] PROVIDE (em_buf_env = 0x3ffb8d74) + 0x4005d144 PROVIDE (esp_crc8 = 0x4005d144) + [!provide] PROVIDE (_etext = 0x4000d66c) + [!provide] PROVIDE (ets_readySet_ = 0x3ffe01f0) + [!provide] PROVIDE (ets_startup_callback = 0x3ffe0404) + [!provide] PROVIDE (rwip_coex_cfg = 0x3ff9914c) + [!provide] PROVIDE (rwip_priority = 0x3ff99159) + [!provide] PROVIDE (exc_cause_table = 0x3ff991d0) + [!provide] PROVIDE (GF_Jacobian_Point_Addition256 = 0x400163a4) + [!provide] PROVIDE (GF_Jacobian_Point_Double256 = 0x40016260) + [!provide] PROVIDE (GF_Point_Jacobian_To_Affine256 = 0x40016b0c) + [!provide] PROVIDE (g_phyFuns_instance = 0x3ffae0c4) + 0x3ffae270 PROVIDE (g_rom_flashchip = 0x3ffae270) + [!provide] PROVIDE (gTxMsg = 0x3ffe0050) + [!provide] PROVIDE (hci_cmd_desc_root_tab = 0x3ff976d4) + [!provide] PROVIDE (hci_cmd_desc_tab_ctrl_bb = 0x3ff97b70) + [!provide] PROVIDE (hci_cmd_desc_tab_info_par = 0x3ff97b1c) + [!provide] PROVIDE (hci_cmd_desc_tab_le = 0x3ff97870) + [!provide] PROVIDE (hci_cmd_desc_tab_lk_ctrl = 0x3ff97fc0) + [!provide] PROVIDE (hci_cmd_desc_tab_lk_pol = 0x3ff97f3c) + [!provide] PROVIDE (hci_cmd_desc_tab_stat_par = 0x3ff97ac8) + [!provide] PROVIDE (hci_cmd_desc_tab_testing = 0x3ff97a98) + [!provide] PROVIDE (hci_cmd_desc_tab_vs = 0x3ff97714) + [!provide] PROVIDE (hci_command_handler = 0x4004c928) + [!provide] PROVIDE (hci_env = 0x3ffb9350) + [!provide] PROVIDE (rwip_env = 0x3ffb8bcc) + [!provide] PROVIDE (hci_evt_dbg_desc_tab = 0x3ff9750c) + [!provide] PROVIDE (hci_evt_desc_tab = 0x3ff9751c) + [!provide] PROVIDE (hci_evt_le_desc_tab = 0x3ff974b4) + [!provide] PROVIDE (hci_fc_env = 0x3ffb9340) + [!provide] PROVIDE (jd_decomp = 0x400613e8) + [!provide] PROVIDE (jd_prepare = 0x40060fa8) + [!provide] PROVIDE (ke_env = 0x3ffb93cc) + [!provide] PROVIDE (ke_handler_search = 0x4001a430) + [!provide] PROVIDE (ke_task_env = 0x3ffb81d4) + [!provide] PROVIDE (ke_event_env = 0x3ffb81a4) + [!provide] PROVIDE (lb_default_handler = 0x3ff982b8) + [!provide] PROVIDE (lb_default_state_tab_p_get = 0x4001c198) + [!provide] PROVIDE (lb_env = 0x3ffb9424) + [!provide] PROVIDE (lb_hci_cmd_handler_tab_p_get = 0x4001c18c) + [!provide] PROVIDE (lb_state = 0x3ffb94e8) + [!provide] PROVIDE (lc_default_handler = 0x3ff98648) + [!provide] PROVIDE (lc_default_state_tab_p_get = 0x4002f494) + [!provide] PROVIDE (lc_env = 0x3ffb94ec) + [!provide] PROVIDE (lc_hci_cmd_handler_tab_p_get = 0x4002f488) + [!provide] PROVIDE (lc_state = 0x3ffb9508) + [!provide] PROVIDE (ld_acl_br_sizes = 0x3ff98a2a) + [!provide] PROVIDE (ld_acl_br_types = 0x3ff98a36) + [!provide] PROVIDE (ld_acl_edr_sizes = 0x3ff98a14) + [!provide] PROVIDE (ld_acl_edr_types = 0x3ff98a22) + [!provide] PROVIDE (ld_env = 0x3ffb9510) + [!provide] PROVIDE (ld_pcm_settings_dft = 0x3ff98a0c) + [!provide] PROVIDE (ld_sched_params = 0x3ffb96c0) + [!provide] PROVIDE (ld_sync_train_channels = 0x3ff98a3c) + [!provide] PROVIDE (llc_default_handler = 0x3ff98b3c) + [!provide] PROVIDE (llc_default_state_tab_p_get = 0x40046058) + [!provide] PROVIDE (llc_env = 0x3ffb96d0) + [!provide] PROVIDE (llc_hci_acl_data_tx_handler = 0x40042398) + [!provide] PROVIDE (llc_hci_cmd_handler_tab_p_get = 0x40042358) + [!provide] PROVIDE (llc_hci_command_handler = 0x40042360) + [!provide] PROVIDE (llcp_pdu_handler_tab_p_get = 0x40043f64) + [!provide] PROVIDE (llc_state = 0x3ffb96f8) + [!provide] PROVIDE (lldesc_build_chain = 0x4000a850) + [!provide] PROVIDE (lldesc_num2link = 0x4000a948) + [!provide] PROVIDE (lldesc_set_owner = 0x4000a974) + [!provide] PROVIDE (lld_evt_deferred_elt_push = 0x400466b4) + [!provide] PROVIDE (lld_evt_deferred_elt_pop = 0x400466dc) + [!provide] PROVIDE (lld_evt_winsize_change = 0x40046730) + [!provide] PROVIDE (lld_evt_rxwin_compute = 0x400467c8) + [!provide] PROVIDE (lld_evt_slave_time_compute = 0x40046818) + [!provide] PROVIDE (lld_evt_env = 0x3ffb9704) + [!provide] PROVIDE (lld_evt_elt_wait_get = 0x400468e4) + [!provide] PROVIDE (lld_evt_get_next_free_slot = 0x4004692c) + [!provide] PROVIDE (lld_pdu_adv_pk_desc_tab = 0x3ff98c70) + [!provide] PROVIDE (lld_pdu_llcp_pk_desc_tab = 0x3ff98b68) + [!provide] PROVIDE (lld_pdu_tx_flush_list = 0x4004a760) + [!provide] PROVIDE (lld_pdu_pack = 0x4004ab14) + [!provide] PROVIDE (LLM_AA_CT1 = 0x3ff98d8a) + [!provide] PROVIDE (LLM_AA_CT2 = 0x3ff98d88) + [!provide] PROVIDE (llm_default_handler = 0x3ff98d80) + [!provide] PROVIDE (llm_default_state_tab_p_get = 0x4004e718) + [!provide] PROVIDE (llm_hci_cmd_handler_tab_p_get = 0x4004c920) + [!provide] PROVIDE (llm_le_env = 0x3ffb976c) + [!provide] PROVIDE (llm_local_cmds = 0x3ff98d38) + [!provide] PROVIDE (llm_local_data_len_values = 0x3ff98d1c) + [!provide] PROVIDE (llm_local_le_feats = 0x3ff98d30) + [!provide] PROVIDE (llm_local_le_states = 0x3ff98d28) + [!provide] PROVIDE (llm_state = 0x3ffb985c) + [!provide] PROVIDE (lm_default_handler = 0x3ff990e0) + [!provide] PROVIDE (lm_default_state_tab_p_get = 0x40054268) + [!provide] PROVIDE (lm_env = 0x3ffb9860) + [!provide] PROVIDE (lm_hci_cmd_handler_tab_p_get = 0x4005425c) + [!provide] PROVIDE (lm_local_supp_feats = 0x3ff990ee) + [!provide] PROVIDE (lm_n_page_tab = 0x3ff990e8) + [!provide] PROVIDE (lmp_desc_tab = 0x3ff96e6c) + [!provide] PROVIDE (lmp_ext_desc_tab = 0x3ff96d9c) + [!provide] PROVIDE (lm_state = 0x3ffb9a1c) + [!provide] PROVIDE (maxSecretKey_256 = 0x3ff97448) + 0x400095a4 PROVIDE (mmu_init = 0x400095a4) + [!provide] PROVIDE (MultiplyBigHexByUint32_256 = 0x40016214) + [!provide] PROVIDE (MultiplyBigHexModP256 = 0x400160b8) + [!provide] PROVIDE (MultiplyByU32ModP256 = 0x40015fdc) + [!provide] PROVIDE (multofup = 0x4000ab8c) + [!provide] PROVIDE (mz_adler32 = 0x4005edbc) + [!provide] PROVIDE (mz_crc32 = 0x4005ee88) + [!provide] PROVIDE (mz_free = 0x4005eed4) + [!provide] PROVIDE (notEqual256 = 0x40015b04) + [!provide] PROVIDE (one_bits = 0x3ff971f8) + 0x40004100 PROVIDE (phy_get_romfuncs = 0x40004100) + [!provide] PROVIDE (_Pri_4_HandlerAddress = 0x3ffe0648) + [!provide] PROVIDE (_Pri_5_HandlerAddress = 0x3ffe064c) + [!provide] PROVIDE (r_btdm_option_data = 0x3ffae6e0) + [!provide] PROVIDE (r_bt_util_buf_acl_rx_alloc = 0x40010218) + [!provide] PROVIDE (r_bt_util_buf_acl_rx_free = 0x40010234) + [!provide] PROVIDE (r_bt_util_buf_acl_tx_alloc = 0x40010268) + [!provide] PROVIDE (r_bt_util_buf_acl_tx_free = 0x40010280) + [!provide] PROVIDE (r_bt_util_buf_init = 0x400100e4) + [!provide] PROVIDE (r_bt_util_buf_lmp_tx_alloc = 0x400101d0) + [!provide] PROVIDE (r_bt_util_buf_lmp_tx_free = 0x400101ec) + [!provide] PROVIDE (r_bt_util_buf_sync_clear = 0x400103c8) + [!provide] PROVIDE (r_bt_util_buf_sync_init = 0x400102c4) + [!provide] PROVIDE (r_bt_util_buf_sync_rx_alloc = 0x40010468) + [!provide] PROVIDE (r_bt_util_buf_sync_rx_free = 0x4001049c) + [!provide] PROVIDE (r_bt_util_buf_sync_tx_alloc = 0x400103ec) + [!provide] PROVIDE (r_bt_util_buf_sync_tx_free = 0x40010428) + [!provide] PROVIDE (r_co_bdaddr_compare = 0x40014324) + [!provide] PROVIDE (r_co_bytes_to_string = 0x400142e4) + [!provide] PROVIDE (r_co_list_check_size_available = 0x400142c4) + [!provide] PROVIDE (r_co_list_extract = 0x4001404c) + [!provide] PROVIDE (r_co_list_extract_after = 0x40014118) + [!provide] PROVIDE (r_co_list_find = 0x4001419c) + [!provide] PROVIDE (r_co_list_init = 0x40013f14) + [!provide] PROVIDE (r_co_list_insert_after = 0x40014254) + [!provide] PROVIDE (r_co_list_insert_before = 0x40014200) + [!provide] PROVIDE (r_co_list_merge = 0x400141bc) + [!provide] PROVIDE (r_co_list_pool_init = 0x40013f30) + [!provide] PROVIDE (r_co_list_pop_front = 0x40014028) + [!provide] PROVIDE (r_co_list_push_back = 0x40013fb8) + [!provide] PROVIDE (r_co_list_push_front = 0x40013ff4) + [!provide] PROVIDE (r_co_list_size = 0x400142ac) + [!provide] PROVIDE (r_co_nb_good_channels = 0x40014360) + [!provide] PROVIDE (r_co_slot_to_duration = 0x40014348) + [!provide] PROVIDE (r_dbg_init = 0x40014394) + [!provide] PROVIDE (r_dbg_platform_reset_complete = 0x400143d0) + [!provide] PROVIDE (r_dbg_swdiag_init = 0x40014470) + [!provide] PROVIDE (r_dbg_swdiag_read = 0x400144a4) + [!provide] PROVIDE (r_dbg_swdiag_write = 0x400144d0) + [!provide] PROVIDE (r_E1 = 0x400108e8) + [!provide] PROVIDE (r_E21 = 0x40010968) + [!provide] PROVIDE (r_E22 = 0x400109b4) + [!provide] PROVIDE (r_E3 = 0x40010a58) + [!provide] PROVIDE (lm_n192_mod_mul = 0x40011dc0) + [!provide] PROVIDE (lm_n192_mod_add = 0x40011e9c) + [!provide] PROVIDE (lm_n192_mod_sub = 0x40011eec) + [!provide] PROVIDE (r_ea_alarm_clear = 0x40015ab4) + [!provide] PROVIDE (r_ea_alarm_set = 0x40015a10) + [!provide] PROVIDE (r_ea_elt_cancel = 0x400150d0) + [!provide] PROVIDE (r_ea_elt_create = 0x40015264) + [!provide] PROVIDE (r_ea_elt_insert = 0x400152a8) + [!provide] PROVIDE (r_ea_elt_remove = 0x400154f0) + [!provide] PROVIDE (r_ea_finetimer_isr = 0x400155d4) + [!provide] PROVIDE (r_ea_init = 0x40015228) + [!provide] PROVIDE (r_ea_interval_create = 0x4001555c) + [!provide] PROVIDE (r_ea_interval_delete = 0x400155a8) + [!provide] PROVIDE (r_ea_interval_duration_req = 0x4001597c) + [!provide] PROVIDE (r_ea_interval_insert = 0x4001557c) + [!provide] PROVIDE (r_ea_interval_remove = 0x40015590) + [!provide] PROVIDE (ea_conflict_check = 0x40014e9c) + [!provide] PROVIDE (ea_prog_timer = 0x40014f88) + [!provide] PROVIDE (r_ea_offset_req = 0x40015748) + [!provide] PROVIDE (r_ea_sleep_check = 0x40015928) + [!provide] PROVIDE (r_ea_sw_isr = 0x40015724) + [!provide] PROVIDE (r_ea_time_get_halfslot_rounded = 0x40015894) + [!provide] PROVIDE (r_ea_time_get_slot_rounded = 0x400158d4) + [!provide] PROVIDE (r_ecc_abort_key256_generation = 0x40017070) + [!provide] PROVIDE (r_ecc_generate_key256 = 0x40016e00) + [!provide] PROVIDE (r_ecc_gen_new_public_key = 0x400170c0) + [!provide] PROVIDE (r_ecc_gen_new_secret_key = 0x400170e4) + [!provide] PROVIDE (r_ecc_get_debug_Keys = 0x40017224) + [!provide] PROVIDE (r_ecc_init = 0x40016dbc) + [!provide] PROVIDE (ecc_point_multiplication_uint8_256 = 0x40016804) + [!provide] PROVIDE (RecvBuff = 0x3ffe009c) + [!provide] PROVIDE (r_em_buf_init = 0x4001729c) + [!provide] PROVIDE (r_em_buf_rx_buff_addr_get = 0x400173e8) + [!provide] PROVIDE (r_em_buf_rx_free = 0x400173c4) + [!provide] PROVIDE (r_em_buf_tx_buff_addr_get = 0x40017404) + [!provide] PROVIDE (r_em_buf_tx_free = 0x4001741c) + [!provide] PROVIDE (r_F1_256 = 0x400133e4) + [!provide] PROVIDE (r_F2_256 = 0x40013568) + [!provide] PROVIDE (r_F3_256 = 0x40013664) + [!provide] PROVIDE (RFPLL_ICP_TABLE = 0x3ffb8b7c) + [!provide] PROVIDE (r_G_256 = 0x40013470) + [!provide] PROVIDE (r_H3 = 0x40013760) + [!provide] PROVIDE (r_H4 = 0x40013830) + [!provide] PROVIDE (r_h4tl_init = 0x40017878) + [!provide] PROVIDE (r_h4tl_start = 0x40017924) + [!provide] PROVIDE (r_h4tl_stop = 0x40017934) + [!provide] PROVIDE (r_h4tl_write = 0x400178d0) + [!provide] PROVIDE (r_H5 = 0x400138dc) + [!provide] PROVIDE (r_hashConcat = 0x40013a38) + [!provide] PROVIDE (r_hci_acl_tx_data_alloc = 0x4001951c) + [!provide] PROVIDE (r_hci_acl_tx_data_received = 0x40019654) + [!provide] PROVIDE (r_hci_bt_acl_bdaddr_register = 0x40018900) + [!provide] PROVIDE (r_hci_bt_acl_bdaddr_unregister = 0x400189ac) + [!provide] PROVIDE (r_hci_bt_acl_conhdl_register = 0x4001895c) + [!provide] PROVIDE (r_hci_cmd_get_max_param_size = 0x400192d0) + [!provide] PROVIDE (r_hci_cmd_received = 0x400192f8) + [!provide] PROVIDE (r_hci_evt_filter_add = 0x40018a64) + [!provide] PROVIDE (r_hci_evt_mask_set = 0x400189e4) + [!provide] PROVIDE (r_hci_fc_acl_buf_size_set = 0x40017988) + [!provide] PROVIDE (r_hci_fc_acl_en = 0x400179d8) + [!provide] PROVIDE (r_hci_fc_acl_packet_sent = 0x40017a3c) + [!provide] PROVIDE (r_hci_fc_check_host_available_nb_acl_packets = 0x40017aa4) + [!provide] PROVIDE (r_hci_fc_check_host_available_nb_sync_packets = 0x40017ac8) + [!provide] PROVIDE (r_hci_fc_host_nb_acl_pkts_complete = 0x40017a6c) + [!provide] PROVIDE (r_hci_fc_host_nb_sync_pkts_complete = 0x40017a88) + [!provide] PROVIDE (r_hci_fc_init = 0x40017974) + [!provide] PROVIDE (r_hci_fc_sync_buf_size_set = 0x400179b0) + [!provide] PROVIDE (r_hci_fc_sync_en = 0x40017a30) + [!provide] PROVIDE (r_hci_fc_sync_packet_sent = 0x40017a54) + [!provide] PROVIDE (r_hci_init = 0x40018538) + [!provide] PROVIDE (r_hci_look_for_cmd_desc = 0x40018454) + [!provide] PROVIDE (r_hci_look_for_dbg_evt_desc = 0x400184c4) + [!provide] PROVIDE (r_hci_look_for_evt_desc = 0x400184a0) + [!provide] PROVIDE (r_hci_look_for_le_evt_desc = 0x400184e0) + [!provide] PROVIDE (r_hci_reset = 0x4001856c) + [!provide] PROVIDE (r_hci_send_2_host = 0x400185bc) + [!provide] PROVIDE (r_hci_sync_tx_data_alloc = 0x40019754) + [!provide] PROVIDE (r_hci_sync_tx_data_received = 0x400197c0) + [!provide] PROVIDE (r_hci_tl_init = 0x40019290) + [!provide] PROVIDE (r_hci_tl_send = 0x40019228) + [!provide] PROVIDE (r_hci_util_pack = 0x40019874) + [!provide] PROVIDE (r_hci_util_unpack = 0x40019998) + [!provide] PROVIDE (r_hci_voice_settings_get = 0x40018bdc) + [!provide] PROVIDE (r_hci_voice_settings_set = 0x40018be8) + [!provide] PROVIDE (r_HMAC = 0x40013968) + [!provide] PROVIDE (r_import_rf_phy_func = 0x3ffb8354) + [!provide] PROVIDE (r_import_rf_phy_func_p = 0x3ffafd64) + [!provide] PROVIDE (r_ip_funcs = 0x3ffae710) + [!provide] PROVIDE (r_ip_funcs_p = 0x3ffae70c) + [!provide] PROVIDE (r_ke_check_malloc = 0x40019de0) + [!provide] PROVIDE (r_ke_event_callback_set = 0x40019ba8) + [!provide] PROVIDE (r_ke_event_clear = 0x40019c2c) + [!provide] PROVIDE (r_ke_event_flush = 0x40019ccc) + [!provide] PROVIDE (r_ke_event_get = 0x40019c78) + [!provide] PROVIDE (r_ke_event_get_all = 0x40019cc0) + [!provide] PROVIDE (r_ke_event_init = 0x40019b90) + [!provide] PROVIDE (r_ke_event_schedule = 0x40019cdc) + [!provide] PROVIDE (r_ke_event_set = 0x40019be0) + [!provide] PROVIDE (r_ke_flush = 0x4001a374) + [!provide] PROVIDE (r_ke_free = 0x4001a014) + [!provide] PROVIDE (r_ke_get_max_mem_usage = 0x4001a1c8) + [!provide] PROVIDE (r_ke_get_mem_usage = 0x4001a1a0) + [!provide] PROVIDE (r_ke_init = 0x4001a318) + [!provide] PROVIDE (r_ke_is_free = 0x4001a184) + [!provide] PROVIDE (r_ke_malloc = 0x40019eb4) + [!provide] PROVIDE (r_ke_mem_init = 0x40019d3c) + [!provide] PROVIDE (r_ke_mem_is_empty = 0x40019d8c) + [!provide] PROVIDE (r_ke_msg_alloc = 0x4001a1e0) + [!provide] PROVIDE (r_ke_msg_dest_id_get = 0x4001a2e0) + [!provide] PROVIDE (r_ke_msg_discard = 0x4001a850) + [!provide] PROVIDE (r_ke_msg_forward = 0x4001a290) + [!provide] PROVIDE (r_ke_msg_forward_new_id = 0x4001a2ac) + [!provide] PROVIDE (r_ke_msg_free = 0x4001a2cc) + [!provide] PROVIDE (r_ke_msg_in_queue = 0x4001a2f8) + [!provide] PROVIDE (r_ke_msg_save = 0x4001a858) + [!provide] PROVIDE (r_ke_msg_send = 0x4001a234) + [!provide] PROVIDE (r_ke_msg_send_basic = 0x4001a26c) + [!provide] PROVIDE (r_ke_msg_src_id_get = 0x4001a2ec) + [!provide] PROVIDE (r_ke_queue_extract = 0x40055fd0) + [!provide] PROVIDE (r_ke_queue_insert = 0x40056020) + [!provide] PROVIDE (r_ke_sleep_check = 0x4001a3d8) + [!provide] PROVIDE (r_ke_state_get = 0x4001a7d8) + [!provide] PROVIDE (r_ke_state_set = 0x4001a6fc) + [!provide] PROVIDE (r_ke_stats_get = 0x4001a3f0) + [!provide] PROVIDE (r_ke_task_check = 0x4001a8a4) + [!provide] PROVIDE (r_ke_task_create = 0x4001a674) + [!provide] PROVIDE (r_ke_task_delete = 0x4001a6c0) + [!provide] PROVIDE (r_ke_task_init = 0x4001a650) + [!provide] PROVIDE (r_ke_task_msg_flush = 0x4001a860) + [!provide] PROVIDE (r_ke_timer_active = 0x4001ac08) + [!provide] PROVIDE (r_ke_timer_adjust_all = 0x4001ac30) + [!provide] PROVIDE (r_ke_timer_clear = 0x4001ab90) + [!provide] PROVIDE (r_ke_timer_init = 0x4001aa9c) + [!provide] PROVIDE (r_ke_timer_set = 0x4001aac0) + [!provide] PROVIDE (r_ke_timer_sleep_check = 0x4001ac50) + [!provide] PROVIDE (r_KPrimC = 0x40010ad4) + [!provide] PROVIDE (r_lb_clk_adj_activate = 0x4001ae70) + [!provide] PROVIDE (r_lb_clk_adj_id_get = 0x4001af14) + [!provide] PROVIDE (r_lb_clk_adj_period_update = 0x4001af20) + [!provide] PROVIDE (r_lb_init = 0x4001acd4) + [!provide] PROVIDE (r_lb_mst_key = 0x4001afc0) + [!provide] PROVIDE (r_lb_mst_key_cmp = 0x4001af74) + [!provide] PROVIDE (r_lb_mst_key_restart_enc = 0x4001b0d4) + [!provide] PROVIDE (r_lb_mst_start_act_bcst_enc = 0x4001b198) + [!provide] PROVIDE (r_lb_mst_stop_act_bcst_enc = 0x4001b24c) + [!provide] PROVIDE (r_lb_reset = 0x4001ad38) + [!provide] PROVIDE (r_lb_send_lmp = 0x4001adbc) + [!provide] PROVIDE (r_lb_send_pdu_clk_adj = 0x4001af3c) + [!provide] PROVIDE (r_lb_util_get_csb_mode = 0x4001ada4) + [!provide] PROVIDE (r_lb_util_get_nb_broadcast = 0x4001ad80) + [!provide] PROVIDE (r_lb_util_get_res_lt_addr = 0x4001ad98) + [!provide] PROVIDE (r_lb_util_set_nb_broadcast = 0x4001ad8c) + [!provide] PROVIDE (r_lc_afh_set = 0x4001cc74) + [!provide] PROVIDE (r_lc_afh_start = 0x4001d240) + [!provide] PROVIDE (r_lc_auth_cmp = 0x4001cd54) + [!provide] PROVIDE (r_lc_calc_link_key = 0x4001ce7c) + [!provide] PROVIDE (r_lc_chg_pkt_type_cmp = 0x4001d038) + [!provide] PROVIDE (r_lc_chg_pkt_type_cont = 0x4001cfbc) + [!provide] PROVIDE (r_lc_chg_pkt_type_retry = 0x4001d0ac) + [!provide] PROVIDE (r_lc_chk_to = 0x4001d2a8) + [!provide] PROVIDE (r_lc_cmd_stat_send = 0x4001c914) + [!provide] PROVIDE (r_lc_comb_key_svr = 0x4001d30c) + [!provide] PROVIDE (r_lc_con_cmp = 0x4001d44c) + [!provide] PROVIDE (r_lc_con_cmp_evt_send = 0x4001d4fc) + [!provide] PROVIDE (r_lc_conn_seq_done = 0x40021334) + [!provide] PROVIDE (r_lc_detach = 0x4002037c) + [!provide] PROVIDE (r_lc_dhkey = 0x4001d564) + [!provide] PROVIDE (r_lc_enc_cmp = 0x4001d8bc) + [!provide] PROVIDE (r_lc_enc_key_refresh = 0x4001d720) + [!provide] PROVIDE (r_lc_end_chk_colli = 0x4001d858) + [!provide] PROVIDE (r_lc_end_of_sniff_nego = 0x4001d9a4) + [!provide] PROVIDE (r_lc_enter_sniff_mode = 0x4001ddb8) + [!provide] PROVIDE (r_lc_epr_change_lk = 0x4001db38) + [!provide] PROVIDE (r_lc_epr_cmp = 0x4001da88) + [!provide] PROVIDE (r_lc_epr_resp = 0x4001e0b4) + [!provide] PROVIDE (r_lc_epr_rsw_cmp = 0x4001dd40) + [!provide] PROVIDE (r_lc_ext_feat = 0x40020d6c) + [!provide] PROVIDE (r_lc_feat = 0x40020984) + [!provide] PROVIDE (r_lc_hl_connect = 0x400209e8) + [!provide] PROVIDE (r_lc_init = 0x4001c948) + [!provide] PROVIDE (r_lc_init_calc_f3 = 0x4001deb0) + [!provide] PROVIDE (r_lc_initiator_epr = 0x4001e064) + [!provide] PROVIDE (r_lc_init_passkey_loop = 0x4001dfc0) + [!provide] PROVIDE (r_lc_init_start_mutual_auth = 0x4001df60) + [!provide] PROVIDE (r_lc_key_exch_end = 0x4001e140) + [!provide] PROVIDE (r_lc_legacy_pair = 0x4001e1c0) + [!provide] PROVIDE (r_lc_local_switch = 0x4001e22c) + [!provide] PROVIDE (r_lc_local_trans_mode = 0x4001e2e4) + [!provide] PROVIDE (r_lc_local_untrans_mode = 0x4001e3a0) + [!provide] PROVIDE (r_lc_loc_auth = 0x40020ecc) + [!provide] PROVIDE (r_lc_locepr_lkref = 0x4001d648) + [!provide] PROVIDE (r_lc_locepr_rsw = 0x4001d5d0) + [!provide] PROVIDE (r_lc_loc_sniff = 0x40020a6c) + [!provide] PROVIDE (r_lc_max_slot_mgt = 0x4001e410) + [!provide] PROVIDE (r_lc_mst_key = 0x4001e7c0) + [!provide] PROVIDE (r_lc_mst_qos_done = 0x4001ea80) + [!provide] PROVIDE (r_lc_mst_send_mst_key = 0x4001e8f4) + [!provide] PROVIDE (r_lc_mutual_auth_end = 0x4001e670) + [!provide] PROVIDE (r_lc_mutual_auth_end2 = 0x4001e4f4) + [!provide] PROVIDE (r_lc_packet_type = 0x40021038) + [!provide] PROVIDE (r_lc_pair = 0x40020ddc) + [!provide] PROVIDE (r_lc_pairing_cont = 0x4001eafc) + [!provide] PROVIDE (r_lc_passkey_comm = 0x4001ed20) + [!provide] PROVIDE (r_lc_prepare_all_links_for_clk_adj = 0x40021430) + [!provide] PROVIDE (r_lc_proc_rcv_dhkey = 0x4001edec) + [!provide] PROVIDE (r_lc_ptt = 0x4001ee2c) + [!provide] PROVIDE (r_lc_ptt_cmp = 0x4001eeec) + [!provide] PROVIDE (r_lc_qos_setup = 0x4001ef50) + [!provide] PROVIDE (r_lc_rd_rem_name = 0x4001efd0) + [!provide] PROVIDE (r_lc_release = 0x4001f8a8) + [!provide] PROVIDE (r_lc_rem_enc = 0x4001f124) + [!provide] PROVIDE (r_lc_rem_name_cont = 0x4001f290) + [!provide] PROVIDE (r_lc_rem_nego_trans_mode = 0x4001f1b4) + [!provide] PROVIDE (r_lc_rem_sniff = 0x40020ca4) + [!provide] PROVIDE (r_lc_rem_sniff_sub_rate = 0x40020b10) + [!provide] PROVIDE (r_lc_rem_switch = 0x4001f070) + [!provide] PROVIDE (r_lc_rem_trans_mode = 0x4001f314) + [!provide] PROVIDE (r_lc_rem_unsniff = 0x400207a0) + [!provide] PROVIDE (r_lc_rem_untrans_mode = 0x4001f36c) + [!provide] PROVIDE (r_lc_reset = 0x4001c99c) + [!provide] PROVIDE (r_lc_resp_auth = 0x4001f518) + [!provide] PROVIDE (r_lc_resp_calc_f3 = 0x4001f710) + [!provide] PROVIDE (r_lc_resp_num_comp = 0x40020074) + [!provide] PROVIDE (r_lc_resp_oob_nonce = 0x4001f694) + [!provide] PROVIDE (r_lc_resp_oob_wait_nonce = 0x4001f66c) + [!provide] PROVIDE (r_lc_resp_pair = 0x400208a4) + [!provide] PROVIDE (r_lc_resp_sec_auth = 0x4001f4a0) + [!provide] PROVIDE (r_lc_resp_wait_dhkey_cont = 0x4001f86c) + [!provide] PROVIDE (r_lc_restart_enc = 0x4001f8ec) + [!provide] PROVIDE (r_lc_restart_enc_cont = 0x4001f940) + [!provide] PROVIDE (r_lc_restore_afh_reporting = 0x4001f028) + [!provide] PROVIDE (r_lc_restore_to = 0x4001f9e0) + [!provide] PROVIDE (r_lc_ret_sniff_max_slot_chg = 0x4001fa30) + [!provide] PROVIDE (r_lc_rsw_clean_up = 0x4001dc70) + [!provide] PROVIDE (r_lc_rsw_done = 0x4001db94) + [!provide] PROVIDE (r_lc_sco_baseband_ack = 0x40022b00) + [!provide] PROVIDE (r_lc_sco_detach = 0x40021e40) + [!provide] PROVIDE (r_lc_sco_host_accept = 0x40022118) + [!provide] PROVIDE (r_lc_sco_host_reject = 0x400222b8) + [!provide] PROVIDE (r_lc_sco_host_request = 0x40021f4c) + [!provide] PROVIDE (r_lc_sco_host_request_disc = 0x4002235c) + [!provide] PROVIDE (r_lc_sco_init = 0x40021dc8) + [!provide] PROVIDE (r_lc_sco_peer_accept = 0x40022780) + [!provide] PROVIDE (r_lc_sco_peer_accept_disc = 0x40022a08) + [!provide] PROVIDE (r_lc_sco_peer_reject = 0x40022824) + [!provide] PROVIDE (r_lc_sco_peer_reject_disc = 0x40022a8c) + [!provide] PROVIDE (r_lc_sco_peer_request = 0x4002240c) + [!provide] PROVIDE (r_lc_sco_peer_request_disc = 0x400228ec) + [!provide] PROVIDE (r_lc_sco_release = 0x40021eec) + [!provide] PROVIDE (r_lc_sco_reset = 0x40021dfc) + [!provide] PROVIDE (r_lc_sco_timeout = 0x40022bd4) + [!provide] PROVIDE (r_lc_sec_auth_compute_sres = 0x4001f3ec) + [!provide] PROVIDE (r_lc_semi_key_cmp = 0x40020294) + [!provide] PROVIDE (r_lc_send_enc_chg_evt = 0x4002134c) + [!provide] PROVIDE (r_lc_send_enc_mode = 0x40020220) + [!provide] PROVIDE (r_lc_send_lmp = 0x4001c1a8) + [!provide] PROVIDE (r_lc_send_pdu_acc = 0x4001c21c) + [!provide] PROVIDE (r_lc_send_pdu_acc_ext4 = 0x4001c240) + [!provide] PROVIDE (r_lc_send_pdu_au_rand = 0x4001c308) + [!provide] PROVIDE (r_lc_send_pdu_auto_rate = 0x4001c5d0) + [!provide] PROVIDE (r_lc_send_pdu_clk_adj_ack = 0x4001c46c) + [!provide] PROVIDE (r_lc_send_pdu_clk_adj_req = 0x4001c494) + [!provide] PROVIDE (r_lc_send_pdu_comb_key = 0x4001c368) + [!provide] PROVIDE (r_lc_send_pdu_dhkey_chk = 0x4001c8e8) + [!provide] PROVIDE (r_lc_send_pdu_encaps_head = 0x4001c440) + [!provide] PROVIDE (r_lc_send_pdu_encaps_payl = 0x4001c410) + [!provide] PROVIDE (r_lc_send_pdu_enc_key_sz_req = 0x4001c670) + [!provide] PROVIDE (r_lc_send_pdu_esco_lk_rem_req = 0x4001c5a8) + [!provide] PROVIDE (r_lc_send_pdu_feats_ext_req = 0x4001c6ec) + [!provide] PROVIDE (r_lc_send_pdu_feats_res = 0x4001c694) + [!provide] PROVIDE (r_lc_send_pdu_in_rand = 0x4001c338) + [!provide] PROVIDE (r_lc_send_pdu_io_cap_res = 0x4001c72c) + [!provide] PROVIDE (r_lc_send_pdu_lsto = 0x4001c64c) + [!provide] PROVIDE (r_lc_send_pdu_max_slot = 0x4001c3c8) + [!provide] PROVIDE (r_lc_send_pdu_max_slot_req = 0x4001c3ec) + [!provide] PROVIDE (r_lc_send_pdu_not_acc = 0x4001c26c) + [!provide] PROVIDE (r_lc_send_pdu_not_acc_ext4 = 0x4001c294) + [!provide] PROVIDE (r_lc_send_pdu_num_comp_fail = 0x4001c770) + [!provide] PROVIDE (r_lc_send_pdu_pause_enc_aes_req = 0x4001c794) + [!provide] PROVIDE (r_lc_send_pdu_paus_enc_req = 0x4001c7c0) + [!provide] PROVIDE (r_lc_send_pdu_ptt_req = 0x4001c4c0) + [!provide] PROVIDE (r_lc_send_pdu_qos_req = 0x4001c82c) + [!provide] PROVIDE (r_lc_send_pdu_resu_enc_req = 0x4001c7e4) + [!provide] PROVIDE (r_lc_send_pdu_sco_lk_rem_req = 0x4001c580) + [!provide] PROVIDE (r_lc_send_pdu_set_afh = 0x4001c2c8) + [!provide] PROVIDE (r_lc_send_pdu_setup_cmp = 0x4001c808) + [!provide] PROVIDE (r_lc_send_pdu_slot_off = 0x4001c854) + [!provide] PROVIDE (r_lc_send_pdu_sniff_req = 0x4001c5f0) + [!provide] PROVIDE (r_lc_send_pdu_sp_cfm = 0x4001c518) + [!provide] PROVIDE (r_lc_send_pdu_sp_nb = 0x4001c4e8) + [!provide] PROVIDE (r_lc_send_pdu_sres = 0x4001c548) + [!provide] PROVIDE (r_lc_send_pdu_tim_acc = 0x4001c6cc) + [!provide] PROVIDE (r_lc_send_pdu_unit_key = 0x4001c398) + [!provide] PROVIDE (r_lc_send_pdu_unsniff_req = 0x4001c894) + [!provide] PROVIDE (r_lc_send_pdu_vers_req = 0x4001c8b4) + [!provide] PROVIDE (r_lc_skip_hl_oob_req = 0x400201bc) + [!provide] PROVIDE (r_lc_sniff_init = 0x40022cac) + [!provide] PROVIDE (r_lc_sniff_max_slot_chg = 0x40020590) + [!provide] PROVIDE (r_lc_sniff_reset = 0x40022cc8) + [!provide] PROVIDE (r_lc_sniff_slot_unchange = 0x40021100) + [!provide] PROVIDE (r_lc_sniff_sub_mode = 0x400204fc) + [!provide] PROVIDE (r_lc_sp_end = 0x400213a8) + [!provide] PROVIDE (r_lc_sp_fail = 0x40020470) + [!provide] PROVIDE (r_lc_sp_oob_tid_fail = 0x400204cc) + [!provide] PROVIDE (r_lc_ssr_nego = 0x4002125c) + [!provide] PROVIDE (r_lc_start = 0x4001ca28) + [!provide] PROVIDE (r_lc_start_enc = 0x4001fb28) + [!provide] PROVIDE (r_lc_start_enc_key_size = 0x4001fd9c) + [!provide] PROVIDE (r_lc_start_key_exch = 0x4001fe10) + [!provide] PROVIDE (r_lc_start_lmp_to = 0x4001fae8) + [!provide] PROVIDE (r_lc_start_oob = 0x4001fffc) + [!provide] PROVIDE (r_lc_start_passkey = 0x4001feac) + [!provide] PROVIDE (r_lc_start_passkey_loop = 0x4001ff88) + [!provide] PROVIDE (r_lc_stop_afh_report = 0x40020184) + [!provide] PROVIDE (r_lc_stop_enc = 0x40020110) + [!provide] PROVIDE (r_lc_switch_cmp = 0x40020448) + [!provide] PROVIDE (r_lc_unit_key_svr = 0x400206d8) + [!provide] PROVIDE (r_lc_unsniff = 0x40020c50) + [!provide] PROVIDE (r_lc_unsniff_cmp = 0x40020810) + [!provide] PROVIDE (r_lc_unsniff_cont = 0x40020750) + [!provide] PROVIDE (r_lc_upd_to = 0x4002065c) + [!provide] PROVIDE (r_lc_util_convert_pref_rate_to_packet_type = 0x4002f9b0) + [!provide] PROVIDE (r_lc_util_get_max_packet_size = 0x4002f4ac) + [!provide] PROVIDE (r_lc_util_get_offset_clke = 0x4002f538) + [!provide] PROVIDE (r_lc_util_get_offset_clkn = 0x4002f51c) + [!provide] PROVIDE (r_lc_util_set_loc_trans_coll = 0x4002f500) + [!provide] PROVIDE (r_lc_version = 0x40020a30) + [!provide] PROVIDE (lc_set_encap_pdu_data_p192 = 0x4002e4c8) + [!provide] PROVIDE (lc_set_encap_pdu_data_p256 = 0x4002e454) + [!provide] PROVIDE (lm_get_auth_method = 0x40023420) + [!provide] PROVIDE (lmp_accepted_ext_handler = 0x40027290) + [!provide] PROVIDE (lmp_not_accepted_ext_handler = 0x40029c54) + [!provide] PROVIDE (lmp_clk_adj_handler = 0x40027468) + [!provide] PROVIDE (lmp_clk_adj_ack_handler = 0x400274f4) + [!provide] PROVIDE (lm_get_auth_method = 0x40023420) + [!provide] PROVIDE (lmp_accepted_ext_handler = 0x40027290) + [!provide] PROVIDE (lmp_not_accepted_ext_handler = 0x40029c54) + [!provide] PROVIDE (lmp_clk_adj_handler = 0x40027468) + [!provide] PROVIDE (lmp_clk_adj_ack_handler = 0x400274f4) + [!provide] PROVIDE (lmp_clk_adj_req_handler = 0x4002751c) + [!provide] PROVIDE (lmp_feats_res_ext_handler = 0x4002cac4) + [!provide] PROVIDE (lmp_feats_req_ext_handler = 0x4002ccb0) + [!provide] PROVIDE (lmp_pkt_type_tbl_req_handler = 0x40027574) + [!provide] PROVIDE (lmp_esco_link_req_handler = 0x40027610) + [!provide] PROVIDE (lmp_rmv_esco_link_req_handler = 0x400276e8) + [!provide] PROVIDE (lmp_ch_class_req_handler = 0x40027730) + [!provide] PROVIDE (lmp_ch_class_handler = 0x4002ca18) + [!provide] PROVIDE (lmp_ssr_req_handler = 0x4002780c) + [!provide] PROVIDE (lmp_ssr_res_handler = 0x40027900) + [!provide] PROVIDE (lmp_pause_enc_aes_req_handler = 0x400279a4) + [!provide] PROVIDE (lmp_pause_enc_req_handler = 0x4002df90) + [!provide] PROVIDE (lmp_resume_enc_req_handler = 0x4002e084) + [!provide] PROVIDE (lmp_num_comparison_fail_handler = 0x40027a74) + [!provide] PROVIDE (lmp_passkey_fail_handler = 0x40027aec) + [!provide] PROVIDE (lmp_keypress_notif_handler = 0x4002c5c8) + [!provide] PROVIDE (lmp_pwr_ctrl_req_handler = 0x400263bc) + [!provide] PROVIDE (lmp_pwr_ctrl_res_handler = 0x40026480) + [!provide] PROVIDE (lmp_auto_rate_handler = 0x40026548) + [!provide] PROVIDE (lmp_pref_rate_handler = 0x4002657c) + [!provide] PROVIDE (lmp_name_req_handler = 0x40025050) + [!provide] PROVIDE (lmp_name_res_handler = 0x400250bc) + [!provide] PROVIDE (lmp_not_accepted_handler = 0x400251d0) + [!provide] PROVIDE (lmp_accepted_handler = 0x4002e894) + [!provide] PROVIDE (lmp_clk_off_req_handler = 0x40025a44) + [!provide] PROVIDE (lmp_clk_off_res_handler = 0x40025ab8) + [!provide] PROVIDE (lmp_detach_handler = 0x40025b74) + [!provide] PROVIDE (lmp_tempkey_handler = 0x4002b6b0) + [!provide] PROVIDE (lmp_temprand_handler = 0x4002b74c) + [!provide] PROVIDE (lmp_sres_handler = 0x4002b840) + [!provide] PROVIDE (lmp_aurand_handler = 0x4002bda0) + [!provide] PROVIDE (lmp_unitkey_handler = 0x4002c13c) + [!provide] PROVIDE (lmp_combkey_handler = 0x4002c234) + [!provide] PROVIDE (lmp_inrand_handler = 0x4002c414) + [!provide] PROVIDE (lmp_oob_fail_handler = 0x40027b84) + [!provide] PROVIDE (lmp_ping_req_handler = 0x40027c08) + [!provide] PROVIDE (lmp_ping_res_handler = 0x40027c5c) + [!provide] PROVIDE (lmp_enc_mode_req_handler = 0x40025c60) + [!provide] PROVIDE (lmp_enc_key_size_req_handler = 0x40025e54) + [!provide] PROVIDE (lmp_switch_req_handler = 0x40025f84) + [!provide] PROVIDE (lmp_start_enc_req_handler = 0x4002e124) + [!provide] PROVIDE (lmp_stop_enc_req_handler = 0x4002de30) + [!provide] PROVIDE (lmp_sniff_req_handler = 0x400260c8) + [!provide] PROVIDE (lmp_unsniff_req_handler = 0x400261e0) + [!provide] PROVIDE (lmp_incr_pwr_req_handler = 0x4002629c) + [!provide] PROVIDE (lmp_decr_pwr_req_handler = 0x400262f8) + [!provide] PROVIDE (lmp_max_pwr_handler = 0x40026354) + [!provide] PROVIDE (lmp_min_pwr_handler = 0x40026388) + [!provide] PROVIDE (lmp_ver_req_handler = 0x400265f0) + [!provide] PROVIDE (lmp_ver_res_handler = 0x40026670) + [!provide] PROVIDE (lmp_qos_handler = 0x40026790) + [!provide] PROVIDE (lmp_qos_req_handler = 0x40026844) + [!provide] PROVIDE (lmp_sco_link_req_handler = 0x40026930) + [!provide] PROVIDE (lmp_rmv_sco_link_req_handler = 0x40026a10) + [!provide] PROVIDE (lmp_max_slot_handler = 0x40026a54) + [!provide] PROVIDE (lmp_max_slot_req_handler = 0x40026aac) + [!provide] PROVIDE (lmp_timing_accu_req_handler = 0x40026b54) + [!provide] PROVIDE (lmp_timing_accu_res_handler = 0x40026bcc) + [!provide] PROVIDE (lmp_setup_cmp_handler = 0x40026c84) + [!provide] PROVIDE (lmp_feats_res_handler = 0x4002b548) + [!provide] PROVIDE (lmp_feats_req_handler = 0x4002b620) + [!provide] PROVIDE (lmp_host_con_req_handler = 0x4002b3d8) + [!provide] PROVIDE (lmp_use_semi_perm_key_handler = 0x4002b4c4) + [!provide] PROVIDE (lmp_slot_off_handler = 0x40026cc8) + [!provide] PROVIDE (lmp_page_mode_req_handler = 0x40026d0c) + [!provide] PROVIDE (lmp_page_scan_mode_req_handler = 0x40026d4c) + [!provide] PROVIDE (lmp_supv_to_handler = 0x40026d94) + [!provide] PROVIDE (lmp_test_activate_handler = 0x40026e7c) + [!provide] PROVIDE (lmp_test_ctrl_handler = 0x40026ee4) + [!provide] PROVIDE (lmp_enc_key_size_mask_req_handler = 0x40027038) + [!provide] PROVIDE (lmp_enc_key_size_mask_res_handler = 0x400270a4) + [!provide] PROVIDE (lmp_set_afh_handler = 0x4002b2e4) + [!provide] PROVIDE (lmp_encaps_hdr_handler = 0x40027120) + [!provide] PROVIDE (lmp_encaps_payl_handler = 0x4002e590) + [!provide] PROVIDE (lmp_sp_nb_handler = 0x4002acf0) + [!provide] PROVIDE (lmp_sp_cfm_handler = 0x4002b170) + [!provide] PROVIDE (lmp_dhkey_chk_handler = 0x4002ab48) + [!provide] PROVIDE (lmp_pause_enc_aes_req_handler = 0x400279a4) + [!provide] PROVIDE (lmp_io_cap_res_handler = 0x4002c670) + [!provide] PROVIDE (lmp_io_cap_req_handler = 0x4002c7a4) + [!provide] PROVIDE (lc_cmd_cmp_bd_addr_send = 0x4002cec4) + [!provide] PROVIDE (ld_acl_tx_packet_type_select = 0x4002fb40) + [!provide] PROVIDE (ld_acl_sched = 0x40033268) + [!provide] PROVIDE (ld_acl_sniff_sched = 0x4003340c) + [!provide] PROVIDE (ld_acl_sniff_exit = 0x400312b4) + [!provide] PROVIDE (ld_acl_rx = 0x4003274c) + [!provide] PROVIDE (ld_acl_tx = 0x4002ffdc) + [!provide] PROVIDE (ld_acl_rx_sync = 0x4002fbec) + [!provide] PROVIDE (ld_acl_rx_sync2 = 0x4002fd8c) + [!provide] PROVIDE (ld_acl_rx_no_sync = 0x4002fe78) + [!provide] PROVIDE (ld_acl_clk_isr = 0x40030cf8) + [!provide] PROVIDE (ld_acl_rsw_frm_cbk = 0x40033bb0) + [!provide] PROVIDE (ld_sco_modify = 0x40031778) + [!provide] PROVIDE (lm_cmd_cmp_send = 0x40051838) + [!provide] PROVIDE (ld_sco_frm_cbk = 0x400349dc) + [!provide] PROVIDE (ld_acl_sco_rsvd_check = 0x4002fa94) + [!provide] PROVIDE (ld_acl_sniff_frm_cbk = 0x4003482c) + [!provide] PROVIDE (ld_inq_end = 0x4003ab48) + [!provide] PROVIDE (ld_inq_sched = 0x4003aba4) + [!provide] PROVIDE (ld_inq_frm_cbk = 0x4003ae4c) + [!provide] PROVIDE (ld_pscan_frm_cbk = 0x4003ebe4) + [!provide] PROVIDE (r_ld_acl_active_hop_types_get = 0x40036e10) + [!provide] PROVIDE (r_ld_acl_afh_confirm = 0x40036d40) + [!provide] PROVIDE (r_ld_acl_afh_prepare = 0x40036c84) + [!provide] PROVIDE (r_ld_acl_afh_set = 0x40036b60) + [!provide] PROVIDE (r_ld_acl_allowed_tx_packet_types_set = 0x40036810) + [!provide] PROVIDE (r_ld_acl_bcst_rx_dec = 0x40036394) + [!provide] PROVIDE (r_ld_acl_bit_off_get = 0x40036b18) + [!provide] PROVIDE (r_ld_acl_clk_adj_set = 0x40036a00) + [!provide] PROVIDE (r_ld_acl_clk_off_get = 0x40036b00) + [!provide] PROVIDE (r_ld_acl_clk_set = 0x40036950) + [!provide] PROVIDE (r_ld_acl_clock_offset_get = 0x400364c0) + [!provide] PROVIDE (r_ld_acl_current_tx_power_get = 0x400368f0) + [!provide] PROVIDE (r_ld_acl_data_flush = 0x400357bc) + [!provide] PROVIDE (r_ld_acl_data_tx = 0x4003544c) + [!provide] PROVIDE (r_ld_acl_edr_set = 0x4003678c) + [!provide] PROVIDE (r_ld_acl_enc_key_load = 0x40036404) + [!provide] PROVIDE (r_ld_acl_flow_off = 0x40035400) + [!provide] PROVIDE (r_ld_acl_flow_on = 0x4003541c) + [!provide] PROVIDE (r_ld_acl_flush_timeout_get = 0x40035f9c) + [!provide] PROVIDE (r_ld_acl_flush_timeout_set = 0x40035fe0) + [!provide] PROVIDE (r_ld_acl_init = 0x40034d08) + [!provide] PROVIDE (r_ld_acl_lmp_flush = 0x40035d80) + [!provide] PROVIDE (r_ld_acl_lmp_tx = 0x40035b34) + [!provide] PROVIDE (r_ld_acl_lsto_get = 0x400366b4) + [!provide] PROVIDE (r_ld_acl_lsto_set = 0x400366f8) + [!provide] PROVIDE (r_ld_acl_reset = 0x40034d24) + [!provide] PROVIDE (r_ld_acl_role_get = 0x40036b30) + [!provide] PROVIDE (r_ld_acl_rssi_delta_get = 0x40037028) + [!provide] PROVIDE (r_ld_acl_rsw_req = 0x40035e74) + [!provide] PROVIDE (r_ld_acl_rx_enc = 0x40036344) + [!provide] PROVIDE (r_ld_acl_rx_max_slot_get = 0x40036e58) + [!provide] PROVIDE (r_ld_acl_rx_max_slot_set = 0x40036ea0) + [!provide] PROVIDE (r_ld_acl_slot_offset_get = 0x4003653c) + [!provide] PROVIDE (r_ld_acl_slot_offset_set = 0x40036658) + [!provide] PROVIDE (r_ld_acl_sniff = 0x4003617c) + [!provide] PROVIDE (r_ld_acl_sniff_trans = 0x400360a8) + [!provide] PROVIDE (r_ld_acl_ssr_set = 0x40036274) + [!provide] PROVIDE (r_ld_acl_start = 0x40034ddc) + [!provide] PROVIDE (r_ld_acl_stop = 0x4003532c) + [!provide] PROVIDE (r_ld_acl_test_mode_set = 0x40036f24) + [!provide] PROVIDE (r_ld_acl_timing_accuracy_set = 0x4003673c) + [!provide] PROVIDE (r_ld_acl_t_poll_get = 0x40036024) + [!provide] PROVIDE (r_ld_acl_t_poll_set = 0x40036068) + [!provide] PROVIDE (r_ld_acl_tx_enc = 0x400362f8) + [!provide] PROVIDE (ld_acl_frm_cbk = 0x40034414) + [!provide] PROVIDE (ld_acl_rsw_end = 0x40032bc0) + [!provide] PROVIDE (ld_acl_end = 0x40033140) + [!provide] PROVIDE (ld_acl_resched = 0x40033814) + [!provide] PROVIDE (ld_acl_test_mode_update = 0x40032050) + [!provide] PROVIDE (r_ld_acl_unsniff = 0x400361e0) + [!provide] PROVIDE (r_ld_active_check = 0x4003cac4) + [!provide] PROVIDE (r_ld_afh_ch_assess_data_get = 0x4003caec) + [!provide] PROVIDE (r_ld_bcst_acl_data_tx = 0x40038d3c) + [!provide] PROVIDE (r_ld_bcst_acl_init = 0x40038bd0) + [!provide] PROVIDE (r_ld_bcst_acl_reset = 0x40038bdc) + [!provide] PROVIDE (r_ld_bcst_acl_start = 0x4003882c) + [!provide] PROVIDE (r_ld_bcst_afh_update = 0x40038f3c) + [!provide] PROVIDE (r_ld_bcst_enc_key_load = 0x4003906c) + [!provide] PROVIDE (r_ld_bcst_lmp_tx = 0x40038bf8) + [!provide] PROVIDE (r_ld_bcst_tx_enc = 0x40038ff8) + [!provide] PROVIDE (r_ld_bd_addr_get = 0x4003ca20) + [!provide] PROVIDE (r_ld_channel_assess = 0x4003c184) + [!provide] PROVIDE (r_ld_class_of_dev_get = 0x4003ca34) + [!provide] PROVIDE (r_ld_class_of_dev_set = 0x4003ca50) + [!provide] PROVIDE (r_ld_csb_rx_afh_update = 0x40039af4) + [!provide] PROVIDE (r_ld_csb_rx_init = 0x40039690) + [!provide] PROVIDE (r_ld_csb_rx_reset = 0x4003969c) + [!provide] PROVIDE (r_ld_csb_rx_start = 0x4003972c) + [!provide] PROVIDE (r_ld_csb_rx_stop = 0x40039bb8) + [!provide] PROVIDE (r_ld_csb_tx_afh_update = 0x4003a5fc) + [!provide] PROVIDE (r_ld_csb_tx_clr_data = 0x4003a71c) + [!provide] PROVIDE (r_ld_csb_tx_dis = 0x4003a5e8) + [!provide] PROVIDE (r_ld_csb_tx_en = 0x4003a1c0) + [!provide] PROVIDE (r_ld_csb_tx_init = 0x4003a0e8) + [!provide] PROVIDE (r_ld_csb_tx_reset = 0x4003a0f8) + [!provide] PROVIDE (r_ld_csb_tx_set_data = 0x4003a6c0) + [!provide] PROVIDE (r_ld_fm_clk_isr = 0x4003a7a8) + [!provide] PROVIDE (r_ld_fm_frame_isr = 0x4003a82c) + [!provide] PROVIDE (r_ld_fm_init = 0x4003a760) + [!provide] PROVIDE (r_ld_fm_prog_check = 0x4003ab28) + [!provide] PROVIDE (r_ld_fm_prog_disable = 0x4003a984) + [!provide] PROVIDE (r_ld_fm_prog_enable = 0x4003a944) + [!provide] PROVIDE (r_ld_fm_prog_push = 0x4003a9d4) + [!provide] PROVIDE (r_ld_fm_reset = 0x4003a794) + [!provide] PROVIDE (r_ld_fm_rx_isr = 0x4003a7f4) + [!provide] PROVIDE (r_ld_fm_sket_isr = 0x4003a8a4) + [!provide] PROVIDE (r_ld_init = 0x4003c294) + [!provide] PROVIDE (r_ld_inq_init = 0x4003b15c) + [!provide] PROVIDE (r_ld_inq_reset = 0x4003b168) + [!provide] PROVIDE (r_ld_inq_start = 0x4003b1f0) + [!provide] PROVIDE (r_ld_inq_stop = 0x4003b4f0) + [!provide] PROVIDE (r_ld_iscan_eir_get = 0x4003c118) + [!provide] PROVIDE (r_ld_iscan_eir_set = 0x4003bfa0) + [!provide] PROVIDE (r_ld_iscan_init = 0x4003b9f0) + [!provide] PROVIDE (r_ld_iscan_reset = 0x4003ba14) + [!provide] PROVIDE (r_ld_iscan_restart = 0x4003ba44) + [!provide] PROVIDE (r_ld_iscan_start = 0x4003bb28) + [!provide] PROVIDE (r_ld_iscan_stop = 0x4003bf1c) + [!provide] PROVIDE (r_ld_iscan_tx_pwr_get = 0x4003c138) + [!provide] PROVIDE (r_ld_page_init = 0x4003d808) + [!provide] PROVIDE (r_ld_page_reset = 0x4003d814) + [!provide] PROVIDE (r_ld_page_start = 0x4003d848) + [!provide] PROVIDE (r_ld_page_stop = 0x4003da54) + [!provide] PROVIDE (r_ld_pca_coarse_clock_adjust = 0x4003e324) + [!provide] PROVIDE (r_ld_pca_init = 0x4003deb4) + [!provide] PROVIDE (r_ld_pca_initiate_clock_dragging = 0x4003e4ac) + [!provide] PROVIDE (r_ld_pca_local_config = 0x4003df6c) + [!provide] PROVIDE (r_ld_pca_mws_frame_sync = 0x4003e104) + [!provide] PROVIDE (r_ld_pca_mws_moment_offset_gt = 0x4003e278) + [!provide] PROVIDE (r_ld_pca_mws_moment_offset_lt = 0x4003e280) + [!provide] PROVIDE (r_ld_pca_reporting_enable = 0x4003e018) + [!provide] PROVIDE (r_ld_pca_reset = 0x4003df0c) + [!provide] PROVIDE (r_ld_pca_update_target_offset = 0x4003e050) + [!provide] PROVIDE (r_ld_pscan_evt_handler = 0x4003f238) + [!provide] PROVIDE (r_ld_pscan_init = 0x4003f474) + [!provide] PROVIDE (r_ld_pscan_reset = 0x4003f498) + [!provide] PROVIDE (r_ld_pscan_restart = 0x4003f4b8) + [!provide] PROVIDE (r_ld_pscan_start = 0x4003f514) + [!provide] PROVIDE (r_ld_pscan_stop = 0x4003f618) + [!provide] PROVIDE (r_ld_read_clock = 0x4003c9e4) + [!provide] PROVIDE (r_ld_reset = 0x4003c714) + [!provide] PROVIDE (r_ld_sched_acl_add = 0x4003f978) + [!provide] PROVIDE (r_ld_sched_acl_remove = 0x4003f99c) + [!provide] PROVIDE (r_ld_sched_compute = 0x4003f6f8) + [!provide] PROVIDE (r_ld_sched_init = 0x4003f7ac) + [!provide] PROVIDE (r_ld_sched_inq_add = 0x4003f8a8) + [!provide] PROVIDE (r_ld_sched_inq_remove = 0x4003f8d0) + [!provide] PROVIDE (r_ld_sched_iscan_add = 0x4003f7e8) + [!provide] PROVIDE (r_ld_sched_iscan_remove = 0x4003f808) + [!provide] PROVIDE (r_ld_sched_page_add = 0x4003f910) + [!provide] PROVIDE (r_ld_sched_page_remove = 0x4003f938) + [!provide] PROVIDE (r_ld_sched_pscan_add = 0x4003f828) + [!provide] PROVIDE (r_ld_sched_pscan_remove = 0x4003f848) + [!provide] PROVIDE (r_ld_sched_reset = 0x4003f7d4) + [!provide] PROVIDE (r_ld_sched_sco_add = 0x4003fa4c) + [!provide] PROVIDE (r_ld_sched_sco_remove = 0x4003fa9c) + [!provide] PROVIDE (r_ld_sched_sniff_add = 0x4003f9c4) + [!provide] PROVIDE (r_ld_sched_sniff_remove = 0x4003fa0c) + [!provide] PROVIDE (r_ld_sched_sscan_add = 0x4003f868) + [!provide] PROVIDE (r_ld_sched_sscan_remove = 0x4003f888) + [!provide] PROVIDE (r_ld_sco_audio_isr = 0x40037cc8) + [!provide] PROVIDE (r_ld_sco_data_tx = 0x40037ee8) + [!provide] PROVIDE (r_ld_sco_start = 0x40037110) + [!provide] PROVIDE (r_ld_sco_stop = 0x40037c40) + [!provide] PROVIDE (r_ld_sco_update = 0x40037a74) + [!provide] PROVIDE (r_ld_sscan_activated = 0x4004031c) + [!provide] PROVIDE (r_ld_sscan_init = 0x400402f0) + [!provide] PROVIDE (r_ld_sscan_reset = 0x400402fc) + [!provide] PROVIDE (r_ld_sscan_start = 0x40040384) + [!provide] PROVIDE (r_ld_strain_init = 0x400409f4) + [!provide] PROVIDE (r_ld_strain_reset = 0x40040a00) + [!provide] PROVIDE (r_ld_strain_start = 0x40040a8c) + [!provide] PROVIDE (r_ld_strain_stop = 0x40040df0) + [!provide] PROVIDE (r_ld_timing_accuracy_get = 0x4003caac) + [!provide] PROVIDE (r_ld_util_active_master_afh_map_get = 0x4004131c) + [!provide] PROVIDE (r_ld_util_active_master_afh_map_set = 0x40041308) + [!provide] PROVIDE (r_ld_util_bch_create = 0x40040fcc) + [!provide] PROVIDE (r_ld_util_fhs_pk = 0x400411c8) + [!provide] PROVIDE (r_ld_util_fhs_unpk = 0x40040e54) + [!provide] PROVIDE (r_ld_util_stp_pk = 0x400413f4) + [!provide] PROVIDE (r_ld_util_stp_unpk = 0x40041324) + [!provide] PROVIDE (r_ld_version_get = 0x4003ca6c) + [!provide] PROVIDE (r_ld_wlcoex_set = 0x4003caf8) + [!provide] PROVIDE (r_llc_ch_assess_get_current_ch_map = 0x40041574) + [!provide] PROVIDE (r_llc_ch_assess_get_local_ch_map = 0x4004150c) + [!provide] PROVIDE (r_llc_ch_assess_local = 0x40041494) + [!provide] PROVIDE (r_llc_ch_assess_merge_ch = 0x40041588) + [!provide] PROVIDE (r_llc_ch_assess_reass_ch = 0x400415c0) + [!provide] PROVIDE (r_llc_common_cmd_complete_send = 0x40044eac) + [!provide] PROVIDE (r_llc_common_cmd_status_send = 0x40044ee0) + [!provide] PROVIDE (r_llc_common_enc_change_evt_send = 0x40044f6c) + [!provide] PROVIDE (r_llc_common_enc_key_ref_comp_evt_send = 0x40044f38) + [!provide] PROVIDE (r_llc_common_flush_occurred_send = 0x40044f0c) + [!provide] PROVIDE (r_llc_common_nb_of_pkt_comp_evt_send = 0x40045000) + [!provide] PROVIDE (r_llc_con_update_complete_send = 0x40044d68) + [!provide] PROVIDE (r_llc_con_update_finished = 0x4004518c) + [!provide] PROVIDE (r_llc_con_update_ind = 0x40045038) + [!provide] PROVIDE (r_llc_discon_event_complete_send = 0x40044a30) + [!provide] PROVIDE (r_llc_end_evt_defer = 0x40046330) + [!provide] PROVIDE (r_llc_feats_rd_event_send = 0x40044e0c) + [!provide] PROVIDE (r_llc_init = 0x40044778) + [!provide] PROVIDE (r_llc_le_con_cmp_evt_send = 0x40044a78) + [!provide] PROVIDE (r_llc_llcp_ch_map_update_pdu_send = 0x40043f94) + [!provide] PROVIDE (r_llc_llcp_con_param_req_pdu_send = 0x400442fc) + [!provide] PROVIDE (r_llc_llcp_con_param_rsp_pdu_send = 0x40044358) + [!provide] PROVIDE (r_llc_llcp_con_update_pdu_send = 0x400442c4) + [!provide] PROVIDE (r_llc_llcp_enc_req_pdu_send = 0x40044064) + [!provide] PROVIDE (r_llc_llcp_enc_rsp_pdu_send = 0x40044160) + [!provide] PROVIDE (r_llc_llcp_feats_req_pdu_send = 0x400443b4) + [!provide] PROVIDE (r_llc_llcp_feats_rsp_pdu_send = 0x400443f0) + [!provide] PROVIDE (r_llc_llcp_get_autorize = 0x4004475c) + [!provide] PROVIDE (r_llc_llcp_length_req_pdu_send = 0x40044574) + [!provide] PROVIDE (r_llc_llcp_length_rsp_pdu_send = 0x400445ac) + [!provide] PROVIDE (r_llc_llcp_pause_enc_req_pdu_send = 0x40043fd8) + [!provide] PROVIDE (r_llc_llcp_pause_enc_rsp_pdu_send = 0x40044010) + [!provide] PROVIDE (r_llc_llcp_ping_req_pdu_send = 0x4004454c) + [!provide] PROVIDE (r_llc_llcp_ping_rsp_pdu_send = 0x40044560) + [!provide] PROVIDE (r_llc_llcp_recv_handler = 0x40044678) + [!provide] PROVIDE (r_llc_llcp_reject_ind_pdu_send = 0x4004425c) + [!provide] PROVIDE (r_llc_llcp_start_enc_req_pdu_send = 0x4004441c) + [!provide] PROVIDE (r_llc_llcp_start_enc_rsp_pdu_send = 0x400441f8) + [!provide] PROVIDE (r_llc_llcp_terminate_ind_pdu_send = 0x400444b0) + [!provide] PROVIDE (r_llc_llcp_tester_send = 0x400445e4) + [!provide] PROVIDE (r_llc_llcp_unknown_rsp_send_pdu = 0x40044534) + [!provide] PROVIDE (r_llc_llcp_version_ind_pdu_send = 0x40043f6c) + [!provide] PROVIDE (r_llc_lsto_con_update = 0x40045098) + [!provide] PROVIDE (r_llc_ltk_req_send = 0x40044dc0) + [!provide] PROVIDE (r_llc_map_update_finished = 0x40045260) + [!provide] PROVIDE (r_llc_map_update_ind = 0x400450f0) + [!provide] PROVIDE (r_llc_pdu_acl_tx_ack_defer = 0x400464dc) + [!provide] PROVIDE (r_llc_pdu_defer = 0x40046528) + [!provide] PROVIDE (r_llc_pdu_llcp_tx_ack_defer = 0x400463ac) + [!provide] PROVIDE (r_llc_reset = 0x400447b8) + [!provide] PROVIDE (r_llc_start = 0x400447f4) + [!provide] PROVIDE (r_llc_stop = 0x400449ac) + [!provide] PROVIDE (r_llc_util_bw_mgt = 0x4004629c) + [!provide] PROVIDE (r_llc_util_clear_operation_ptr = 0x40046234) + [!provide] PROVIDE (r_llc_util_dicon_procedure = 0x40046130) + [!provide] PROVIDE (r_llc_util_get_free_conhdl = 0x400460c8) + [!provide] PROVIDE (r_llc_util_get_nb_active_link = 0x40046100) + [!provide] PROVIDE (r_llc_util_set_auth_payl_to_margin = 0x400461f4) + [!provide] PROVIDE (r_llc_util_set_llcp_discard_enable = 0x400461c8) + [!provide] PROVIDE (r_llc_util_update_channel_map = 0x400461ac) + [!provide] PROVIDE (r_llc_version_rd_event_send = 0x40044e60) + [!provide] PROVIDE (r_lld_adv_start = 0x40048b38) + [!provide] PROVIDE (r_lld_adv_stop = 0x40048ea0) + [!provide] PROVIDE (r_lld_ch_map_ind = 0x4004a2f4) + [!provide] PROVIDE (r_lld_con_param_req = 0x40049f0c) + [!provide] PROVIDE (r_lld_con_param_rsp = 0x40049e00) + [!provide] PROVIDE (r_lld_con_start = 0x400491f8) + [!provide] PROVIDE (r_lld_con_stop = 0x40049fdc) + [!provide] PROVIDE (r_lld_con_update_after_param_req = 0x40049bcc) + [!provide] PROVIDE (r_lld_con_update_ind = 0x4004a30c) + [!provide] PROVIDE (r_lld_con_update_req = 0x40049b60) + [!provide] PROVIDE (r_lld_core_reset = 0x40048a9c) + [!provide] PROVIDE (r_lld_crypt_isr = 0x4004a324) + [!provide] PROVIDE (r_lld_evt_adv_create = 0x400481f4) + [!provide] PROVIDE (r_lld_evt_canceled = 0x400485c8) + [!provide] PROVIDE (r_lld_evt_channel_next = 0x40046aac) + [!provide] PROVIDE (r_lld_evt_deffered_elt_handler = 0x400482bc) + [!provide] PROVIDE (r_lld_evt_delete_elt_handler = 0x40046974) + [!provide] PROVIDE (r_lld_evt_delete_elt_push = 0x40046a3c) + [!provide] PROVIDE (r_lld_evt_drift_compute = 0x40047670) + [!provide] PROVIDE (r_lld_evt_elt_delete = 0x40047538) + [!provide] PROVIDE (r_lld_evt_elt_insert = 0x400474c8) + [!provide] PROVIDE (r_lld_evt_end = 0x400483e8) + [!provide] PROVIDE (r_lld_evt_end_isr = 0x4004862c) + [!provide] PROVIDE (r_lld_evt_init = 0x40046b3c) + [!provide] PROVIDE (r_lld_evt_init_evt = 0x40046cd0) + [!provide] PROVIDE (r_lld_evt_move_to_master = 0x40047ba0) + [!provide] PROVIDE (r_lld_evt_move_to_slave = 0x40047e18) + [!provide] PROVIDE (r_lld_evt_prevent_stop = 0x40047adc) + [!provide] PROVIDE (r_lld_evt_restart = 0x40046d50) + [!provide] PROVIDE (r_lld_evt_rx = 0x40048578) + [!provide] PROVIDE (r_lld_evt_rx_isr = 0x40048678) + [!provide] PROVIDE (r_lld_evt_scan_create = 0x40047ae8) + [!provide] PROVIDE (r_lld_evt_schedule = 0x40047908) + [!provide] PROVIDE (r_lld_evt_schedule_next = 0x400477dc) + [!provide] PROVIDE (r_lld_evt_schedule_next_instant = 0x400476a8) + [!provide] PROVIDE (r_lld_evt_slave_update = 0x40048138) + [!provide] PROVIDE (r_lld_evt_update_create = 0x40047cd8) + [!provide] PROVIDE (r_lld_get_mode = 0x40049ff8) + [!provide] PROVIDE (r_lld_init = 0x4004873c) + [!provide] PROVIDE (r_lld_move_to_master = 0x400499e0) + [!provide] PROVIDE (r_lld_move_to_slave = 0x4004a024) + [!provide] PROVIDE (r_lld_pdu_adv_pack = 0x4004b488) + [!provide] PROVIDE (r_lld_pdu_check = 0x4004ac34) + [!provide] PROVIDE (r_lld_pdu_data_send = 0x4004b018) + [!provide] PROVIDE (r_lld_pdu_data_tx_push = 0x4004aecc) + [!provide] PROVIDE (r_lld_pdu_rx_handler = 0x4004b4d4) + [!provide] PROVIDE (r_lld_pdu_send_packet = 0x4004b774) + [!provide] PROVIDE (r_lld_pdu_tx_flush = 0x4004b414) + [!provide] PROVIDE (r_lld_pdu_tx_loop = 0x4004ae40) + [!provide] PROVIDE (r_lld_pdu_tx_prog = 0x4004b120) + [!provide] PROVIDE (r_lld_pdu_tx_push = 0x4004b080) + [!provide] PROVIDE (r_lld_ral_renew_req = 0x4004a73c) + [!provide] PROVIDE (r_lld_scan_start = 0x40048ee0) + [!provide] PROVIDE (r_lld_scan_stop = 0x40049190) + [!provide] PROVIDE (r_lld_test_mode_rx = 0x4004a540) + [!provide] PROVIDE (r_lld_test_mode_tx = 0x4004a350) + [!provide] PROVIDE (r_lld_test_stop = 0x4004a710) + [!provide] PROVIDE (r_lld_util_anchor_point_move = 0x4004bacc) + [!provide] PROVIDE (r_lld_util_compute_ce_max = 0x4004bc0c) + [!provide] PROVIDE (r_lld_util_connection_param_set = 0x4004ba40) + [!provide] PROVIDE (r_lld_util_dle_set_cs_fields = 0x4004ba90) + [!provide] PROVIDE (r_lld_util_eff_tx_time_set = 0x4004bd88) + [!provide] PROVIDE (r_lld_util_elt_programmed = 0x4004bce0) + [!provide] PROVIDE (r_lld_util_flush_list = 0x4004bbd8) + [!provide] PROVIDE (r_lld_util_freq2chnl = 0x4004b9e4) + [!provide] PROVIDE (r_lld_util_get_bd_address = 0x4004b8ac) + [!provide] PROVIDE (r_lld_util_get_local_offset = 0x4004ba10) + [!provide] PROVIDE (r_lld_util_get_peer_offset = 0x4004ba24) + [!provide] PROVIDE (r_lld_util_get_tx_pkt_cnt = 0x4004bd80) + [!provide] PROVIDE (r_lld_util_instant_get = 0x4004b890) + [!provide] PROVIDE (r_lld_util_instant_ongoing = 0x4004bbfc) + [!provide] PROVIDE (r_lld_util_priority_set = 0x4004bd10) + [!provide] PROVIDE (r_lld_util_priority_update = 0x4004bd78) + [!provide] PROVIDE (r_lld_util_ral_force_rpa_renew = 0x4004b980) + [!provide] PROVIDE (r_lld_util_set_bd_address = 0x4004b8f8) + [!provide] PROVIDE (r_lld_wlcoex_set = 0x4004bd98) + [!provide] PROVIDE (r_llm_ble_ready = 0x4004cc34) + [!provide] PROVIDE (r_llm_common_cmd_complete_send = 0x4004d288) + [!provide] PROVIDE (r_llm_common_cmd_status_send = 0x4004d2b4) + [!provide] PROVIDE (r_llm_con_req_ind = 0x4004cc54) + [!provide] PROVIDE (r_llm_con_req_tx_cfm = 0x4004d158) + [!provide] PROVIDE (r_llm_create_con = 0x4004de78) + [!provide] PROVIDE (r_llm_encryption_done = 0x4004dff8) + [!provide] PROVIDE (r_llm_encryption_start = 0x4004e128) + [!provide] PROVIDE (r_llm_end_evt_defer = 0x4004eb6c) + [!provide] PROVIDE (r_llm_init = 0x4004c9f8) + [!provide] PROVIDE (r_llm_le_adv_report_ind = 0x4004cdf4) + [!provide] PROVIDE (r_llm_pdu_defer = 0x4004ec48) + [!provide] PROVIDE (r_llm_ral_clear = 0x4004e1fc) + [!provide] PROVIDE (r_llm_ral_dev_add = 0x4004e23c) + [!provide] PROVIDE (r_llm_ral_dev_rm = 0x4004e3bc) + [!provide] PROVIDE (r_llm_ral_get_rpa = 0x4004e400) + [!provide] PROVIDE (r_llm_ral_set_timeout = 0x4004e4a0) + [!provide] PROVIDE (r_llm_ral_update = 0x4004e4f8) + [!provide] PROVIDE (r_llm_set_adv_data = 0x4004d960) + [!provide] PROVIDE (r_llm_set_adv_en = 0x4004d7ec) + [!provide] PROVIDE (r_llm_set_adv_param = 0x4004d5f4) + [!provide] PROVIDE (r_llm_set_scan_en = 0x4004db64) + [!provide] PROVIDE (r_llm_set_scan_param = 0x4004dac8) + [!provide] PROVIDE (r_llm_set_scan_rsp_data = 0x4004da14) + [!provide] PROVIDE (r_llm_test_mode_start_rx = 0x4004d534) + [!provide] PROVIDE (r_llm_test_mode_start_tx = 0x4004d2fc) + [!provide] PROVIDE (r_llm_util_adv_data_update = 0x4004e8fc) + [!provide] PROVIDE (r_llm_util_apply_bd_addr = 0x4004e868) + [!provide] PROVIDE (r_llm_util_bd_addr_in_ral = 0x4004eb08) + [!provide] PROVIDE (r_llm_util_bd_addr_in_wl = 0x4004e788) + [!provide] PROVIDE (r_llm_util_bd_addr_wl_position = 0x4004e720) + [!provide] PROVIDE (r_llm_util_bl_add = 0x4004e9ac) + [!provide] PROVIDE (r_llm_util_bl_check = 0x4004e930) + [!provide] PROVIDE (r_llm_util_bl_rem = 0x4004ea70) + [!provide] PROVIDE (r_llm_util_check_address_validity = 0x4004e7e4) + [!provide] PROVIDE (r_llm_util_check_evt_mask = 0x4004e8b0) + [!provide] PROVIDE (r_llm_util_check_map_validity = 0x4004e800) + [!provide] PROVIDE (r_llm_util_get_channel_map = 0x4004e8d4) + [!provide] PROVIDE (r_llm_util_get_supp_features = 0x4004e8e8) + [!provide] PROVIDE (r_llm_util_set_public_addr = 0x4004e89c) + [!provide] PROVIDE (r_llm_wl_clr = 0x4004dc54) + [!provide] PROVIDE (r_llm_wl_dev_add = 0x4004dcc0) + [!provide] PROVIDE (r_llm_wl_dev_add_hdl = 0x4004dd38) + [!provide] PROVIDE (r_llm_wl_dev_rem = 0x4004dcfc) + [!provide] PROVIDE (r_llm_wl_dev_rem_hdl = 0x4004dde0) + [!provide] PROVIDE (r_lm_acl_disc = 0x4004f148) + [!provide] PROVIDE (r_LM_AddSniff = 0x40022d20) + [!provide] PROVIDE (r_lm_add_sync = 0x40051358) + [!provide] PROVIDE (r_lm_afh_activate_timer = 0x4004f444) + [!provide] PROVIDE (r_lm_afh_ch_ass_en_get = 0x4004f3f8) + [!provide] PROVIDE (r_lm_afh_host_ch_class_get = 0x4004f410) + [!provide] PROVIDE (r_lm_afh_master_ch_map_get = 0x4004f43c) + [!provide] PROVIDE (r_lm_afh_peer_ch_class_set = 0x4004f418) + [!provide] PROVIDE (r_lm_check_active_sync = 0x40051334) + [!provide] PROVIDE (r_LM_CheckEdrFeatureRequest = 0x4002f90c) + [!provide] PROVIDE (r_LM_CheckSwitchInstant = 0x4002f8c0) + [!provide] PROVIDE (r_lm_check_sync_hl_rsp = 0x4005169c) + [!provide] PROVIDE (r_lm_clk_adj_ack_pending_clear = 0x4004f514) + [!provide] PROVIDE (r_lm_clk_adj_instant_pending_set = 0x4004f4d8) + [!provide] PROVIDE (r_LM_ComputePacketType = 0x4002f554) + [!provide] PROVIDE (r_LM_ComputeSniffSubRate = 0x400233ac) + [!provide] PROVIDE (r_lm_debug_key_compare_192 = 0x4004f3a8) + [!provide] PROVIDE (r_lm_debug_key_compare_256 = 0x4004f3d0) + [!provide] PROVIDE (r_lm_dhkey_calc_init = 0x40013234) + [!provide] PROVIDE (r_lm_dhkey_compare = 0x400132d8) + [!provide] PROVIDE (r_lm_dut_mode_en_get = 0x4004f3ec) + [!provide] PROVIDE (r_LM_ExtractMaxEncKeySize = 0x4001aca4) + [!provide] PROVIDE (r_lm_f1 = 0x40012bb8) + [!provide] PROVIDE (r_lm_f2 = 0x40012cfc) + [!provide] PROVIDE (r_lm_f3 = 0x40013050) + [!provide] PROVIDE (r_lm_g = 0x40012f90) + [!provide] PROVIDE (r_LM_GetAFHSwitchInstant = 0x4002f86c) + [!provide] PROVIDE (r_lm_get_auth_en = 0x4004f1ac) + [!provide] PROVIDE (r_lm_get_common_pkt_types = 0x4002fa1c) + [!provide] PROVIDE (r_LM_GetConnectionAcceptTimeout = 0x4004f1f4) + [!provide] PROVIDE (r_LM_GetFeature = 0x4002f924) + [!provide] PROVIDE (r_LM_GetLinkTimeout = 0x400233ec) + [!provide] PROVIDE (r_LM_GetLocalNameSeg = 0x4004f200) + [!provide] PROVIDE (r_lm_get_loopback_mode = 0x4004f248) + [!provide] PROVIDE (r_LM_GetMasterEncKeySize = 0x4001b29c) + [!provide] PROVIDE (r_LM_GetMasterEncRand = 0x4001b288) + [!provide] PROVIDE (r_LM_GetMasterKey = 0x4001b260) + [!provide] PROVIDE (r_LM_GetMasterKeyRand = 0x4001b274) + [!provide] PROVIDE (r_lm_get_min_sync_intv = 0x400517a8) + [!provide] PROVIDE (r_lm_get_nb_acl = 0x4004ef9c) + [!provide] PROVIDE (r_lm_get_nb_sync_link = 0x4005179c) + [!provide] PROVIDE (r_lm_get_nonce = 0x400131c4) + [!provide] PROVIDE (r_lm_get_oob_local_commit = 0x4004f374) + [!provide] PROVIDE (r_lm_get_oob_local_data_192 = 0x4004f2d4) + [!provide] PROVIDE (r_lm_get_oob_local_data_256 = 0x4004f318) + [!provide] PROVIDE (r_LM_GetPINType = 0x4004f1e8) + [!provide] PROVIDE (r_lm_get_priv_key_192 = 0x4004f278) + [!provide] PROVIDE (r_lm_get_priv_key_256 = 0x4004f2b8) + [!provide] PROVIDE (r_lm_get_pub_key_192 = 0x4004f258) + [!provide] PROVIDE (r_lm_get_pub_key_256 = 0x4004f298) + [!provide] PROVIDE (r_LM_GetQoSParam = 0x4002f6e0) + [!provide] PROVIDE (r_lm_get_sec_con_host_supp = 0x4004f1d4) + [!provide] PROVIDE (r_LM_GetSniffSubratingParam = 0x4002325c) + [!provide] PROVIDE (r_lm_get_sp_en = 0x4004f1c0) + [!provide] PROVIDE (r_LM_GetSwitchInstant = 0x4002f7f8) + [!provide] PROVIDE (r_lm_get_synchdl = 0x4005175c) + [!provide] PROVIDE (r_lm_get_sync_param = 0x400503b4) + [!provide] PROVIDE (r_lm_init = 0x4004ed34) + [!provide] PROVIDE (r_lm_init_sync = 0x400512d8) + [!provide] PROVIDE (r_lm_is_acl_con = 0x4004f47c) + [!provide] PROVIDE (r_lm_is_acl_con_role = 0x4004f49c) + [!provide] PROVIDE (r_lm_is_clk_adj_ack_pending = 0x4004f4e8) + [!provide] PROVIDE (r_lm_is_clk_adj_instant_pending = 0x4004f4c8) + [!provide] PROVIDE (r_lm_local_ext_fr_configured = 0x4004f540) + [!provide] PROVIDE (r_lm_look_for_stored_link_key = 0x4002f948) + [!provide] PROVIDE (r_lm_look_for_sync = 0x40051774) + [!provide] PROVIDE (r_lm_lt_addr_alloc = 0x4004ef1c) + [!provide] PROVIDE (r_lm_lt_addr_free = 0x4004ef74) + [!provide] PROVIDE (r_lm_lt_addr_reserve = 0x4004ef48) + [!provide] PROVIDE (r_LM_MakeCof = 0x4002f84c) + [!provide] PROVIDE (r_LM_MakeRandVec = 0x400112d8) + [!provide] PROVIDE (r_lm_master_clk_adj_req_handler = 0x40054180) + [!provide] PROVIDE (r_LM_MaxSlot = 0x4002f694) + [!provide] PROVIDE (r_lm_modif_sync = 0x40051578) + [!provide] PROVIDE (r_lm_n_is_zero = 0x40012170) + [!provide] PROVIDE (r_lm_num_clk_adj_ack_pending_set = 0x4004f500) + [!provide] PROVIDE (r_lm_oob_f1 = 0x40012e54) + [!provide] PROVIDE (r_lm_pca_sscan_link_get = 0x4004f560) + [!provide] PROVIDE (r_lm_pca_sscan_link_set = 0x4004f550) + [!provide] PROVIDE (nvds_null_read = 0x400542a0) + [!provide] PROVIDE (nvds_null_write = 0x400542a8) + [!provide] PROVIDE (nvds_null_erase = 0x400542b0) + [!provide] PROVIDE (nvds_read = 0x400542c4) + [!provide] PROVIDE (nvds_write = 0x400542fc) + [!provide] PROVIDE (nvds_erase = 0x40054334) + [!provide] PROVIDE (nvds_init_memory = 0x40054358) + [!provide] PROVIDE (r_lmp_pack = 0x4001135c) + [!provide] PROVIDE (r_lmp_unpack = 0x4001149c) + [!provide] PROVIDE (r_lm_read_features = 0x4004f0d8) + [!provide] PROVIDE (r_LM_RemoveSniff = 0x40023124) + [!provide] PROVIDE (r_LM_RemoveSniffSubrating = 0x400233c4) + [!provide] PROVIDE (r_lm_remove_sync = 0x400517c8) + [!provide] PROVIDE (r_lm_reset_sync = 0x40051304) + [!provide] PROVIDE (r_lm_role_switch_finished = 0x4004f028) + [!provide] PROVIDE (r_lm_role_switch_start = 0x4004efe0) + [!provide] PROVIDE (r_lm_sco_nego_end = 0x40051828) + [!provide] PROVIDE (r_LM_SniffSubrateNegoRequired = 0x40023334) + [!provide] PROVIDE (r_LM_SniffSubratingHlReq = 0x40023154) + [!provide] PROVIDE (r_LM_SniffSubratingPeerReq = 0x400231dc) + [!provide] PROVIDE (r_lm_sp_debug_mode_get = 0x4004f398) + [!provide] PROVIDE (r_lm_sp_n192_convert_wnaf = 0x400123c0) + [!provide] PROVIDE (r_lm_sp_n_one = 0x400123a4) + [!provide] PROVIDE (r_lm_sp_p192_add = 0x40012828) + [!provide] PROVIDE (r_lm_sp_p192_dbl = 0x4001268c) + [!provide] PROVIDE (r_lm_sp_p192_invert = 0x40012b6c) + [!provide] PROVIDE (r_lm_sp_p192_point_jacobian_to_affine = 0x40012468) + [!provide] PROVIDE (r_lm_sp_p192_points_jacobian_to_affine = 0x400124e4) + [!provide] PROVIDE (r_lm_sp_p192_point_to_inf = 0x40012458) + [!provide] PROVIDE (r_lm_sp_pre_compute_points = 0x40012640) + [!provide] PROVIDE (r_lm_sp_sha256_calculate = 0x400121a0) + [!provide] PROVIDE (r_LM_SuppressAclPacket = 0x4002f658) + [!provide] PROVIDE (r_lm_sync_flow_ctrl_en_get = 0x4004f404) + [!provide] PROVIDE (r_LM_UpdateAclEdrPacketType = 0x4002f5d8) + [!provide] PROVIDE (r_LM_UpdateAclPacketType = 0x4002f584) + [!provide] PROVIDE (r_modules_funcs = 0x3ffafd6c) + [!provide] PROVIDE (r_modules_funcs_p = 0x3ffafd68) + [!provide] PROVIDE (r_nvds_del = 0x400544c4) + [!provide] PROVIDE (r_nvds_get = 0x40054488) + [!provide] PROVIDE (r_nvds_init = 0x40054410) + [!provide] PROVIDE (r_nvds_lock = 0x400544fc) + [!provide] PROVIDE (r_nvds_put = 0x40054534) + [!provide] PROVIDE (rom_abs_temp = 0x400054f0) + [!provide] PROVIDE (rom_bb_bss_bw_40_en = 0x4000401c) + [!provide] PROVIDE (rom_bb_bss_cbw40_dig = 0x40003bac) + [!provide] PROVIDE (rom_bb_rx_ht20_cen_bcov_en = 0x40003734) + [!provide] PROVIDE (rom_bb_tx_ht20_cen = 0x40003760) + [!provide] PROVIDE (rom_bb_wdg_test_en = 0x40003b70) + [!provide] PROVIDE (rom_cbw2040_cfg = 0x400040b0) + [!provide] PROVIDE (rom_check_noise_floor = 0x40003c78) + [!provide] PROVIDE (rom_chip_i2c_readReg = 0x40004110) + [!provide] PROVIDE (rom_chip_i2c_writeReg = 0x40004168) + [!provide] PROVIDE (rom_chip_v7_bt_init = 0x40004d8c) + [!provide] PROVIDE (rom_chip_v7_rx_init = 0x40004cec) + [!provide] PROVIDE (rom_chip_v7_rx_rifs_en = 0x40003d90) + [!provide] PROVIDE (rom_chip_v7_tx_init = 0x40004d18) + [!provide] PROVIDE (rom_clk_force_on_vit = 0x40003710) + [!provide] PROVIDE (rom_correct_rf_ana_gain = 0x400062a8) + [!provide] PROVIDE (rom_dc_iq_est = 0x400055c8) + [!provide] PROVIDE (rom_disable_agc = 0x40002fa4) + [!provide] PROVIDE (rom_enable_agc = 0x40002fcc) + [!provide] PROVIDE (rom_en_pwdet = 0x4000506c) + [!provide] PROVIDE (rom_gen_rx_gain_table = 0x40003e3c) + [!provide] PROVIDE (rom_get_data_sat = 0x4000312c) + [!provide] PROVIDE (rom_get_fm_sar_dout = 0x40005204) + [!provide] PROVIDE (rom_get_power_db = 0x40005fc8) + [!provide] PROVIDE (rom_get_pwctrl_correct = 0x400065d4) + [!provide] PROVIDE (rom_get_rfcal_rxiq_data = 0x40005bbc) + [!provide] PROVIDE (rom_get_rf_gain_qdb = 0x40006290) + [!provide] PROVIDE (rom_get_sar_dout = 0x40006564) + 0x40004148 PROVIDE (rom_i2c_readReg = 0x40004148) + 0x400041c0 PROVIDE (rom_i2c_readReg_Mask = 0x400041c0) + 0x400041a4 PROVIDE (rom_i2c_writeReg = 0x400041a4) + 0x400041fc PROVIDE (rom_i2c_writeReg_Mask = 0x400041fc) + [!provide] PROVIDE (rom_index_to_txbbgain = 0x40004df8) + [!provide] PROVIDE (rom_iq_est_disable = 0x40005590) + [!provide] PROVIDE (rom_iq_est_enable = 0x40005514) + [!provide] PROVIDE (rom_linear_to_db = 0x40005f64) + [!provide] PROVIDE (rom_loopback_mode_en = 0x400030f8) + [!provide] PROVIDE (rom_meas_tone_pwr_db = 0x40006004) + [!provide] PROVIDE (rom_mhz2ieee = 0x4000404c) + [!provide] PROVIDE (rom_noise_floor_auto_set = 0x40003bdc) + [!provide] PROVIDE (rom_pbus_debugmode = 0x40004458) + [!provide] PROVIDE (rom_pbus_force_mode = 0x40004270) + [!provide] PROVIDE (rom_pbus_force_test = 0x400043c0) + [!provide] PROVIDE (rom_pbus_rd = 0x40004414) + [!provide] PROVIDE (rom_pbus_rd_addr = 0x40004334) + [!provide] PROVIDE (rom_pbus_rd_shift = 0x40004374) + [!provide] PROVIDE (rom_pbus_rx_dco_cal = 0x40005620) + [!provide] PROVIDE (rom_pbus_set_dco = 0x40004638) + [!provide] PROVIDE (rom_pbus_set_rxgain = 0x40004480) + [!provide] PROVIDE (rom_pbus_workmode = 0x4000446c) + [!provide] PROVIDE (rom_pbus_xpd_rx_off = 0x40004508) + [!provide] PROVIDE (rom_pbus_xpd_rx_on = 0x4000453c) + [!provide] PROVIDE (rom_pbus_xpd_tx_off = 0x40004590) + [!provide] PROVIDE (rom_pbus_xpd_tx_on = 0x400045e0) + [!provide] PROVIDE (rom_phy_disable_agc = 0x40002f6c) + [!provide] PROVIDE (rom_phy_disable_cca = 0x40003000) + [!provide] PROVIDE (rom_phy_enable_agc = 0x40002f88) + [!provide] PROVIDE (rom_phy_enable_cca = 0x4000302c) + [!provide] PROVIDE (rom_phy_freq_correct = 0x40004b44) + [!provide] PROVIDE (rom_phyFuns = 0x3ffae0c0) + [!provide] PROVIDE (rom_phy_get_noisefloor = 0x40003c2c) + [!provide] PROVIDE (rom_phy_get_vdd33 = 0x4000642c) + [!provide] PROVIDE (rom_pow_usr = 0x40003044) + [!provide] PROVIDE (rom_read_sar_dout = 0x400051c0) + [!provide] PROVIDE (rom_restart_cal = 0x400046e0) + [!provide] PROVIDE (rom_rfcal_pwrctrl = 0x40006058) + [!provide] PROVIDE (rom_rfcal_rxiq = 0x40005b4c) + [!provide] PROVIDE (rom_rfcal_txcap = 0x40005dec) + [!provide] PROVIDE (rom_rfpll_reset = 0x40004680) + [!provide] PROVIDE (rom_rfpll_set_freq = 0x400047f8) + [!provide] PROVIDE (rom_rtc_mem_backup = 0x40003db4) + [!provide] PROVIDE (rom_rtc_mem_recovery = 0x40003df4) + [!provide] PROVIDE (rom_rx_gain_force = 0x4000351c) + [!provide] PROVIDE (rom_rxiq_cover_mg_mp = 0x40005a68) + [!provide] PROVIDE (rom_rxiq_get_mis = 0x400058e4) + [!provide] PROVIDE (rom_rxiq_set_reg = 0x40005a00) + [!provide] PROVIDE (rom_set_cal_rxdc = 0x400030b8) + [!provide] PROVIDE (rom_set_chan_cal_interp = 0x40005ce0) + [!provide] PROVIDE (rom_set_channel_freq = 0x40004880) + [!provide] PROVIDE (rom_set_loopback_gain = 0x40003060) + [!provide] PROVIDE (rom_set_noise_floor = 0x40003d48) + [!provide] PROVIDE (rom_set_pbus_mem = 0x400031a4) + [!provide] PROVIDE (rom_set_rf_freq_offset = 0x40004ca8) + [!provide] PROVIDE (rom_set_rxclk_en = 0x40003594) + [!provide] PROVIDE (rom_set_txcap_reg = 0x40005d50) + [!provide] PROVIDE (rom_set_txclk_en = 0x40003564) + [!provide] PROVIDE (rom_spur_coef_cfg = 0x40003ac8) + [!provide] PROVIDE (rom_spur_reg_write_one_tone = 0x400037f0) + [!provide] PROVIDE (rom_start_tx_tone = 0x400036b4) + [!provide] PROVIDE (rom_start_tx_tone_step = 0x400035d0) + [!provide] PROVIDE (rom_stop_tx_tone = 0x40003f98) + [!provide] PROVIDE (_rom_store = 0x4000d66c) + [!provide] PROVIDE (_rom_store_table = 0x4000d4f8) + [!provide] PROVIDE (rom_target_power_add_backoff = 0x40006268) + [!provide] PROVIDE (rom_tx_atten_set_interp = 0x400061cc) + [!provide] PROVIDE (rom_txbbgain_to_index = 0x40004dc0) + [!provide] PROVIDE (rom_txcal_work_mode = 0x4000510c) + [!provide] PROVIDE (rom_txdc_cal_init = 0x40004e10) + [!provide] PROVIDE (rom_txdc_cal_v70 = 0x40004ea4) + [!provide] PROVIDE (rom_txiq_cover = 0x4000538c) + [!provide] PROVIDE (rom_txiq_get_mis_pwr = 0x400052dc) + [!provide] PROVIDE (rom_txiq_set_reg = 0x40005154) + [!provide] PROVIDE (rom_tx_pwctrl_bg_init = 0x4000662c) + [!provide] PROVIDE (rom_txtone_linear_pwr = 0x40005290) + [!provide] PROVIDE (rom_wait_rfpll_cal_end = 0x400047a8) + [!provide] PROVIDE (rom_write_gain_mem = 0x4000348c) + [!provide] PROVIDE (rom_write_rfpll_sdm = 0x40004740) + 0x4000ab7c PROVIDE (roundup2 = 0x4000ab7c) + [!provide] PROVIDE (r_plf_funcs_p = 0x3ffb8360) + [!provide] PROVIDE (r_rf_rw_bt_init = 0x40054868) + [!provide] PROVIDE (r_rf_rw_init = 0x40054b0c) + [!provide] PROVIDE (r_rf_rw_le_init = 0x400549d0) + [!provide] PROVIDE (r_rwble_activity_ongoing_check = 0x40054d8c) + [!provide] PROVIDE (r_rwble_init = 0x40054bf4) + [!provide] PROVIDE (r_rwble_isr = 0x40054e08) + [!provide] PROVIDE (r_rwble_reset = 0x40054ce8) + [!provide] PROVIDE (r_rwble_sleep_check = 0x40054d78) + [!provide] PROVIDE (r_rwble_version = 0x40054dac) + [!provide] PROVIDE (r_rwbt_init = 0x40055160) + [!provide] PROVIDE (r_rwbt_isr = 0x40055248) + [!provide] PROVIDE (r_rwbt_reset = 0x400551bc) + [!provide] PROVIDE (r_rwbt_sleep_check = 0x4005577c) + [!provide] PROVIDE (r_rwbt_sleep_enter = 0x400557a4) + [!provide] PROVIDE (r_rwbt_sleep_wakeup = 0x400557fc) + [!provide] PROVIDE (r_rwbt_sleep_wakeup_end = 0x400558cc) + [!provide] PROVIDE (r_rwbt_version = 0x4005520c) + [!provide] PROVIDE (r_rwip_assert_err = 0x40055f88) + [!provide] PROVIDE (r_rwip_check_wakeup_boundary = 0x400558fc) + [!provide] PROVIDE (r_rwip_ext_wakeup_enable = 0x40055f3c) + [!provide] PROVIDE (r_rwip_init = 0x4005595c) + [!provide] PROVIDE (r_rwip_pca_clock_dragging_only = 0x40055f48) + [!provide] PROVIDE (r_rwip_prevent_sleep_clear = 0x40055ec8) + [!provide] PROVIDE (r_rwip_prevent_sleep_set = 0x40055e64) + [!provide] PROVIDE (r_rwip_reset = 0x40055ab8) + [!provide] PROVIDE (r_rwip_schedule = 0x40055b38) + [!provide] PROVIDE (r_rwip_sleep = 0x40055b5c) + [!provide] PROVIDE (r_rwip_sleep_enable = 0x40055f30) + [!provide] PROVIDE (r_rwip_version = 0x40055b20) + [!provide] PROVIDE (r_rwip_wakeup = 0x40055dc4) + [!provide] PROVIDE (r_rwip_wakeup_delay_set = 0x40055e4c) + [!provide] PROVIDE (r_rwip_wakeup_end = 0x40055e18) + [!provide] PROVIDE (r_rwip_wlcoex_set = 0x40055f60) + [!provide] PROVIDE (r_SHA_256 = 0x40013a90) + [!provide] PROVIDE (rwip_coex_cfg = 0x3ff9914c) + [!provide] PROVIDE (rwip_priority = 0x3ff99159) + [!provide] PROVIDE (rwip_rf = 0x3ffbdb28) + [!provide] PROVIDE (rwip_rf_p_get = 0x400558f4) + [!provide] PROVIDE (r_XorKey = 0x400112c0) + [!provide] PROVIDE (sha_blk_bits = 0x3ff99290) + [!provide] PROVIDE (sha_blk_bits_bytes = 0x3ff99288) + [!provide] PROVIDE (sha_blk_hash_bytes = 0x3ff9928c) + [!provide] PROVIDE (sig_matrix = 0x3ffae293) + [!provide] PROVIDE (sip_after_tx_complete = 0x4000b358) + [!provide] PROVIDE (sip_alloc_to_host_evt = 0x4000ab9c) + [!provide] PROVIDE (sip_get_ptr = 0x4000b34c) + [!provide] PROVIDE (sip_get_state = 0x4000ae2c) + [!provide] PROVIDE (sip_init_attach = 0x4000ae58) + [!provide] PROVIDE (sip_install_rx_ctrl_cb = 0x4000ae10) + [!provide] PROVIDE (sip_install_rx_data_cb = 0x4000ae20) + [!provide] PROVIDE (sip_is_active = 0x4000b3c0) + [!provide] PROVIDE (sip_post_init = 0x4000aed8) + [!provide] PROVIDE (sip_reclaim_from_host_cmd = 0x4000adbc) + [!provide] PROVIDE (sip_reclaim_tx_data_pkt = 0x4000ad5c) + [!provide] PROVIDE (sip_send = 0x4000af54) + [!provide] PROVIDE (sip_to_host_chain_append = 0x4000aef8) + [!provide] PROVIDE (sip_to_host_evt_send_done = 0x4000ac04) + [!provide] PROVIDE (slc_add_credits = 0x4000baf4) + [!provide] PROVIDE (slc_enable = 0x4000b64c) + [!provide] PROVIDE (slc_from_host_chain_fetch = 0x4000b7e8) + [!provide] PROVIDE (slc_from_host_chain_recycle = 0x4000bb10) + [!provide] PROVIDE (slc_has_pkt_to_host = 0x4000b5fc) + [!provide] PROVIDE (slc_init_attach = 0x4000b918) + [!provide] PROVIDE (slc_init_credit = 0x4000badc) + [!provide] PROVIDE (slc_reattach = 0x4000b62c) + [!provide] PROVIDE (slc_send_to_host_chain = 0x4000b6a0) + [!provide] PROVIDE (slc_set_host_io_max_window = 0x4000b89c) + [!provide] PROVIDE (slc_to_host_chain_recycle = 0x4000b758) + [!provide] PROVIDE (specialModP256 = 0x4001600c) + [!provide] PROVIDE (__stack = 0x3ffe3f20) + [!provide] PROVIDE (__stack_app = 0x3ffe7e30) + [!provide] PROVIDE (_stack_sentry = 0x3ffe1320) + [!provide] PROVIDE (_stack_sentry_app = 0x3ffe5230) + [!provide] PROVIDE (_start = 0x40000704) + [!provide] PROVIDE (start_tb_console = 0x4005a980) + [!provide] PROVIDE (_stat_r = 0x4000bcb4) + [!provide] PROVIDE (_stext = 0x40000560) + [!provide] PROVIDE (SubtractBigHex256 = 0x40015bcc) + [!provide] PROVIDE (SubtractBigHexMod256 = 0x40015e8c) + [!provide] PROVIDE (SubtractBigHexUint32_256 = 0x40015f8c) + [!provide] PROVIDE (SubtractFromSelfBigHex256 = 0x40015c20) + [!provide] PROVIDE (SubtractFromSelfBigHexSign256 = 0x40015dc8) + [!provide] PROVIDE (sw_to_hw = 0x3ffb8d40) + 0x3ffae020 PROVIDE (syscall_table_ptr_app = 0x3ffae020) + 0x3ffae024 PROVIDE (syscall_table_ptr_pro = 0x3ffae024) + [!provide] PROVIDE (tdefl_compress = 0x400600bc) + [!provide] PROVIDE (tdefl_compress_buffer = 0x400607f4) + [!provide] PROVIDE (tdefl_compress_mem_to_mem = 0x40060900) + [!provide] PROVIDE (tdefl_compress_mem_to_output = 0x400608e0) + [!provide] PROVIDE (tdefl_get_adler32 = 0x400608d8) + [!provide] PROVIDE (tdefl_get_prev_return_status = 0x400608d0) + [!provide] PROVIDE (tdefl_init = 0x40060810) + [!provide] PROVIDE (tdefl_write_image_to_png_file_in_memory = 0x4006091c) + [!provide] PROVIDE (tdefl_write_image_to_png_file_in_memory_ex = 0x40060910) + [!provide] PROVIDE (tinfl_decompress = 0x4005ef30) + [!provide] PROVIDE (tinfl_decompress_mem_to_callback = 0x40060090) + [!provide] PROVIDE (tinfl_decompress_mem_to_mem = 0x40060050) + [!provide] PROVIDE (UartDev = 0x3ffe019c) + [!provide] PROVIDE (user_code_start = 0x3ffe0400) + [!provide] PROVIDE (veryBigHexP256 = 0x3ff9736c) + [!provide] PROVIDE (xthal_bcopy = 0x4000c098) + [!provide] PROVIDE (xthal_copy123 = 0x4000c124) + [!provide] PROVIDE (xthal_get_ccompare = 0x4000c078) + [!provide] PROVIDE (xthal_get_ccount = 0x4000c050) + [!provide] PROVIDE (xthal_get_interrupt = 0x4000c1e4) + [!provide] PROVIDE (xthal_get_intread = 0x4000c1e4) + [!provide] PROVIDE (Xthal_intlevel = 0x3ff9c2b4) + [!provide] PROVIDE (xthal_memcpy = 0x4000c0bc) + [!provide] PROVIDE (xthal_set_ccompare = 0x4000c058) + [!provide] PROVIDE (xthal_set_intclear = 0x4000c1ec) + 0x4000bfdc PROVIDE (_xtos_set_intlevel = 0x4000bfdc) + 0x3ffe01e0 PROVIDE (g_ticks_per_us_pro = 0x3ffe01e0) + 0x3ffe40f0 PROVIDE (g_ticks_per_us_app = 0x3ffe40f0) + 0x40063238 PROVIDE (esp_rom_spiflash_config_param = 0x40063238) + 0x400621b0 PROVIDE (esp_rom_spiflash_read_user_cmd = 0x400621b0) + 0x40062e60 PROVIDE (esp_rom_spiflash_write_encrypted_disable = 0x40062e60) + 0x40062df4 PROVIDE (esp_rom_spiflash_write_encrypted_enable = 0x40062df4) + 0x40062e1c PROVIDE (esp_rom_spiflash_prepare_encrypted_data = 0x40062e1c) + [!provide] PROVIDE (esp_rom_spiflash_select_qio_pins = 0x40061ddc) + [!provide] PROVIDE (esp_rom_spiflash_attach = 0x40062a6c) + 0x40062bc8 PROVIDE (esp_rom_spiflash_config_clk = 0x40062bc8) + 0x3ffae270 PROVIDE (g_rom_spiflash_chip = 0x3ffae270) + [!provide] PROVIDE (SPI_write_enable = 0x40062320) + [!provide] PROVIDE (hci_le_rd_rem_used_feats_cmd_handler = 0x400417b4) + [!provide] PROVIDE (llcp_length_req_handler = 0x40043808) + [!provide] PROVIDE (llcp_unknown_rsp_handler = 0x40043ba8) + [!provide] PROVIDE (llcp_channel_map_req_handler = 0x4004291c) + [!provide] PROVIDE (llcp_con_up_req_handler = 0x400426f0) + [!provide] PROVIDE (FilePacketSendDeflatedReqMsgProc = 0x40008b24) + [!provide] PROVIDE (FilePacketSendReqMsgProc = 0x40008860) + [!provide] PROVIDE (FlashDwnLdDeflatedStartMsgProc = 0x40008ad8) + [!provide] PROVIDE (FlashDwnLdParamCfgMsgProc = 0x4000891c) + [!provide] PROVIDE (FlashDwnLdStartMsgProc = 0x40008820) + [!provide] PROVIDE (FlashDwnLdStopDeflatedReqMsgProc = 0x40008c18) + [!provide] PROVIDE (FlashDwnLdStopReqMsgProc = 0x400088ec) + [!provide] PROVIDE (MemDwnLdStartMsgProc = 0x40008948) + [!provide] PROVIDE (MemDwnLdStopReqMsgProc = 0x400089dc) + [!provide] PROVIDE (MemPacketSendReqMsgProc = 0x40008978) + [!provide] PROVIDE (uart_baudrate_detect = 0x40009034) + [!provide] PROVIDE (uart_buff_switch = 0x400093c0) + [!provide] PROVIDE (UartConnCheck = 0x40008738) + [!provide] PROVIDE (UartConnectProc = 0x40008a04) + [!provide] PROVIDE (UartDwnLdProc = 0x40008ce8) + [!provide] PROVIDE (UartRegReadProc = 0x40008a58) + [!provide] PROVIDE (UartRegWriteProc = 0x40008a14) + [!provide] PROVIDE (UartSetBaudProc = 0x40008aac) + [!provide] PROVIDE (UartSpiAttachProc = 0x40008a6c) + [!provide] PROVIDE (UartSpiReadProc = 0x40008a80) + [!provide] PROVIDE (VerifyFlashMd5Proc = 0x40008c44) + [!provide] PROVIDE (GetUartDevice = 0x40009598) + [!provide] PROVIDE (RcvMsg = 0x4000954c) + [!provide] PROVIDE (SendMsg = 0x40009384) + [!provide] PROVIDE (UartGetCmdLn = 0x40009564) + [!provide] PROVIDE (UartRxString = 0x400092fc) + [!provide] PROVIDE (Uart_Init = 0x40009120) + [!provide] PROVIDE (recv_packet = 0x40009424) + [!provide] PROVIDE (send_packet = 0x40009340) + [!provide] PROVIDE (uartAttach = 0x40008fd0) + [!provide] PROVIDE (uart_div_modify = 0x400090cc) + [!provide] PROVIDE (uart_rx_intr_handler = 0x40008f4c) + 0x400092d0 PROVIDE (uart_rx_one_char = 0x400092d0) + [!provide] PROVIDE (uart_rx_one_char_block = 0x400092a4) + [!provide] PROVIDE (uart_rx_readbuff = 0x40009394) + 0x40009258 PROVIDE (uart_tx_flush = 0x40009258) + 0x40009200 PROVIDE (uart_tx_one_char = 0x40009200) + [!provide] PROVIDE (uart_tx_one_char2 = 0x4000922c) + 0x40009028 PROVIDE (uart_tx_switch = 0x40009028) + [!provide] PROVIDE (gpio_output_set = 0x40009b24) + [!provide] PROVIDE (gpio_output_set_high = 0x40009b5c) + [!provide] PROVIDE (gpio_input_get = 0x40009b88) + [!provide] PROVIDE (gpio_input_get_high = 0x40009b9c) + 0x40009edc PROVIDE (gpio_matrix_in = 0x40009edc) + 0x40009f0c PROVIDE (gpio_matrix_out = 0x40009f0c) + 0x40009fdc PROVIDE (gpio_pad_select_gpio = 0x40009fdc) + [!provide] PROVIDE (gpio_pad_set_drv = 0x4000a11c) + [!provide] PROVIDE (gpio_pad_pulldown = 0x4000a348) + 0x4000a22c PROVIDE (gpio_pad_pullup = 0x4000a22c) + [!provide] PROVIDE (gpio_pad_hold = 0x4000a734) + [!provide] PROVIDE (gpio_pad_unhold = 0x4000a484) + [!provide] PROVIDE (ets_aes_crypt = 0x4005c9b8) + [!provide] PROVIDE (ets_aes_disable = 0x4005c8f8) + [!provide] PROVIDE (ets_aes_enable = 0x4005c8cc) + [!provide] PROVIDE (ets_aes_set_endian = 0x4005c928) + [!provide] PROVIDE (ets_aes_setkey_dec = 0x4005c994) + [!provide] PROVIDE (ets_aes_setkey_enc = 0x4005c97c) + [!provide] PROVIDE (ets_bigint_disable = 0x4005c4e0) + [!provide] PROVIDE (ets_bigint_enable = 0x4005c498) + [!provide] PROVIDE (ets_bigint_mod_mult_getz = 0x4005c818) + [!provide] PROVIDE (ets_bigint_mod_mult_prepare = 0x4005c7b4) + [!provide] PROVIDE (ets_bigint_mod_power_getz = 0x4005c614) + [!provide] PROVIDE (ets_bigint_mod_power_prepare = 0x4005c54c) + [!provide] PROVIDE (ets_bigint_montgomery_mult_getz = 0x4005c7a4) + [!provide] PROVIDE (ets_bigint_montgomery_mult_prepare = 0x4005c6fc) + [!provide] PROVIDE (ets_bigint_mult_getz = 0x4005c6e8) + [!provide] PROVIDE (ets_bigint_mult_prepare = 0x4005c630) + [!provide] PROVIDE (ets_bigint_wait_finish = 0x4005c520) + [!provide] PROVIDE (ets_post = 0x4000673c) + [!provide] PROVIDE (ets_run = 0x400066bc) + [!provide] PROVIDE (ets_set_idle_cb = 0x40006674) + [!provide] PROVIDE (ets_task = 0x40006688) + [!provide] PROVIDE (ets_efuse_get_8M_clock = 0x40008710) + 0x40008658 PROVIDE (ets_efuse_get_spiconfig = 0x40008658) + [!provide] PROVIDE (ets_efuse_program_op = 0x40008628) + [!provide] PROVIDE (ets_efuse_read_op = 0x40008600) + [!provide] PROVIDE (ets_intr_lock = 0x400067b0) + [!provide] PROVIDE (ets_intr_unlock = 0x400067c4) + [!provide] PROVIDE (ets_isr_attach = 0x400067ec) + [!provide] PROVIDE (ets_waiti0 = 0x400067d8) + 0x4000681c PROVIDE (intr_matrix_set = 0x4000681c) + [!provide] PROVIDE (check_pos = 0x400068b8) + 0x4000689c PROVIDE (ets_set_appcpu_boot_addr = 0x4000689c) + [!provide] PROVIDE (ets_set_startup_callback = 0x4000688c) + [!provide] PROVIDE (ets_set_user_start = 0x4000687c) + [!provide] PROVIDE (ets_unpack_flash_code = 0x40007018) + [!provide] PROVIDE (ets_unpack_flash_code_legacy = 0x4000694c) + [!provide] PROVIDE (rom_main = 0x400076c4) + [!provide] PROVIDE (ets_write_char_uart = 0x40007cf8) + 0x40007d18 PROVIDE (ets_install_putc1 = 0x40007d18) + 0x40007d38 PROVIDE (ets_install_putc2 = 0x40007d38) + 0x40007d28 PROVIDE (ets_install_uart_printf = 0x40007d28) + 0x40007d54 PROVIDE (ets_printf = 0x40007d54) + [!provide] PROVIDE (rtc_boot_control = 0x4000821c) + 0x400081d4 PROVIDE (rtc_get_reset_reason = 0x400081d4) + [!provide] PROVIDE (rtc_get_wakeup_cause = 0x400081f4) + [!provide] PROVIDE (rtc_select_apb_bridge = 0x40008288) + 0x40008208 PROVIDE (set_rtc_memory_crc = 0x40008208) + 0x4000824c PROVIDE (software_reset = 0x4000824c) + 0x40008264 PROVIDE (software_reset_cpu = 0x40008264) + [!provide] PROVIDE (ets_secure_boot_check = 0x4005cb40) + [!provide] PROVIDE (ets_secure_boot_check_finish = 0x4005cc04) + [!provide] PROVIDE (ets_secure_boot_check_start = 0x4005cbcc) + [!provide] PROVIDE (ets_secure_boot_finish = 0x4005ca84) + [!provide] PROVIDE (ets_secure_boot_hash = 0x4005cad4) + [!provide] PROVIDE (ets_secure_boot_obtain = 0x4005cb14) + [!provide] PROVIDE (ets_secure_boot_rd_abstract = 0x4005cba8) + [!provide] PROVIDE (ets_secure_boot_rd_iv = 0x4005cb84) + [!provide] PROVIDE (ets_secure_boot_start = 0x4005ca34) + [!provide] PROVIDE (ets_sha_disable = 0x4005c0a8) + [!provide] PROVIDE (ets_sha_enable = 0x4005c07c) + [!provide] PROVIDE (ets_sha_finish = 0x4005c104) + [!provide] PROVIDE (ets_sha_init = 0x4005c0d4) + [!provide] PROVIDE (ets_sha_update = 0x4005c2a0) + 0x40008534 PROVIDE (ets_delay_us = 0x40008534) + [!provide] PROVIDE (ets_get_cpu_frequency = 0x4000855c) + 0x40008588 PROVIDE (ets_get_detected_xtal_freq = 0x40008588) + [!provide] PROVIDE (ets_get_xtal_scale = 0x4000856c) + 0x40008550 PROVIDE (ets_update_cpu_frequency_rom = 0x40008550) + [!provide] PROVIDE (hci_tl_env = 0x3ffb8154) + [!provide] PROVIDE (ld_acl_env = 0x3ffb8258) + [!provide] PROVIDE (ea_env = 0x3ffb80ec) + [!provide] PROVIDE (lc_sco_data_path_config = 0x3ffb81f8) + [!provide] PROVIDE (lc_sco_env = 0x3ffb81fc) + [!provide] PROVIDE (ld_active_ch_map = 0x3ffb8334) + [!provide] PROVIDE (ld_bcst_acl_env = 0x3ffb8274) + [!provide] PROVIDE (ld_csb_rx_env = 0x3ffb8278) + [!provide] PROVIDE (ld_csb_tx_env = 0x3ffb827c) + [!provide] PROVIDE (ld_env = 0x3ffb9510) + [!provide] PROVIDE (ld_fm_env = 0x3ffb8284) + [!provide] PROVIDE (ld_inq_env = 0x3ffb82e4) + [!provide] PROVIDE (ld_iscan_env = 0x3ffb82e8) + [!provide] PROVIDE (ld_page_env = 0x3ffb82f0) + [!provide] PROVIDE (ld_pca_env = 0x3ffb82f4) + [!provide] PROVIDE (ld_pscan_env = 0x3ffb8308) + [!provide] PROVIDE (ld_sched_env = 0x3ffb830c) + [!provide] PROVIDE (ld_sched_params = 0x3ffb96c0) + [!provide] PROVIDE (ld_sco_env = 0x3ffb824c) + [!provide] PROVIDE (ld_sscan_env = 0x3ffb832c) + [!provide] PROVIDE (ld_strain_env = 0x3ffb8330) + [!provide] PROVIDE (LM_Sniff = 0x3ffb8230) + [!provide] PROVIDE (LM_SniffSubRate = 0x3ffb8214) + [!provide] PROVIDE (prbs_64bytes = 0x3ff98992) + [!provide] PROVIDE (nvds_env = 0x3ffb8364) + [!provide] PROVIDE (nvds_magic_number = 0x3ff9912a) + [!provide] PROVIDE (TASK_DESC_LLD = 0x3ff98b58) + [!provide] PROVIDE (ld_acl_clk_isr = 0x40030cf8) + [!provide] PROVIDE (ld_acl_evt_canceled_cbk = 0x40033944) + [!provide] PROVIDE (ld_acl_evt_stop_cbk = 0x40033870) + [!provide] PROVIDE (ld_acl_evt_start_cbk = 0x40030ab0) + [!provide] PROVIDE (ld_acl_test_mode_update = 0x40032050) + [!provide] PROVIDE (ld_acl_resched = 0x40033814) + [!provide] PROVIDE (ld_acl_rx_isr = 0x40033aa8) + [!provide] PROVIDE (lc_acl_disc_ind_handler = 0x4002f270) + [!provide] PROVIDE (lc_pca_sscan_start_req_handler = 0x40029b34) + [!provide] PROVIDE (lmp_feats_req_ext_handler = 0x4002ccb0) + [!provide] PROVIDE (ld_pscan_em_init = 0x4003e5e8) + [!provide] PROVIDE (ld_acl_rsw_start = 0x40032e90) + [!provide] PROVIDE (ld_acl_sniff_enter = 0x40031244) + [!provide] PROVIDE (ld_acl_sniff_trans_sched = 0x40033734) + [!provide] PROVIDE (lc_pwr_decr_ind_handler = 0x4002859c) + [!provide] PROVIDE (lc_pwr_incr_ind_handler = 0x400284a8) + [!provide] PROVIDE (lc_pwr_max_ind_handler = 0x40028690) + [!provide] PROVIDE (lc_setup_sync_param_check = 0x4002354c) + [!provide] PROVIDE (lm_sync_conf = 0x3ffb8348) + [!provide] PROVIDE (lm_nb_sync_active = 0x3ffb8346) + [!provide] PROVIDE (lm_sync_nego = 0x3ffb8345) + [!provide] PROVIDE (lm_nego_cnt = 0x3ffb8344) + [!provide] PROVIDE (lm_nego_cntl = 0x3ffb8342) + [!provide] PROVIDE (lm_nego_max_cnt = 0x3ffb8343) + [!provide] PROVIDE (lm_nego_pkt_used = 0x3ffb8340) + 0x4005cfec PROVIDE (esp_rom_crc32_le = crc32_le) + [!provide] PROVIDE (esp_rom_crc16_le = crc16_le) + [!provide] PROVIDE (esp_rom_crc8_le = crc8_le) + [!provide] PROVIDE (esp_rom_crc32_be = crc32_be) + [!provide] PROVIDE (esp_rom_crc16_be = crc16_be) + [!provide] PROVIDE (esp_rom_crc8_be = crc8_be) + 0x40009fdc PROVIDE (esp_rom_gpio_pad_select_gpio = gpio_pad_select_gpio) + 0x4000a22c 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) + 0x40009edc PROVIDE (esp_rom_gpio_connect_in_signal = gpio_matrix_in) + 0x40009f0c PROVIDE (esp_rom_gpio_connect_out_signal = gpio_matrix_out) + 0x4005d144 PROVIDE (esp_rom_efuse_mac_address_crc8 = esp_crc8) + 0x40008658 PROVIDE (esp_rom_efuse_get_flash_gpio_info = ets_efuse_get_spiconfig) + [!provide] PROVIDE (esp_rom_efuse_is_secure_boot_enabled = ets_efuse_secure_boot_enabled) + 0x40009258 PROVIDE (esp_rom_uart_flush_tx = uart_tx_flush) + 0x40009200 PROVIDE (esp_rom_uart_tx_one_char = uart_tx_one_char) + [!provide] PROVIDE (esp_rom_uart_tx_wait_idle = uart_tx_wait_idle) + 0x400092d0 PROVIDE (esp_rom_uart_rx_one_char = uart_rx_one_char) + [!provide] PROVIDE (esp_rom_uart_rx_string = UartRxString) + 0x40009028 PROVIDE (esp_rom_uart_set_as_console = uart_tx_switch) + [!provide] PROVIDE (esp_rom_uart_putc = ets_write_char_uart) + [!provide] PROVIDE (esp_rom_uart_switch_buffer = uart_buff_switch) + 0x4005da7c PROVIDE (esp_rom_md5_init = 0x4005da7c) + 0x4005da9c PROVIDE (esp_rom_md5_update = 0x4005da9c) + 0x4005db1c PROVIDE (esp_rom_md5_final = 0x4005db1c) + 0x4000824c PROVIDE (esp_rom_software_reset_system = software_reset) + 0x40008264 PROVIDE (esp_rom_software_reset_cpu = software_reset_cpu) + 0x40007d54 PROVIDE (esp_rom_printf = ets_printf) + 0x40008534 PROVIDE (esp_rom_delay_us = ets_delay_us) + 0x40007d28 PROVIDE (esp_rom_install_uart_printf = ets_install_uart_printf) + 0x400081d4 PROVIDE (esp_rom_get_reset_reason = rtc_get_reset_reason) + 0x4000681c PROVIDE (esp_rom_route_intr_matrix = intr_matrix_set) + [!provide] PROVIDE (esp_rom_get_cpu_ticks_per_us = ets_get_cpu_frequency) + [!provide] PROVIDE (esp_rom_spiflash_set_bp = esp_rom_spiflash_lock) + [!provide] PROVIDE (esp_rom_spiflash_write_enable = SPI_write_enable) + 0x40004148 PROVIDE (esp_rom_regi2c_read = rom_i2c_readReg) + 0x400041c0 PROVIDE (esp_rom_regi2c_read_mask = rom_i2c_readReg_Mask) + 0x400041a4 PROVIDE (esp_rom_regi2c_write = rom_i2c_writeReg) + 0x400041fc PROVIDE (esp_rom_regi2c_write_mask = rom_i2c_writeReg_Mask) + 0x4006387c __absvdi2 = 0x4006387c + 0x40063868 __absvsi2 = 0x40063868 + 0x40002590 __adddf3 = 0x40002590 + 0x400020e8 __addsf3 = 0x400020e8 + 0x40002cbc __addvdi3 = 0x40002cbc + 0x40002c98 __addvsi3 = 0x40002c98 + 0x4000c818 __ashldi3 = 0x4000c818 + 0x4000c830 __ashrdi3 = 0x4000c830 + 0x40064b08 __bswapdi2 = 0x40064b08 + 0x40064ae0 __bswapsi2 = 0x40064ae0 + 0x40064b7c __clrsbdi2 = 0x40064b7c + 0x40064b64 __clrsbsi2 = 0x40064b64 + 0x4000ca50 __clzdi2 = 0x4000ca50 + 0x4000c7e8 __clzsi2 = 0x4000c7e8 + 0x40063820 __cmpdi2 = 0x40063820 + 0x4000ca64 __ctzdi2 = 0x4000ca64 + 0x4000c7f0 __ctzsi2 = 0x4000c7f0 + 0x400645a4 __divdc3 = 0x400645a4 + 0x40002954 __divdf3 = 0x40002954 + 0x4000ca84 __divdi3 = 0x4000ca84 + 0x4000c7b8 __divsi3 = 0x4000c7b8 + 0x400636a8 __eqdf2 = 0x400636a8 + 0x40063374 __eqsf2 = 0x40063374 + 0x40002c34 __extendsfdf2 = 0x40002c34 + 0x4000ca2c __ffsdi2 = 0x4000ca2c + 0x4000c804 __ffssi2 = 0x4000c804 + 0x40002ac4 __fixdfdi = 0x40002ac4 + 0x40002a78 __fixdfsi = 0x40002a78 + 0x4000244c __fixsfdi = 0x4000244c + 0x4000240c __fixsfsi = 0x4000240c + 0x40002b30 __fixunsdfsi = 0x40002b30 + 0x40002504 __fixunssfdi = 0x40002504 + 0x400024ac __fixunssfsi = 0x400024ac + 0x4000c988 __floatdidf = 0x4000c988 + 0x4000c8c0 __floatdisf = 0x4000c8c0 + 0x4000c944 __floatsidf = 0x4000c944 + 0x4000c870 __floatsisf = 0x4000c870 + 0x4000c978 __floatundidf = 0x4000c978 + 0x4000c8b0 __floatundisf = 0x4000c8b0 + 0x4000c938 __floatunsidf = 0x4000c938 + 0x4000c864 __floatunsisf = 0x4000c864 + 0x40064a70 __gcc_bcmp = 0x40064a70 + 0x40063768 __gedf2 = 0x40063768 + 0x4006340c __gesf2 = 0x4006340c + 0x400636dc __gtdf2 = 0x400636dc + 0x400633a0 __gtsf2 = 0x400633a0 + 0x40063704 __ledf2 = 0x40063704 + 0x400633c0 __lesf2 = 0x400633c0 + 0x4000c84c __lshrdi3 = 0x4000c84c + 0x40063790 __ltdf2 = 0x40063790 + 0x4006342c __ltsf2 = 0x4006342c + 0x4000cd4c __moddi3 = 0x4000cd4c + 0x4000c7c0 __modsi3 = 0x4000c7c0 + 0x40063c90 __muldc3 = 0x40063c90 + 0x4006358c __muldf3 = 0x4006358c + 0x4000c9fc __muldi3 = 0x4000c9fc + 0x400632c8 __mulsf3 = 0x400632c8 + 0x4000c7b0 __mulsi3 = 0x4000c7b0 + 0x40002d78 __mulvdi3 = 0x40002d78 + 0x40002d60 __mulvsi3 = 0x40002d60 + 0x400636a8 __nedf2 = 0x400636a8 + 0x400634a0 __negdf2 = 0x400634a0 + 0x4000ca14 __negdi2 = 0x4000ca14 + 0x400020c0 __negsf2 = 0x400020c0 + 0x40002e98 __negvdi2 = 0x40002e98 + 0x40002e78 __negvsi2 = 0x40002e78 + 0x40063374 __nesf2 = 0x40063374 + 0x3ff96544 __nsau_data = 0x3ff96544 + 0x40002f3c __paritysi2 = 0x40002f3c + 0x3ff96544 __popcount_tab = 0x3ff96544 + 0x40002ef8 __popcountdi2 = 0x40002ef8 + 0x40002ed0 __popcountsi2 = 0x40002ed0 + 0x400638e4 __powidf2 = 0x400638e4 + 0x400026e4 __subdf3 = 0x400026e4 + 0x400021d0 __subsf3 = 0x400021d0 + 0x40002d20 __subvdi3 = 0x40002d20 + 0x40002cf8 __subvsi3 = 0x40002cf8 + 0x40002b90 __truncdfsf2 = 0x40002b90 + 0x40063840 __ucmpdi2 = 0x40063840 + 0x40064bec __udiv_w_sdiv = 0x40064bec + 0x4000cff8 __udivdi3 = 0x4000cff8 + 0x40064bf4 __udivmoddi4 = 0x40064bf4 + 0x4000c7c8 __udivsi3 = 0x4000c7c8 + 0x4000d280 __umoddi3 = 0x4000d280 + 0x4000c7d0 __umodsi3 = 0x4000c7d0 + 0x4000c7d8 __umulsidi3 = 0x4000c7d8 + 0x400637f4 __unorddf2 = 0x400637f4 + 0x40063478 __unordsf2 = 0x40063478 + 0x3ff96354 _ctype_ = 0x3ff96354 + 0x3ff96350 __ctype_ptr__ = 0x3ff96350 + 0x3ffae0b4 environ = 0x3ffae0b4 + 0x3ffae0b0 _global_impure_ptr = 0x3ffae0b0 + 0x3ff96530 __mb_cur_max = 0x3ff96530 + 0x3ff96458 __sf_fake_stderr = 0x3ff96458 + 0x3ff96498 __sf_fake_stdin = 0x3ff96498 + 0x3ff96478 __sf_fake_stdout = 0x3ff96478 + 0x3ff96540 __wctomb = 0x3ff96540 + 0x3ffae0ac __sfp_lock = 0x3ffae0ac + 0x3ffae0a8 __sinit_lock = 0x3ffae0a8 + 0x3ffae0b8 __env_lock_object = 0x3ffae0b8 + 0x3ffae080 __tz_lock_object = 0x3ffae080 + 0x40001778 close = 0x40001778 + 0x4000178c open = 0x4000178c + 0x400017dc read = 0x400017dc + 0x400017f4 sbrk = 0x400017f4 + 0x40001808 times = 0x40001808 + 0x4000181c write = 0x4000181c + 0x40056340 abs = 0x40056340 + 0x40058ef0 __ascii_wctomb = 0x40058ef0 + 0x400566c4 atoi = 0x400566c4 + 0x400566d4 _atoi_r = 0x400566d4 + 0x400566ec atol = 0x400566ec + 0x400566fc _atol_r = 0x400566fc + 0x4000c1f4 bzero = 0x4000c1f4 + 0x40001df8 _cleanup = 0x40001df8 + 0x40001d48 _cleanup_r = 0x40001d48 + 0x40000e8c creat = 0x40000e8c + 0x40056348 div = 0x40056348 + 0x4000c728 __dummy_lock = 0x4000c728 + 0x4000c730 __dummy_lock_try = 0x4000c730 + 0x40001fd4 __env_lock = 0x40001fd4 + 0x40001fe0 __env_unlock = 0x40001fe0 + 0x400020ac fclose = 0x400020ac + 0x40001fec _fclose_r = 0x40001fec + 0x40059394 fflush = 0x40059394 + 0x40059320 _fflush_r = 0x40059320 + 0x40001f44 _findenv_r = 0x40001f44 + 0x40001f1c __fp_lock_all = 0x40001f1c + 0x40001f30 __fp_unlock_all = 0x40001f30 + 0x40058da0 __fputwc = 0x40058da0 + 0x40058ea8 fputwc = 0x40058ea8 + 0x40058e4c _fputwc_r = 0x40058e4c + 0x4000c738 _fwalk = 0x4000c738 + 0x4000c770 _fwalk_reent = 0x4000c770 + 0x40001fbc _getenv_r = 0x40001fbc + 0x40000f04 isalnum = 0x40000f04 + 0x40000f18 isalpha = 0x40000f18 + 0x4000c20c isascii = 0x4000c20c + 0x40000f2c isblank = 0x40000f2c + 0x40000f50 iscntrl = 0x40000f50 + 0x40000f64 isdigit = 0x40000f64 + 0x40000f94 isgraph = 0x40000f94 + 0x40000f78 islower = 0x40000f78 + 0x40000fa8 isprint = 0x40000fa8 + 0x40000fc0 ispunct = 0x40000fc0 + 0x40000fd4 isspace = 0x40000fd4 + 0x40000fe8 isupper = 0x40000fe8 + 0x40056678 __itoa = 0x40056678 + 0x400566b4 itoa = 0x400566b4 + 0x40056370 labs = 0x40056370 + 0x40056378 ldiv = 0x40056378 + 0x400562cc longjmp = 0x400562cc + 0x4000c220 memccpy = 0x4000c220 + 0x4000c244 memchr = 0x4000c244 + 0x4000c260 memcmp = 0x4000c260 + 0x4000c2c8 memcpy = 0x4000c2c8 + 0x4000c3c0 memmove = 0x4000c3c0 + 0x4000c400 memrchr = 0x4000c400 + 0x4000c44c memset = 0x4000c44c + 0x40056424 qsort = 0x40056424 + 0x40001058 rand = 0x40001058 + 0x400010d4 rand_r = 0x400010d4 + 0x4000c498 __sccl = 0x4000c498 + 0x400011b8 __sclose = 0x400011b8 + 0x40001148 __seofread = 0x40001148 + 0x40056268 setjmp = 0x40056268 + 0x400591e0 __sflush_r = 0x400591e0 + 0x40001dc8 __sfmoreglue = 0x40001dc8 + 0x40001e90 __sfp = 0x40001e90 + 0x40001e08 __sfp_lock_acquire = 0x40001e08 + 0x40001e14 __sfp_lock_release = 0x40001e14 + 0x40001e38 __sinit = 0x40001e38 + 0x40001e20 __sinit_lock_acquire = 0x40001e20 + 0x40001e2c __sinit_lock_release = 0x40001e2c + 0x40001004 srand = 0x40001004 + 0x40001118 __sread = 0x40001118 + 0x40001184 __sseek = 0x40001184 + 0x400011cc strcasecmp = 0x400011cc + 0x40001210 strcasestr = 0x40001210 + 0x4000c518 strcat = 0x4000c518 + 0x4000c53c strchr = 0x4000c53c + 0x40001274 strcmp = 0x40001274 + 0x40001398 strcoll = 0x40001398 + 0x400013ac strcpy = 0x400013ac + 0x4000c558 strcspn = 0x4000c558 + 0x4000143c strdup = 0x4000143c + 0x40001450 _strdup_r = 0x40001450 + 0x40001470 strlcat = 0x40001470 + 0x4000c584 strlcpy = 0x4000c584 + 0x400014c0 strlen = 0x400014c0 + 0x40001524 strlwr = 0x40001524 + 0x40001550 strncasecmp = 0x40001550 + 0x4000c5c4 strncat = 0x4000c5c4 + 0x4000c5f4 strncmp = 0x4000c5f4 + 0x400015d4 strncpy = 0x400015d4 + 0x400016b0 strndup = 0x400016b0 + 0x400016c4 _strndup_r = 0x400016c4 + 0x4000c628 strnlen = 0x4000c628 + 0x40001708 strrchr = 0x40001708 + 0x40001734 strsep = 0x40001734 + 0x4000c648 strspn = 0x4000c648 + 0x4000c674 strstr = 0x4000c674 + 0x4000c6a8 __strtok_r = 0x4000c6a8 + 0x4000c70c strtok_r = 0x4000c70c + 0x4005681c strtol = 0x4005681c + 0x40056714 _strtol_r = 0x40056714 + 0x4005692c strtoul = 0x4005692c + 0x40056834 _strtoul_r = 0x40056834 + 0x4000174c strupr = 0x4000174c + 0x40058f3c __submore = 0x40058f3c + 0x40058cb4 __swbuf = 0x40058cb4 + 0x40058bec __swbuf_r = 0x40058bec + 0x40001150 __swrite = 0x40001150 + 0x4000c720 toascii = 0x4000c720 + 0x40001868 tolower = 0x40001868 + 0x40001884 toupper = 0x40001884 + 0x400590f4 ungetc = 0x400590f4 + 0x40058fa0 _ungetc_r = 0x40058fa0 + 0x400561f0 __utoa = 0x400561f0 + 0x40056258 utoa = 0x40056258 + 0x40058920 wcrtomb = 0x40058920 + 0x400588d8 _wcrtomb_r = 0x400588d8 + 0x40058f14 _wctomb_r = 0x40058f14 + 0x00000010 _esp_flash_mmap_prefetch_pad_size = 0x10 + 0x00000000 _esp_memprot_prefetch_pad_size = 0x0 + 0x00000000 _esp_memprot_align_size = 0x0 + 0x00010000 _esp_mmu_block_size = 0x10000 + 0x3ffb9998 _heap_start = _heap_low_start + 0x400a0000 _sram1_iram_start = 0x400a0000 + 0x00000000 _sram1_iram_len = (_iram_end > _sram1_iram_start)?(_iram_end - _sram1_iram_start):0x0 + 0x40000000 _heap_end = ALIGN (((0x40000000 - _sram1_iram_len) - 0x3), 0x4) + 0x3ff80000 _data_seg_org = ORIGIN (rtc_data_seg) + 0x00000001 ASSERT ((_rodata_start == ORIGIN (default_rodata_seg)), .flash.appdesc section must be placed at the beginning of the rodata segment.) + +.rtc.text 0x400c0000 0x0 + 0x400c0000 . = ALIGN (0x4) + *(.rtc.literal .rtc.text .rtc.text.*) + *rtc_wake_stub*.*(.literal .text .literal.* .text.*) + 0x400c0000 _rtc_text_end = ABSOLUTE (.) + +.rtc.dummy 0x3ff80000 0x0 + 0x3ff80000 _rtc_dummy_start = ABSOLUTE (.) + 0x3ff80000 _rtc_fast_start = ABSOLUTE (.) + 0x00000000 . = SIZEOF (.rtc.text) + 0x3ff80000 _rtc_dummy_end = ABSOLUTE (.) + +.rtc.force_fast + 0x3ff80000 0x0 + 0x3ff80000 . = ALIGN (0x4) + 0x3ff80000 _rtc_force_fast_start = ABSOLUTE (.) + 0x3ff80000 _coredump_rtc_fast_start = ABSOLUTE (.) + *(.rtc.fast.coredump .rtc.fast.coredump.*) + 0x3ff80000 _coredump_rtc_fast_end = ABSOLUTE (.) + *(.rtc.force_fast .rtc.force_fast.*) + 0x3ff80000 . = ALIGN (0x4) + 0x3ff80000 _rtc_force_fast_end = ABSOLUTE (.) + +.rtc.data 0x50000000 0x0 + 0x50000000 _rtc_data_start = ABSOLUTE (.) + 0x50000000 _coredump_rtc_start = ABSOLUTE (.) + *(.rtc.coredump .rtc.coredump.*) + 0x50000000 _coredump_rtc_end = ABSOLUTE (.) + *(.rtc.data .rtc.data.*) + *(.rtc.rodata .rtc.rodata.*) + *rtc_wake_stub*.*(.data .rodata .data.* .rodata.*) + 0x50000000 _rtc_data_end = ABSOLUTE (.) + +.rtc.bss 0x50000000 0x0 + 0x50000000 _rtc_bss_start = ABSOLUTE (.) + *rtc_wake_stub*.*(.bss .bss.*) + *rtc_wake_stub*.*(COMMON) + *(.rtc.bss) + 0x50000000 _rtc_bss_end = ABSOLUTE (.) + +.rtc_noinit 0x50000000 0x0 + 0x50000000 . = ALIGN (0x4) + 0x50000000 _rtc_noinit_start = ABSOLUTE (.) + *(.rtc_noinit .rtc_noinit.*) + 0x50000000 . = ALIGN (0x4) + 0x50000000 _rtc_noinit_end = ABSOLUTE (.) + +.rtc.force_slow + 0x50000000 0x0 + 0x50000000 . = ALIGN (0x4) + 0x50000000 _rtc_force_slow_start = ABSOLUTE (.) + *(.rtc.force_slow .rtc.force_slow.*) + 0x50000000 . = ALIGN (0x4) + 0x50000000 _rtc_force_slow_end = ABSOLUTE (.) + +.rtc_fast_reserved + 0x3ff82000 0x0 + 0x3ff82000 . = ALIGN (0x4) + 0x3ff82000 _rtc_fast_reserved_start = ABSOLUTE (.) + *(.bootloader_data_rtc_mem .bootloader_data_rtc_mem.*) + 0x3ff82000 _rtc_fast_reserved_end = ABSOLUTE (.) + 0x00000000 _rtc_fast_reserved_length = (_rtc_fast_reserved_end - _rtc_fast_reserved_start) + 0x00000001 ASSERT ((_rtc_fast_reserved_length <= LENGTH (rtc_fast_reserved_seg)), RTC FAST reserved segment data does not fit.) + +.rtc_slow_reserved + 0x50001fe8 0x18 + 0x50001fe8 . = ALIGN (0x4) + 0x50001fe8 _rtc_slow_reserved_start = ABSOLUTE (.) + *(.rtc_timer_data_in_rtc_mem .rtc_timer_data_in_rtc_mem.*) + .rtc_timer_data_in_rtc_mem + 0x50001fe8 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x50002000 _rtc_slow_reserved_end = ABSOLUTE (.) + 0x00000018 _rtc_slow_reserved_length = (_rtc_slow_reserved_end - _rtc_slow_reserved_start) + 0x00000018 _rtc_reserved_length = _rtc_slow_reserved_length + 0x00000001 ASSERT ((_rtc_slow_reserved_length <= LENGTH (rtc_slow_reserved_seg)), RTC SLOW reserved segment data does not fit.) + 0x00000000 _rtc_slow_length = (ORIGIN (rtc_slow_seg) == ORIGIN (rtc_data_location))?(_rtc_force_slow_end - _rtc_data_start):(_rtc_force_slow_end - _rtc_force_slow_start) + 0x00000000 _rtc_fast_length = (ORIGIN (rtc_slow_seg) == ORIGIN (rtc_data_location))?(_rtc_force_fast_end - _rtc_fast_start):(_rtc_noinit_end - _rtc_fast_start) + 0x00000000 ASSERT ((_rtc_slow_length <= LENGTH (rtc_slow_seg)), RTC_SLOW segment data does not fit.) + 0x00000000 ASSERT ((_rtc_fast_length <= LENGTH (rtc_data_seg)), RTC_FAST segment data does not fit.) + +.iram0.vectors 0x40080000 0x403 + 0x40080000 _iram_start = ABSOLUTE (.) + 0x40080000 _vector_table = ABSOLUTE (.) + 0x00000000 . = 0x0 + *(.WindowVectors.text) + .WindowVectors.text + 0x40080000 0x16a esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x40080000 _WindowOverflow4 + 0x40080040 _WindowUnderflow4 + 0x40080050 _xt_alloca_exc + 0x40080080 _WindowOverflow8 + 0x400800c0 _WindowUnderflow8 + 0x40080100 _WindowOverflow12 + 0x40080140 _WindowUnderflow12 + 0x00000180 . = 0x180 + *fill* 0x4008016a 0x16 + *(.Level2InterruptVector.text) + .Level2InterruptVector.text + 0x40080180 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x40080180 _Level2Vector + 0x000001c0 . = 0x1c0 + *fill* 0x40080186 0x3a + *(.Level3InterruptVector.text) + .Level3InterruptVector.text + 0x400801c0 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x400801c0 _Level3Vector + 0x00000200 . = 0x200 + *fill* 0x400801c6 0x3a + *(.Level4InterruptVector.text) + .Level4InterruptVector.text + 0x40080200 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x40080200 _Level4Vector + 0x00000240 . = 0x240 + *fill* 0x40080206 0x3a + *(.Level5InterruptVector.text) + .Level5InterruptVector.text + 0x40080240 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x40080240 _Level5Vector + 0x00000280 . = 0x280 + *fill* 0x40080246 0x3a + *(.DebugExceptionVector.text) + .DebugExceptionVector.text + 0x40080280 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x40080280 _DebugExceptionVector + 0x000002c0 . = 0x2c0 + *fill* 0x40080286 0x3a + *(.NMIExceptionVector.text) + .NMIExceptionVector.text + 0x400802c0 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x400802c0 _NMIExceptionVector + 0x00000300 . = 0x300 + *fill* 0x400802c6 0x3a + *(.KernelExceptionVector.text) + .KernelExceptionVector.text + 0x40080300 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x40080300 _KernelExceptionVector + 0x00000340 . = 0x340 + *fill* 0x40080306 0x3a + *(.UserExceptionVector.text) + .UserExceptionVector.text + 0x40080340 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x40080340 _UserExceptionVector + 0x000003c0 . = 0x3c0 + *fill* 0x40080346 0x7a + *(.DoubleExceptionVector.text) + .DoubleExceptionVector.text + 0x400803c0 0xe esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x11 (size before relaxing) + 0x400803c0 _DoubleExceptionVector + 0x00000400 . = 0x400 + *fill* 0x400803ce 0x32 + 0x40080400 _invalid_pc_placeholder = ABSOLUTE (.) + *(.*Vector.literal) + .DoubleExceptionVector.literal + 0x40080400 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .KernelExceptionVector.literal + 0x40080400 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .UserExceptionVector.literal + 0x40080400 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .Level2InterruptVector.literal + 0x40080400 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .Level3InterruptVector.literal + 0x40080400 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .Level4InterruptVector.literal + 0x40080400 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .Level5InterruptVector.literal + 0x40080400 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .NMIExceptionVector.literal + 0x40080400 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + *(.UserEnter.literal) + *(.UserEnter.text) + 0x40080400 . = ALIGN (0x10) + *(.entry.literal) + *(.entry.text) + *(.init.literal) + *(.init) + .init 0x40080400 0x3 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crti.o + 0x40080400 _init + 0x40080403 _init_end = ABSOLUTE (.) + +.iram0.text 0x40080404 0x1519b + 0x40080404 _iram_text_start = ABSOLUTE (.) + *(.iram1 .iram1.*) + .iram1.7.literal + 0x40080404 0x34 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x3c (size before relaxing) + .iram1.8.literal + 0x40080438 0x1c esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x3c (size before relaxing) + .iram1.9.literal + 0x40080454 0x80 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x118 (size before relaxing) + .iram1.1.literal + 0x400804d4 0x4 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0x1c (size before relaxing) + .iram1.7.literal + 0x400804d8 0x10 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x14 (size before relaxing) + .iram1.2.literal + 0x400804e8 0x1c esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x28 (size before relaxing) + .iram1.3.literal + 0x40080504 0xc esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x34 (size before relaxing) + .iram1.5.literal + 0x40080510 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x40080510 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .iram1.literal + 0x40080518 0x10 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + 0x1c (size before relaxing) + .iram1.0.literal + 0x40080528 0x4 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x1c (size before relaxing) + .iram1.1.literal + 0x4008052c 0x8 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .iram1.1.literal + 0x40080534 0xc esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x10 (size before relaxing) + .iram1.0.literal + 0x40080540 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0xc (size before relaxing) + .iram1.1.literal + 0x40080540 0x4 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x8 (size before relaxing) + .iram1.2.literal + 0x40080544 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x8 (size before relaxing) + .iram1.1.literal + 0x40080544 0xc esp-idf/esp_system/libesp_system.a(brownout.c.obj) + 0x28 (size before relaxing) + .iram1.literal + 0x40080550 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + 0x24 (size before relaxing) + .iram1.1.literal + 0x40080558 0x14 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x20 (size before relaxing) + .iram1.2.literal + 0x4008056c 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x8 (size before relaxing) + .iram1.0.literal + 0x4008056c 0x24 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .iram1.3.literal + 0x40080590 0x10 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x54 (size before relaxing) + .iram1.4.literal + 0x400805a0 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x8 (size before relaxing) + .iram1.literal + 0x400805a0 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + 0x4 (size before relaxing) + .iram1.7.literal + 0x400805a0 0x10 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + 0x24 (size before relaxing) + .iram1.8.literal + 0x400805b0 0x28 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + 0x98 (size before relaxing) + .iram1.0.literal + 0x400805d8 0x4 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .iram1.2.literal + 0x400805dc 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + 0xc (size before relaxing) + .iram1.0.literal + 0x400805e4 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x8 (size before relaxing) + .iram1.4.literal + 0x400805e4 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x400805e4 0x4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x8 (size before relaxing) + .iram1.1.literal + 0x400805e8 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x400805e8 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.1.literal + 0x400805ec 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0xc (size before relaxing) + .iram1.2.literal + 0x400805f0 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x18 (size before relaxing) + .iram1.4.literal + 0x400805f8 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0xc (size before relaxing) + .iram1.7.literal + 0x400805fc 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0xc (size before relaxing) + .iram1.3.literal + 0x40080600 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x18 (size before relaxing) + .iram1.8.literal + 0x40080604 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0xc (size before relaxing) + .iram1.1.literal + 0x40080608 0x14 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x1c (size before relaxing) + .iram1.2.literal + 0x4008061c 0x20 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x34 (size before relaxing) + .iram1.3.literal + 0x4008063c 0xc esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x38 (size before relaxing) + .iram1.4.literal + 0x40080648 0x0 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x8 (size before relaxing) + .iram1.0.literal + 0x40080648 0x4 esp-idf/soc/libsoc.a(dport_access.c.obj) + .iram1.1.literal + 0x4008064c 0x0 esp-idf/soc/libsoc.a(dport_access.c.obj) + 0x4 (size before relaxing) + .iram1.1.literal + 0x4008064c 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .iram1.2.literal + 0x40080654 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0xc (size before relaxing) + .iram1.0.literal + 0x40080658 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0xc (size before relaxing) + .iram1.4.literal + 0x4008065c 0xc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x2c (size before relaxing) + .iram1.5.literal + 0x40080668 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x28 (size before relaxing) + .iram1.8.literal + 0x40080668 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x4 (size before relaxing) + .iram1.2.literal + 0x40080668 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x24 (size before relaxing) + .iram1.9.literal + 0x4008066c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x4 (size before relaxing) + .iram1.3.literal + 0x4008066c 0xc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x34 (size before relaxing) + .iram1.3.literal + 0x40080678 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0xc (size before relaxing) + .iram1.4.literal + 0x4008067c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0xc (size before relaxing) + .iram1.5.literal + 0x4008067c 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x20 (size before relaxing) + .iram1.6.literal + 0x40080684 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x20 (size before relaxing) + .iram1.5.literal + 0x40080684 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x20 (size before relaxing) + .iram1.6.literal + 0x40080694 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x10 (size before relaxing) + .iram1.7.literal + 0x400806a0 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0xc (size before relaxing) + .iram1.2.literal + 0x400806a0 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x18 (size before relaxing) + .iram1.3.literal + 0x400806a8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x18 (size before relaxing) + .iram1.4.literal + 0x400806ac 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + .iram1.0.literal + 0x400806b0 0x4 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x14 (size before relaxing) + .iram1.16.literal + 0x400806b4 0xc esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x10 (size before relaxing) + .iram1.4.literal + 0x400806c0 0x8 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x30 (size before relaxing) + .iram1.9.literal + 0x400806c8 0x8 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x28 (size before relaxing) + .iram1.1.literal + 0x400806d0 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.2.literal + 0x400806d0 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.3.literal + 0x400806d0 0x8 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x24 (size before relaxing) + .iram1.5.literal + 0x400806d8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.6.literal + 0x400806d8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.7.literal + 0x400806d8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.8.literal + 0x400806d8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.10.literal + 0x400806d8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.11.literal + 0x400806d8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.13.literal + 0x400806d8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.15.literal + 0x400806d8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.18.literal + 0x400806d8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x8 (size before relaxing) + .iram1.22.literal + 0x400806d8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x8 (size before relaxing) + .iram1.0.literal + 0x400806d8 0x4 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + 0x8 (size before relaxing) + .iram1.1.literal + 0x400806dc 0x14 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x20 (size before relaxing) + .iram1.0.literal + 0x400806f0 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x8 (size before relaxing) + .iram1.7.literal + 0x400806f0 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0xc (size before relaxing) + .iram1.4.literal + 0x400806f4 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x8 (size before relaxing) + .iram1.8.literal + 0x400806f8 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0xc (size before relaxing) + .iram1.5.literal + 0x400806f8 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x10 (size before relaxing) + .iram1.9.literal + 0x400806f8 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0xc (size before relaxing) + .iram1.1.literal + 0x400806fc 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x14 (size before relaxing) + .iram1.2.literal + 0x400806fc 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x1c (size before relaxing) + .iram1.3.literal + 0x400806fc 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x10 (size before relaxing) + .iram1.0.literal + 0x400806fc 0x4 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x8 (size before relaxing) + .iram1.3.literal + 0x40080700 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .iram1.0.literal + 0x40080708 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .iram1.1.literal + 0x40080718 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x4 (size before relaxing) + .iram1.2.literal + 0x40080718 0x20 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x40 (size before relaxing) + .iram1.4.literal + 0x40080738 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x28 (size before relaxing) + .iram1.0.literal + 0x40080748 0x4 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x8 (size before relaxing) + .iram1.literal + 0x4008074c 0x44 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0xac (size before relaxing) + .iram1.4.literal + 0x40080790 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x10 (size before relaxing) + .iram1.16.literal + 0x40080790 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0xc (size before relaxing) + .iram1.2.literal + 0x40080790 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x4 (size before relaxing) + .iram1.3.literal + 0x40080790 0x30 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x58 (size before relaxing) + .iram1.1.literal + 0x400807c0 0x4 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .iram1.3.literal + 0x400807c4 0x0 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + 0xc (size before relaxing) + .iram1.0.literal + 0x400807c4 0x4 esp-idf/driver/libdriver.a(ledc.c.obj) + 0x8 (size before relaxing) + .iram1.1.literal + 0x400807c8 0x0 esp-idf/driver/libdriver.a(ledc.c.obj) + 0x10 (size before relaxing) + .iram1.3.literal + 0x400807c8 0x18 esp-idf/driver/libdriver.a(ledc.c.obj) + 0x50 (size before relaxing) + .iram1.1.literal + 0x400807e0 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x2c (size before relaxing) + .iram1.2.literal + 0x40080808 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4 (size before relaxing) + .iram1.4.literal + 0x40080808 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4 (size before relaxing) + .iram1.12.literal + 0x40080808 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x14 (size before relaxing) + .iram1.6.literal + 0x4008080c 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .iram1.7.literal + 0x4008081c 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x8 (size before relaxing) + .iram1.8.literal + 0x40080820 0x2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x4c (size before relaxing) + .iram1.9.literal + 0x4008084c 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0xc (size before relaxing) + .iram1.0.literal + 0x40080854 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x40080854 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0x4 (size before relaxing) + .iram1.12.literal + 0x40080854 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x8 (size before relaxing) + .iram1.13.literal + 0x40080854 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x8 (size before relaxing) + .iram1.6.literal + 0x40080854 0x8 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x1c (size before relaxing) + .iram1.7.literal + 0x4008085c 0x2c esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x4c (size before relaxing) + .iram1.8.literal + 0x40080888 0x10 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x3c (size before relaxing) + .iram1.11.literal + 0x40080898 0xc esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x20 (size before relaxing) + .iram1.14.literal + 0x400808a4 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x400808a4 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x4 (size before relaxing) + .iram1.1.literal + 0x400808a4 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0xc (size before relaxing) + .iram1.8.literal + 0x400808a4 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.10.literal + 0x400808a8 0x8 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0xc (size before relaxing) + .iram1.6.literal + 0x400808b0 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.5.literal + 0x400808b4 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x8 (size before relaxing) + .iram1.12.literal + 0x400808b8 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x20 (size before relaxing) + .iram1.10.literal + 0x400808c4 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x8 (size before relaxing) + .iram1.13.literal + 0x400808c4 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x4 (size before relaxing) + .iram1.9.literal + 0x400808c4 0x18 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x54 (size before relaxing) + .iram1.16.literal + 0x400808dc 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x1c (size before relaxing) + .iram1.21.literal + 0x400808ec 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x10 (size before relaxing) + .iram1.22.literal + 0x400808ec 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x34 (size before relaxing) + .iram1.25.literal + 0x400808f8 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x14 (size before relaxing) + .iram1.28.literal + 0x40080900 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x50 (size before relaxing) + .iram1.9.literal + 0x40080910 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xc (size before relaxing) + .iram1.8.literal + 0x40080910 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x14 (size before relaxing) + .iram1.12.literal + 0x4008091c 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.11.literal + 0x4008091c 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xc (size before relaxing) + .iram1.10.literal + 0x40080920 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.14.literal + 0x40080920 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.13.literal + 0x40080920 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.1.literal + 0x40080928 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.6.literal + 0x40080928 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x40080928 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.7.literal + 0x40080928 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x8 (size before relaxing) + .iram1.8.literal + 0x40080928 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x4 (size before relaxing) + .iram1.7.literal + 0x40080928 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x18 (size before relaxing) + .iram1.6.literal + 0x40080928 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x18 (size before relaxing) + .iram1.1.literal + 0x40080928 0x10 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x20 (size before relaxing) + .iram1.2.literal + 0x40080938 0x10 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x28 (size before relaxing) + .iram1.3.literal + 0x40080948 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x4 (size before relaxing) + .iram1.6.literal + 0x40080948 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x4 (size before relaxing) + .iram1.7.literal + 0x40080948 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x4 (size before relaxing) + .iram1.2.literal + 0x40080948 0x2c esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x40 (size before relaxing) + .iram1.literal + 0x40080974 0x0 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + 0xc (size before relaxing) + .iram1.1.literal + 0x40080974 0x4 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + 0x8 (size before relaxing) + .iram1.10.literal + 0x40080978 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .iram1.2.literal + 0x4008097c 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.3.literal + 0x4008097c 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.4.literal + 0x4008097c 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.5.literal + 0x4008097c 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.16.literal + 0x4008097c 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.15.literal + 0x4008097c 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.14.literal + 0x4008097c 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.13.literal + 0x4008097c 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.1.literal + 0x4008097c 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x4008097c 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.9.literal + 0x4008097c 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.8.literal + 0x4008097c 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.7.literal + 0x4008097c 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x4008097c 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + 0x10 (size before relaxing) + .iram1.1.literal + 0x40080984 0x1c esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x30 (size before relaxing) + .iram1.2.literal + 0x400809a0 0x4 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x30 (size before relaxing) + .iram1.3.literal + 0x400809a4 0x0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x8 (size before relaxing) + .iram1.2.literal + 0x400809a4 0x4 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0xc (size before relaxing) + .iram1.3.literal + 0x400809a8 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0xc (size before relaxing) + .iram1.4.literal + 0x400809a8 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x4 (size before relaxing) + .iram1.5.literal + 0x400809a8 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x4 (size before relaxing) + .iram1.6.literal + 0x400809a8 0x14 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x38 (size before relaxing) + .iram1.6.literal + 0x400809bc 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.1.literal + 0x400809bc 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x8 (size before relaxing) + .iram1.2.literal + 0x400809bc 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x8 (size before relaxing) + .iram1.3.literal + 0x400809bc 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.4.literal + 0x400809bc 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.5.literal + 0x400809bc 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x4 (size before relaxing) + .literal.esp_cpu_stall + 0x400809bc 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x18 (size before relaxing) + .literal.esp_cpu_unstall + 0x400809d0 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x18 (size before relaxing) + .literal.esp_gpio_reserve_pins + 0x400809d4 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .literal.esp_ptr_byte_accessible + 0x400809d8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + 0x8 (size before relaxing) + .literal.periph_module_reset + 0x400809dc 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x34 (size before relaxing) + .literal.wifi_module_disable + 0x400809f0 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x24 (size before relaxing) + .literal.wifi_module_enable + 0x400809f0 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x24 (size before relaxing) + .literal.rtc_clk_32k_enable_common + 0x400809f0 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_to_pll_mhz + 0x400809fc 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x2c (size before relaxing) + .literal.rtc_clk_bbpll_disable + 0x40080a18 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xc (size before relaxing) + .literal.rtc_clk_32k_enable + 0x40080a20 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_8m_enable + 0x40080a28 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xc (size before relaxing) + .literal.rtc_clk_8md256_enabled + 0x40080a2c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_slow_src_set + 0x40080a2c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xc (size before relaxing) + .literal.rtc_clk_slow_src_get + 0x40080a2c 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 + 0x40080a2c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x8 (size before relaxing) + .literal.rtc_clk_fast_src_set + 0x40080a30 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_xtal_freq_get + 0x40080a30 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_mhz_to_config + 0x40080a34 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 + 0x40080a34 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x2c (size before relaxing) + .literal.rtc_clk_apb_freq_update + 0x40080a40 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_cpu_freq_to_xtal + 0x40080a40 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x30 (size before relaxing) + .literal.rtc_clk_cpu_set_to_default_config + 0x40080a50 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xc (size before relaxing) + .literal.rtc_clk_cpu_freq_set_config + 0x40080a50 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x84 (size before relaxing) + .literal.rtc_dig_clk8m_enable + 0x40080a5c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x8 (size before relaxing) + .literal.rtc_dig_clk8m_disable + 0x40080a5c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x8 (size before relaxing) + .literal.rtc_clk_cal_internal + 0x40080a5c 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x54 (size before relaxing) + .literal.rtc_clk_cal + 0x40080a7c 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x24 (size before relaxing) + .literal.rtc_time_get + 0x40080a84 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x20 (size before relaxing) + .literal.rtc_clk_wait_for_slow_cycle + 0x40080a94 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x2c (size before relaxing) + .literal.rtc_clk_freq_cal + 0x40080a9c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x4 (size before relaxing) + .literal.startup.enable_timer_group0_for_calibration + 0x40080a9c 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x18 (size before relaxing) + .literal.cache_sync + 0x40080aa8 0x4 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .literal.prvAcquireItemNoSplit + 0x40080aac 0x14 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x18 (size before relaxing) + .literal.prvReceiveGeneric + 0x40080ac0 0xc esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x30 (size before relaxing) + .literal.prvSendAcquireGeneric + 0x40080acc 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x28 (size before relaxing) + .literal.xRingbufferSend + 0x40080acc 0xc esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x18 (size before relaxing) + .literal.xRingbufferReceive + 0x40080ad8 0x8 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x14 (size before relaxing) + .literal.vRingbufferReturnItem + 0x40080ae0 0x8 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x24 (size before relaxing) + .literal.esp_error_check_failed_print + 0x40080ae8 0x14 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x28 (size before relaxing) + .literal._esp_error_check_failed + 0x40080afc 0x8 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x10 (size before relaxing) + .literal.esp_system_abort + 0x40080b04 0x0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0x4 (size before relaxing) + .literal.wifi_sta_receive + 0x40080b04 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .literal.wifi_transmit_wrap + 0x40080b0c 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .literal.prvCopyDataToQueue + 0x40080b10 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xc (size before relaxing) + .literal.prvCopyDataFromQueue + 0x40080b10 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x4 (size before relaxing) + .literal.prvNotifyQueueSetContainer + 0x40080b10 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x2c (size before relaxing) + .literal.xQueueGenericReset + 0x40080b20 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x30 (size before relaxing) + .literal.xQueueGenericCreateStatic + 0x40080b30 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x1c (size before relaxing) + .literal.xQueueGenericGetStaticBuffers + 0x40080b40 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x14 (size before relaxing) + .literal.xQueueGenericCreate + 0x40080b48 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.xQueueGetMutexHolder + 0x40080b4c 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.xQueueCreateCountingSemaphore + 0x40080b54 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x14 (size before relaxing) + .literal.xQueueGenericSend + 0x40080b5c 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x50 (size before relaxing) + .literal.xQueueCreateMutexStatic + 0x40080b6c 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xc (size before relaxing) + .literal.xQueueGiveMutexRecursive + 0x40080b6c 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.xQueueCreateMutex + 0x40080b74 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xc (size before relaxing) + .literal.xQueueGenericSendFromISR + 0x40080b74 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x2c (size before relaxing) + .literal.xQueueGiveFromISR + 0x40080b78 0xc esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x28 (size before relaxing) + .literal.xQueueReceive + 0x40080b84 0xc esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x48 (size before relaxing) + .literal.xQueueSemaphoreTake + 0x40080b90 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x50 (size before relaxing) + .literal.xQueueTakeMutexRecursive + 0x40080b94 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.xQueueReceiveFromISR + 0x40080b98 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x24 (size before relaxing) + .literal.uxQueueMessagesWaiting + 0x40080ba0 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.vQueueDelete + 0x40080ba8 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x14 (size before relaxing) + .literal.xPortStartScheduler + 0x40080bac 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x10 (size before relaxing) + .literal.pxPortInitialiseStack + 0x40080bb0 0x20 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x30 (size before relaxing) + .literal.xPortInIsrContext + 0x40080bd0 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x8 (size before relaxing) + .literal.xPortEnterCriticalTimeout + 0x40080bd0 0x30 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x5c (size before relaxing) + .literal.vPortExitCritical + 0x40080c00 0x14 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x40 (size before relaxing) + .literal.vPortYieldOtherCore + 0x40080c14 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x4 (size before relaxing) + .literal.vApplicationStackOverflowHook + 0x40080c14 0xc esp-idf/freertos/libfreertos.a(port.c.obj) + 0x14 (size before relaxing) + .literal.vPortTCBPreDeleteHook + 0x40080c20 0x14 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x34 (size before relaxing) + .literal 0x40080c34 0x24 esp-idf/freertos/libfreertos.a(portasm.S.obj) + 0xa4 (size before relaxing) + .literal._xt_tick_divisor_init + 0x40080c58 0x4 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + 0xc (size before relaxing) + .literal.pvPortMalloc + 0x40080c5c 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x4 (size before relaxing) + .literal.vPortFree + 0x40080c5c 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x4 (size before relaxing) + .literal.xPortCheckValidListMem + 0x40080c5c 0x4 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0xc (size before relaxing) + .literal.xPortCheckValidTCBMem + 0x40080c60 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x4 (size before relaxing) + .literal.xPortcheckValidStackMem + 0x40080c60 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x4 (size before relaxing) + .literal.vApplicationGetIdleTaskMemory + 0x40080c60 0x10 esp-idf/freertos/libfreertos.a(port_common.c.obj) + 0x1c (size before relaxing) + .literal.vPortSetupTimer + 0x40080c70 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x8 (size before relaxing) + .literal.xPortSysTickHandler + 0x40080c70 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x10 (size before relaxing) + .literal.xEventGroupCreate + 0x40080c70 0x0 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0xc (size before relaxing) + .literal.xEventGroupWaitBits + 0x40080c70 0x18 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x3c (size before relaxing) + .literal.xEventGroupClearBits + 0x40080c88 0x8 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x1c (size before relaxing) + .literal.xEventGroupSetBits + 0x40080c90 0x8 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x28 (size before relaxing) + .literal.vEventGroupDelete + 0x40080c98 0xc esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x2c (size before relaxing) + .literal.prvCheckTaskCanBeScheduledSMP + 0x40080ca4 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.prvIsYieldRequiredSMP + 0x40080ca8 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x20 (size before relaxing) + .literal.prvAddCurrentTaskToDelayedList + 0x40080cb8 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x28 (size before relaxing) + .literal.prvAddNewTaskToReadyList + 0x40080cd0 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x6c (size before relaxing) + .literal.prvResetNextTaskUnblockTime + 0x40080cf8 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.prvDeleteTCB + 0x40080cf8 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x20 (size before relaxing) + .literal.prvIdleTask + 0x40080d04 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x2c (size before relaxing) + .literal.prvInitialiseNewTask$constprop$0 + 0x40080d10 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x24 (size before relaxing) + .literal.vTaskSuspendAll + 0x40080d18 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.xTaskGetTickCount + 0x40080d18 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4 (size before relaxing) + .literal.xTaskGetTickCountFromISR + 0x40080d18 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.xTaskIncrementTick + 0x40080d18 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x5c (size before relaxing) + .literal.vTaskSwitchContext + 0x40080d30 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x44 (size before relaxing) + .literal.vTaskPlaceOnEventList + 0x40080d3c 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x28 (size before relaxing) + .literal.vTaskPlaceOnUnorderedEventList + 0x40080d44 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x24 (size before relaxing) + .literal.xTaskRemoveFromEventList + 0x40080d48 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x44 (size before relaxing) + .literal.vTaskRemoveFromUnorderedEventList + 0x40080d54 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x30 (size before relaxing) + .literal.vTaskInternalSetTimeOutState + 0x40080d5c 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.xTaskCheckForTimeOut + 0x40080d5c 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x30 (size before relaxing) + .literal.xTaskGetCurrentTaskHandle + 0x40080d68 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.vTaskPrioritySet + 0x40080d68 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3c (size before relaxing) + .literal.vTaskSuspend + 0x40080d70 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x50 (size before relaxing) + .literal.pcTaskGetName + 0x40080d78 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x14 (size before relaxing) + .literal.pvTaskGetThreadLocalStoragePointer + 0x40080d80 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4 (size before relaxing) + .literal.xTaskGetSchedulerState + 0x40080d80 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xc (size before relaxing) + .literal.vTaskDelete + 0x40080d80 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x60 (size before relaxing) + .literal.vTaskDelay + 0x40080d88 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x28 (size before relaxing) + .literal.xTaskResumeAll + 0x40080d8c 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4c (size before relaxing) + .literal.xTaskPriorityInherit + 0x40080d94 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1c (size before relaxing) + .literal.xTaskPriorityDisinherit + 0x40080d94 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x30 (size before relaxing) + .literal.vTaskPriorityDisinheritAfterTimeout + 0x40080da0 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x30 (size before relaxing) + .literal.uxTaskResetEventItemValue + 0x40080da8 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.pvTaskIncrementMutexHeldCount + 0x40080da8 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.ulTaskGenericNotifyTake + 0x40080da8 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x30 (size before relaxing) + .literal.xTaskGenericNotify + 0x40080db0 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3c (size before relaxing) + .literal.vTaskGenericNotifyGiveFromISR + 0x40080dc4 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3c (size before relaxing) + .literal.prvTakeKernelLock + 0x40080dc8 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.prvReleaseKernelLock + 0x40080dc8 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.xTaskIncrementTickOtherCores + 0x40080dc8 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x30 (size before relaxing) + .literal.xTaskCreatePinnedToCore + 0x40080dd4 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x2c (size before relaxing) + .literal.xTaskCreateStaticPinnedToCore + 0x40080ddc 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x34 (size before relaxing) + .literal.vTaskStartScheduler + 0x40080dec 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x48 (size before relaxing) + .literal.xTaskGetCoreID + 0x40080e04 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4 (size before relaxing) + .literal.xTaskGetIdleTaskHandleForCore + 0x40080e04 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x18 (size before relaxing) + .literal.xTaskGetCurrentTaskHandleForCore + 0x40080e10 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x14 (size before relaxing) + .literal.vTaskSetThreadLocalStoragePointerAndDelCallback + 0x40080e14 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.__getreent + 0x40080e14 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.vTaskGetSnapshot + 0x40080e14 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4 (size before relaxing) + .literal.cache_hal_suspend + 0x40080e14 0x14 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0x34 (size before relaxing) + .literal.cache_hal_resume + 0x40080e28 0x0 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0x24 (size before relaxing) + .literal.cache_hal_is_cache_enabled + 0x40080e28 0x0 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0x10 (size before relaxing) + .literal.ledc_hal_set_fade_param + 0x40080e28 0x14 esp-idf/hal/libhal.a(ledc_hal_iram.c.obj) + 0x1c (size before relaxing) + .literal.mmu_ll_check_entry_valid$isra$0 + 0x40080e3c 0xc esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x18 (size before relaxing) + .literal.mmu_hal_check_valid_ext_vaddr_region + 0x40080e48 0x14 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x1c (size before relaxing) + .literal.mmu_hal_map_region + 0x40080e5c 0x28 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x40 (size before relaxing) + .literal.mmu_hal_unmap_region + 0x40080e84 0x8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x3c (size before relaxing) + .literal.mmu_hal_vaddr_to_paddr + 0x40080e8c 0x10 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x44 (size before relaxing) + .literal.spi_flash_encryption_hal_enable + 0x40080e9c 0x4 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_encryption_hal_disable + 0x40080ea0 0x0 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_encryption_hal_prepare + 0x40080ea0 0xc esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .literal.spi_flash_encryption_hal_done + 0x40080eac 0x4 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .literal.spi_flash_ll_set_buffer_data + 0x40080eb0 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_ll_get_buffer_data + 0x40080eb0 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_hal_configure_host_io_mode + 0x40080eb0 0x8 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x1c (size before relaxing) + .literal.spi_flash_hal_common_command + 0x40080eb8 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_hal_read + 0x40080eb8 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_hal_program_page + 0x40080eb8 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_hal_check_status + 0x40080eb8 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x8 (size before relaxing) + .literal.unlikely.spi_flash_hal_resume + 0x40080eb8 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.unlikely.spi_flash_hal_suspend + 0x40080eb8 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.wdt_hal_init + 0x40080eb8 0x2c esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x44 (size before relaxing) + .literal.wdt_hal_config_stage + 0x40080ee4 0xc esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x34 (size before relaxing) + .literal.wdt_hal_write_protect_disable + 0x40080ef0 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.assert_valid_block + 0x40080ef0 0x4 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x10 (size before relaxing) + .literal.multi_heap_free_impl + 0x40080ef4 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x18 (size before relaxing) + .literal.multi_heap_get_allocated_size_impl + 0x40080ef4 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x4 (size before relaxing) + .literal.multi_heap_internal_lock + 0x40080ef4 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x8 (size before relaxing) + .literal.multi_heap_internal_unlock + 0x40080ef4 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x8 (size before relaxing) + .literal.multi_heap_malloc_impl + 0x40080ef4 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x14 (size before relaxing) + .literal.multi_heap_realloc_impl + 0x40080ef4 0xc esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x2c (size before relaxing) + .literal.tlsf_free + 0x40080f00 0x50 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x5c (size before relaxing) + .literal.tlsf_malloc + 0x40080f50 0x28 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x54 (size before relaxing) + .literal.tlsf_realloc + 0x40080f78 0xc esp-idf/heap/libheap.a(tlsf.c.obj) + 0x78 (size before relaxing) + .literal.esp_log_write + 0x40080f84 0x4 esp-idf/log/liblog.a(log.c.obj) + .literal.esp_log_early_timestamp + 0x40080f88 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x4 (size before relaxing) + .literal.esp_log_impl_lock + 0x40080f88 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x10 (size before relaxing) + .literal.esp_log_impl_lock_timeout + 0x40080f8c 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x10 (size before relaxing) + .literal.esp_log_impl_unlock + 0x40080f8c 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + 0xc (size before relaxing) + .literal.esp_log_timestamp + 0x40080f8c 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x1c (size before relaxing) + .literal.unlikely.abort + 0x40080f90 0x10 esp-idf/newlib/libnewlib.a(abort.c.obj) + 0x20 (size before relaxing) + .literal.__assert_func + 0x40080fa0 0x24 esp-idf/newlib/libnewlib.a(assert.c.obj) + 0x38 (size before relaxing) + .literal.malloc + 0x40080fc4 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal.realloc + 0x40080fc4 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal.free 0x40080fc4 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal._malloc_r + 0x40080fc4 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal._free_r + 0x40080fc4 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal._realloc_r + 0x40080fc4 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal._calloc_r + 0x40080fc4 0x4 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x8 (size before relaxing) + .literal.calloc + 0x40080fc8 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_needs_reset_check + 0x40080fc8 0x4 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_set_erasing_flag + 0x40080fcc 0x4 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .literal.spi_flash_brownout_need_reset + 0x40080fd0 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x8 (size before relaxing) + .literal.memspi_host_read_id_hs + 0x40080fd0 0xc esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x18 (size before relaxing) + .literal.memspi_host_flush_cache + 0x40080fdc 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x8 (size before relaxing) + .literal.memspi_host_init_pointers + 0x40080fdc 0x8 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x10 (size before relaxing) + .literal.spi_flash_chip_gd_detect_size + 0x40080fe4 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .literal.spi_flash_chip_gd_suspend_cmd_conf + 0x40080fe8 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .literal.spi_flash_chip_gd_get_io_mode + 0x40080fec 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 + 0x40080fec 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_chip_generic_detect_size + 0x40080ffc 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_config_host_io_mode + 0x40080ffc 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .literal.spi_flash_chip_generic_read + 0x40081004 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x18 (size before relaxing) + .literal.spi_flash_chip_generic_write + 0x4008100c 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_generic_yield + 0x4008100c 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_read_unique_id + 0x4008100c 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x18 (size before relaxing) + .literal.spi_flash_chip_generic_write_encrypted + 0x40081014 0x4 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 + 0x40081018 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x10 (size before relaxing) + .literal.spi_flash_chip_generic_suspend_cmd_conf + 0x40081024 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x18 (size before relaxing) + .literal.spi_flash_common_read_status_16b_rdsr_rdsr2 + 0x40081028 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 + 0x40081028 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_rdsr2 + 0x40081028 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 + 0x40081028 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 + 0x40081028 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 + 0x40081028 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 + 0x40081028 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 + 0x40081028 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_chip_issi_set_io_mode + 0x40081028 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 + 0x40081030 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 + 0x40081030 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_winbond_read + 0x40081030 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x18 (size before relaxing) + .literal 0x40081038 0x0 /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + 0x4 (size before relaxing) + .literal 0x40081038 0x4 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + 0x2c (size before relaxing) + .iram1.7 0x4008103c 0x94 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x9c (size before relaxing) + 0x4008103c call_start_cpu1 + .iram1.8 0x400810d0 0xe1 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0xf9 (size before relaxing) + 0x400810d0 do_multicore_settings + *fill* 0x400811b1 0x3 + .iram1.9 0x400811b4 0x27f esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x2c7 (size before relaxing) + 0x400811b4 call_start_cpu0 + *fill* 0x40081433 0x1 + .iram1.1 0x40081434 0x38 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0x4b (size before relaxing) + 0x40081434 esp_restart_noos_dig + *fill* 0x4008146c 0x0 + .iram1.7 0x4008146c 0x57 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + *fill* 0x400814c3 0x1 + .iram1.2 0x400814c4 0x59 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x61 (size before relaxing) + 0x400814c4 esp_ipc_isr_stall_other_cpu + *fill* 0x4008151d 0x3 + .iram1.3 0x40081520 0x6b esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x76 (size before relaxing) + 0x40081520 esp_ipc_isr_release_other_cpu + *fill* 0x4008158b 0x1 + .iram1.5 0x4008158c 0xf esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x4008158c esp_ipc_isr_stall_abort + *fill* 0x4008159b 0x1 + .iram1.0 0x4008159c 0x15 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + 0x4008159c esp_ipc_isr_port_int_trigger + *fill* 0x400815b1 0x3 + .iram1 0x400815b4 0x91 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + 0x95 (size before relaxing) + 0x400815b4 xt_highint4 + 0x40081645 ld_include_highint_hdl + *fill* 0x40081645 0x3 + .iram1.0 0x40081648 0x59 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x69 (size before relaxing) + *fill* 0x400816a1 0x3 + .iram1.1 0x400816a4 0x1a esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x400816a4 panic_abort + *fill* 0x400816be 0x2 + .iram1.1 0x400816c0 0x29 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x400816c0 start_cpu_other_cores + *fill* 0x400816e9 0x3 + .iram1.0 0x400816ec 0x1a esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x22 (size before relaxing) + *fill* 0x40081706 0x2 + .iram1.1 0x40081708 0x12 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x16 (size before relaxing) + 0x40081708 panicHandler + *fill* 0x4008171a 0x2 + .iram1.2 0x4008171c 0x12 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x16 (size before relaxing) + 0x4008171c xt_unhandled_exception + *fill* 0x4008172e 0x2 + .iram1.1 0x40081730 0x57 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + 0x63 (size before relaxing) + *fill* 0x40081787 0x1 + .iram1 0x40081788 0x63 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + 0x40081788 esp_ipc_isr_handler + *fill* 0x400817eb 0x1 + .iram1.1 0x400817ec 0x3c esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .iram1.2 0x40081828 0x19 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + *fill* 0x40081841 0x3 + .iram1.0 0x40081844 0x7a esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x40081844 esp_backtrace_get_next_frame + *fill* 0x400818be 0x2 + .iram1.3 0x400818c0 0x12a esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x13e (size before relaxing) + 0x400818c0 esp_backtrace_print_from_frame + *fill* 0x400819ea 0x2 + .iram1.4 0x400819ec 0x25 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x29 (size before relaxing) + 0x400819ec esp_backtrace_print + *fill* 0x40081a11 0x3 + .iram1 0x40081a14 0x1d esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + 0x40081a14 esp_backtrace_get_start + *fill* 0x40081a31 0x3 + .iram1.7 0x40081a34 0x6a esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + 0x76 (size before relaxing) + 0x40081a34 esp_system_reset_modules_on_exit + *fill* 0x40081a9e 0x2 + .iram1.8 0x40081aa0 0x11f esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + 0x163 (size before relaxing) + 0x40081aa0 esp_restart_noos + *fill* 0x40081bbf 0x1 + .iram1.0 0x40081bc0 0x25 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x40081bc0 esp_vApplicationTickHook + *fill* 0x40081be5 0x3 + .iram1.2 0x40081be8 0x3e esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + 0x40081be8 esp_rom_uart_tx_wait_idle + *fill* 0x40081c26 0x2 + .iram1.0 0x40081c28 0x18 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x1c (size before relaxing) + 0x40081c28 efuse_hal_chip_revision + .iram1.4 0x40081c40 0x27 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x40081c40 efuse_hal_flash_encryption_enabled + *fill* 0x40081c67 0x1 + .iram1.0 0x40081c68 0x42 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x40081c68 efuse_hal_get_major_chip_version + *fill* 0x40081caa 0x2 + .iram1.1 0x40081cac 0x10 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x40081cac efuse_hal_get_minor_chip_version + .iram1.0 0x40081cbc 0x16 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x40081cd2 0x2 + .iram1.1 0x40081cd4 0x20 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x24 (size before relaxing) + 0x40081cd4 heap_caps_malloc + .iram1.2 0x40081cf4 0x5b esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x63 (size before relaxing) + 0x40081cf4 heap_caps_malloc_default + *fill* 0x40081d4f 0x1 + .iram1.4 0x40081d50 0x7c esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x40081d50 heap_caps_malloc_prefer + .iram1.7 0x40081dcc 0x1e esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x26 (size before relaxing) + 0x40081dcc heap_caps_realloc + *fill* 0x40081dea 0x2 + .iram1.3 0x40081dec 0x5f esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x6b (size before relaxing) + 0x40081dec heap_caps_realloc_default + *fill* 0x40081e4b 0x1 + .iram1.8 0x40081e4c 0x24 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x28 (size before relaxing) + 0x40081e4c heap_caps_calloc + .iram1.1 0x40081e70 0x4c esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x50 (size before relaxing) + 0x40081e70 heap_caps_free + .iram1.2 0x40081ebc 0xf5 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x100 (size before relaxing) + 0x40081ebc heap_caps_malloc_base + *fill* 0x40081fb1 0x3 + .iram1.3 0x40081fb4 0x108 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x10c (size before relaxing) + 0x40081fb4 heap_caps_realloc_base + .iram1.4 0x400820bc 0x27 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x2b (size before relaxing) + 0x400820bc heap_caps_calloc_base + *fill* 0x400820e3 0x1 + .iram1.0 0x400820e4 0x15 esp-idf/soc/libsoc.a(dport_access.c.obj) + 0x400820e4 esp_dport_access_reg_read + *fill* 0x400820f9 0x3 + .iram1.1 0x400820fc 0xc esp-idf/soc/libsoc.a(dport_access.c.obj) + 0x400820fc esp_dport_access_sequence_reg_read + .iram1.1 0x40082108 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x40082108 esp_clk_cpu_freq + .iram1.2 0x40082118 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x40082118 esp_clk_apb_freq + *fill* 0x4008212e 0x2 + .iram1.0 0x40082130 0x3d esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x41 (size before relaxing) + *fill* 0x4008216d 0x3 + .iram1.4 0x40082170 0x53 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x67 (size before relaxing) + 0x40082170 esp_intr_noniram_disable + *fill* 0x400821c3 0x1 + .iram1.5 0x400821c4 0x42 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x56 (size before relaxing) + 0x400821c4 esp_intr_noniram_enable + *fill* 0x40082206 0x2 + .iram1.8 0x40082208 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x13 (size before relaxing) + 0x40082208 esp_intr_enable_source + *fill* 0x40082218 0x0 + .iram1.2 0x40082218 0x76 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x89 (size before relaxing) + 0x40082218 esp_intr_enable + *fill* 0x4008228e 0x2 + .iram1.9 0x40082290 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x13 (size before relaxing) + 0x40082290 esp_intr_disable_source + *fill* 0x400822a0 0x0 + .iram1.3 0x400822a0 0xb1 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0xc1 (size before relaxing) + 0x400822a0 esp_intr_disable + *fill* 0x40082351 0x3 + .iram1.3 0x40082354 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x16 (size before relaxing) + 0x40082354 periph_rcc_enter + *fill* 0x40082366 0x2 + .iram1.4 0x40082368 0xe esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x14 (size before relaxing) + 0x40082368 periph_rcc_exit + *fill* 0x40082376 0x2 + .iram1.5 0x40082378 0x3f esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x4f (size before relaxing) + 0x40082378 wifi_bt_common_module_enable + *fill* 0x400823b7 0x1 + .iram1.6 0x400823b8 0x3e esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x4e (size before relaxing) + 0x400823b8 wifi_bt_common_module_disable + *fill* 0x400823f6 0x2 + .iram1.5 0x400823f8 0x4b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x57 (size before relaxing) + *fill* 0x40082443 0x1 + .iram1.6 0x40082444 0x32 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x40082444 rtc_isr_noniram_disable + *fill* 0x40082476 0x2 + .iram1.7 0x40082478 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x40082478 rtc_isr_noniram_enable + *fill* 0x40082496 0x2 + .iram1.2 0x40082498 0x3b esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x47 (size before relaxing) + 0x40082498 regi2c_ctrl_read_reg_mask + *fill* 0x400824d3 0x1 + .iram1.3 0x400824d4 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x42 (size before relaxing) + 0x400824d4 regi2c_ctrl_write_reg + *fill* 0x4008250a 0x2 + .iram1.4 0x4008250c 0x1a esp-idf/freertos/libfreertos.a(port.c.obj) + 0x4008250c xPortInterruptedFromISRContext + *fill* 0x40082526 0x2 + .iram1.0 0x40082528 0x24 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x2f (size before relaxing) + *fill* 0x4008254c 0x0 + .iram1.16 0x4008254c 0x17 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x1a (size before relaxing) + *fill* 0x40082563 0x1 + .iram1.4 0x40082564 0x96 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x9d (size before relaxing) + *fill* 0x400825fa 0x2 + .iram1.9 0x400825fc 0x5f esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x6b (size before relaxing) + *fill* 0x4008265b 0x1 + .iram1.1 0x4008265c 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4008265c _lock_init + *fill* 0x4008266f 0x1 + .iram1.2 0x40082670 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x40082670 _lock_init_recursive + *fill* 0x40082683 0x1 + .iram1.3 0x40082684 0x3b esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x47 (size before relaxing) + 0x40082684 _lock_close + 0x40082684 _lock_close_recursive + *fill* 0x400826bf 0x1 + .iram1.5 0x400826c0 0xe esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x12 (size before relaxing) + 0x400826c0 _lock_acquire + *fill* 0x400826ce 0x2 + .iram1.6 0x400826d0 0xe esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x12 (size before relaxing) + 0x400826d0 _lock_acquire_recursive + *fill* 0x400826de 0x2 + .iram1.7 0x400826e0 0x10 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x14 (size before relaxing) + 0x400826e0 _lock_try_acquire + .iram1.8 0x400826f0 0x10 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x14 (size before relaxing) + 0x400826f0 _lock_try_acquire_recursive + .iram1.10 0x40082700 0xf esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x40082700 _lock_release + *fill* 0x4008270f 0x1 + .iram1.11 0x40082710 0xf esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x40082710 _lock_release_recursive + *fill* 0x4008271f 0x1 + .iram1.13 0x40082720 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x40082720 __retarget_lock_init_recursive + *fill* 0x40082733 0x1 + .iram1.15 0x40082734 0xf esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x40082734 __retarget_lock_close_recursive + *fill* 0x40082743 0x1 + .iram1.18 0x40082744 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x17 (size before relaxing) + 0x40082744 __retarget_lock_acquire_recursive + *fill* 0x40082757 0x1 + .iram1.22 0x40082758 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x17 (size before relaxing) + 0x40082758 __retarget_lock_release_recursive + *fill* 0x4008276b 0x1 + .iram1.0 0x4008276c 0x29 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + 0x4008276c esp_reent_init + *fill* 0x40082795 0x3 + .iram1.1 0x40082798 0x5a esp-idf/newlib/libnewlib.a(time.c.obj) + 0x62 (size before relaxing) + 0x40082798 _gettimeofday_r + *fill* 0x400827f2 0x2 + .iram1.0 0x400827f4 0x28 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x2c (size before relaxing) + 0x400827f4 _times_r + .iram1.7 0x4008281c 0x13 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x1a (size before relaxing) + *fill* 0x4008282f 0x1 + .iram1.4 0x40082830 0x6a esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x6e (size before relaxing) + *fill* 0x4008289a 0x2 + .iram1.8 0x4008289c 0x11 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x17 (size before relaxing) + *fill* 0x400828ad 0x3 + .iram1.5 0x400828b0 0x58 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x60 (size before relaxing) + .iram1.9 0x40082908 0x1f esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x23 (size before relaxing) + *fill* 0x40082927 0x1 + .iram1.1 0x40082928 0x67 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x72 (size before relaxing) + 0x40082928 esp_timer_start_once + *fill* 0x4008298f 0x1 + .iram1.2 0x40082990 0x83 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x92 (size before relaxing) + 0x40082990 esp_timer_start_periodic + *fill* 0x40082a13 0x1 + .iram1.3 0x40082a14 0x3c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x40 (size before relaxing) + 0x40082a14 esp_timer_stop + .iram1.0 0x40082a50 0x1f esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x40082a50 esp_system_get_time + *fill* 0x40082a6f 0x1 + .iram1.3 0x40082a70 0x1a esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + *fill* 0x40082a8a 0x2 + .iram1.0 0x40082a8c 0x44 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x40082a8c esp_timer_impl_get_counter_reg + .iram1.1 0x40082ad0 0x11 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x14 (size before relaxing) + 0x40082ad0 esp_timer_impl_get_time + 0x40082ad0 esp_timer_get_time + *fill* 0x40082ae1 0x3 + .iram1.2 0x40082ae4 0x10c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x122 (size before relaxing) + 0x40082ae4 esp_timer_impl_set_alarm_id + *fill* 0x40082bf0 0x0 + .iram1.4 0x40082bf0 0x56 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x5e (size before relaxing) + 0x40082bf0 esp_timer_impl_update_apb_freq + 0x40082bf0 esp_timer_private_update_apb_freq + *fill* 0x40082c46 0x2 + .iram1.0 0x40082c48 0x16 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x40082c48 xt_unhandled_interrupt + *fill* 0x40082c5e 0x2 + .iram1 0x40082c60 0x4e2 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x506 (size before relaxing) + 0x40082c60 xt_debugexception + 0x40082d34 _xt_user_exit + 0x40083068 _xt_medint2_exit + 0x40083118 _xt_medint3_exit + 0x40083134 xt_highint5 + 0x4008313c xt_nmi + *fill* 0x40083142 0x2 + .iram1.4 0x40083144 0x1d esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x29 (size before relaxing) + *fill* 0x40083161 0x3 + .iram1.16 0x40083164 0x1a esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x22 (size before relaxing) + *fill* 0x4008317e 0x2 + .iram1.2 0x40083180 0x8 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0xb (size before relaxing) + *fill* 0x40083188 0x0 + .iram1.3 0x40083188 0x19e esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x1b2 (size before relaxing) + *fill* 0x40083326 0x2 + .iram1.1 0x40083328 0x53 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x40083328 esp_mmu_paddr_find_caps + *fill* 0x4008337b 0x1 + .iram1.3 0x4008337c 0x15 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + 0x19 (size before relaxing) + *fill* 0x40083391 0x3 + .iram1.0 0x40083394 0x12 esp-idf/driver/libdriver.a(ledc.c.obj) + 0x16 (size before relaxing) + *fill* 0x400833a6 0x2 + .iram1.1 0x400833a8 0x42 esp-idf/driver/libdriver.a(ledc.c.obj) + 0x4a (size before relaxing) + *fill* 0x400833ea 0x2 + .iram1.3 0x400833ec 0x1cf esp-idf/driver/libdriver.a(ledc.c.obj) + 0x1f7 (size before relaxing) + *fill* 0x400835bb 0x1 + .iram1.1 0x400835bc 0x1e7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x400835bc bootloader_flash_execute_command_common + *fill* 0x400837a3 0x1 + .iram1.2 0x400837a4 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x400837a4 bootloader_execute_flash_command + .iram1.4 0x400837c4 0x2a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x2e (size before relaxing) + 0x400837c4 bootloader_read_flash_id + *fill* 0x400837ee 0x2 + .iram1.12 0x400837f0 0x9a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0xa2 (size before relaxing) + 0x400837f0 bootloader_flash_reset_chip + *fill* 0x4008388a 0x2 + .iram1.6 0x4008388c 0x6e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x4008388c bootloader_flash_cs_timing_config + *fill* 0x400838fa 0x2 + .iram1.7 0x400838fc 0x36 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x400838fc bootloader_flash_clock_config + *fill* 0x40083932 0x2 + .iram1.8 0x40083934 0x1d8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x1dc (size before relaxing) + 0x40083934 bootloader_flash_gpio_config + .iram1.9 0x40083b0c 0x92 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x40083b0c bootloader_flash_dummy_config + *fill* 0x40083b9e 0x2 + .iram1.0 0x40083ba0 0x1e esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + 0x40083ba0 bootloader_common_get_chip_ver_pkg + *fill* 0x40083bbe 0x2 + .iram1.0 0x40083bc0 0xa esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0xd (size before relaxing) + 0x40083bc0 esp_flash_encryption_enabled + *fill* 0x40083bca 0x2 + .iram1.12 0x40083bcc 0x1f esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x40083bdc spi_flash_disable_cache + *fill* 0x40083beb 0x1 + .iram1.13 0x40083bec 0x1f esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x40083bfc spi_flash_restore_cache + *fill* 0x40083c0b 0x1 + .iram1.6 0x40083c0c 0x39 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x45 (size before relaxing) + 0x40083c0c spi_flash_op_block_func + *fill* 0x40083c45 0x3 + .iram1.7 0x40083c48 0xad esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0xbd (size before relaxing) + 0x40083c48 spi_flash_disable_interrupts_caches_and_other_cpu + *fill* 0x40083cf5 0x3 + .iram1.8 0x40083cf8 0x75 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x81 (size before relaxing) + 0x40083cf8 spi_flash_enable_interrupts_caches_and_other_cpu + *fill* 0x40083d6d 0x3 + .iram1.11 0x40083d70 0x25 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x2e (size before relaxing) + 0x40083d70 spi_flash_enable_cache + *fill* 0x40083d95 0x3 + .iram1.14 0x40083d98 0x11 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x40083d98 spi_flash_cache_enabled + *fill* 0x40083da9 0x3 + .iram1.0 0x40083dac 0x1a esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + *fill* 0x40083dc6 0x2 + .iram1.1 0x40083dc8 0x4c esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x50 (size before relaxing) + 0x40083dc8 spi_flash_check_and_flush_cache + .iram1.8 0x40083e14 0xa esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x40083e14 spi_flash_guard_set + *fill* 0x40083e1e 0x2 + .iram1.10 0x40083e20 0x34 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x40083e20 esp_mspi_pin_init + .iram1.6 0x40083e54 0x48 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.5 0x40083e9c 0x21 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x40083ebd 0x3 + .iram1.12 0x40083ec0 0x88 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.10 0x40083f48 0x62 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x66 (size before relaxing) + *fill* 0x40083faa 0x2 + .iram1.13 0x40083fac 0x60 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x40083fac esp_flash_get_physical_size + .iram1.9 0x4008400c 0x153 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x163 (size before relaxing) + 0x4008400c esp_flash_init_main + *fill* 0x4008415f 0x1 + .iram1.16 0x40084160 0x1df esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x1e7 (size before relaxing) + 0x40084160 esp_flash_erase_region + *fill* 0x4008433f 0x1 + .iram1.21 0x40084340 0x10a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x40084340 esp_flash_read + *fill* 0x4008444a 0x2 + .iram1.22 0x4008444c 0x16e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x176 (size before relaxing) + 0x4008444c esp_flash_write + *fill* 0x400845ba 0x2 + .iram1.25 0x400845bc 0x62 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x400845bc esp_flash_read_encrypted + *fill* 0x4008461e 0x2 + .iram1.28 0x40084620 0x254 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x258 (size before relaxing) + 0x40084620 esp_flash_write_encrypted + .iram1.9 0x40084874 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x20 (size before relaxing) + .iram1.8 0x4008488c 0x46 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4a (size before relaxing) + *fill* 0x400848d2 0x2 + .iram1.12 0x400848d4 0xa esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xe (size before relaxing) + *fill* 0x400848de 0x2 + .iram1.11 0x400848e0 0x43 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + *fill* 0x40084923 0x1 + .iram1.10 0x40084924 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.14 0x40084934 0xb esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xe (size before relaxing) + *fill* 0x4008493f 0x1 + .iram1.13 0x40084940 0x2e esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + *fill* 0x4008496e 0x2 + .iram1.1 0x40084970 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xb (size before relaxing) + *fill* 0x40084978 0x0 + .iram1.6 0x40084978 0xa esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xd (size before relaxing) + *fill* 0x40084982 0x2 + .iram1.0 0x40084984 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xb (size before relaxing) + *fill* 0x4008498c 0x0 + .iram1.7 0x4008498c 0x11 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x15 (size before relaxing) + *fill* 0x4008499d 0x3 + .iram1.8 0x400849a0 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .iram1.7 0x400849b0 0x23 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x2f (size before relaxing) + *fill* 0x400849d3 0x1 + .iram1.6 0x400849d4 0x23 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x2f (size before relaxing) + *fill* 0x400849f7 0x1 + .iram1.1 0x400849f8 0x59 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x65 (size before relaxing) + *fill* 0x40084a51 0x3 + .iram1.2 0x40084a54 0x49 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x51 (size before relaxing) + *fill* 0x40084a9d 0x3 + .iram1.3 0x40084aa0 0xf esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x40084aa0 esp_crosscore_int_send_yield + *fill* 0x40084aaf 0x1 + .iram1.6 0x40084ab0 0xf esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x40084ab0 esp_crosscore_int_send_print_backtrace + *fill* 0x40084abf 0x1 + .iram1.7 0x40084ac0 0xf esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x40084ac0 esp_crosscore_int_send_twdt_abort + *fill* 0x40084acf 0x1 + .iram1.2 0x40084ad0 0xdb esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0xde (size before relaxing) + *fill* 0x40084bab 0x1 + .iram1 0x40084bac 0x40 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + 0x48 (size before relaxing) + 0x40084bac _xt_panic + .iram1.1 0x40084bec 0xf esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + 0x40084bec esp_rom_set_cpu_ticks_per_us + *fill* 0x40084bfb 0x1 + .iram1.10 0x40084bfc 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40084c0a 0x2 + .iram1.2 0x40084c0c 0xc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x10 (size before relaxing) + 0x40084c0c wifi_malloc + .iram1.3 0x40084c18 0x11 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x40084c18 wifi_realloc + *fill* 0x40084c29 0x3 + .iram1.4 0x40084c2c 0x11 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x40084c2c wifi_calloc + *fill* 0x40084c3d 0x3 + .iram1.5 0x40084c40 0x11 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40084c51 0x3 + .iram1.16 0x40084c54 0x16 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40084c6a 0x2 + .iram1.15 0x40084c6c 0x16 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40084c82 0x2 + .iram1.14 0x40084c84 0x16 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40084c9a 0x2 + .iram1.13 0x40084c9c 0x12 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40084cae 0x2 + .iram1.1 0x40084cb0 0x8 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xb (size before relaxing) + *fill* 0x40084cb8 0x0 + .iram1.0 0x40084cb8 0x8 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xb (size before relaxing) + *fill* 0x40084cc0 0x0 + .iram1.9 0x40084cc0 0x15 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40084cd5 0x3 + .iram1.8 0x40084cd8 0xc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x10 (size before relaxing) + .iram1.7 0x40084ce4 0x11 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40084cf5 0x3 + .iram1.28 0x40084cf8 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x13 (size before relaxing) + 0x40084cf8 lmacProcessCollisions + *fill* 0x40084d07 0x1 + .iram1.32 0x40084d08 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x13 (size before relaxing) + 0x40084d08 lmacProcessAllTxTimeout + *fill* 0x40084d17 0x1 + .iram1.33 0x40084d18 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x13 (size before relaxing) + 0x40084d18 lmacPostTxComplete + *fill* 0x40084d27 0x1 + .iram1.34 0x40084d28 0x63 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x67 (size before relaxing) + 0x40084d40 lmacProcessRxSucData + *fill* 0x40084d8b 0x1 + .iram1.2 0x40084d8c 0x98 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_coex.o) + 0xb4 (size before relaxing) + 0x40084d90 pm_get_null_max_tx_time + .iram1.66 0x40084e24 0x152 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x156 (size before relaxing) + 0x40084e40 pp_post + *fill* 0x40084f76 0x2 + .iram1.4 0x40084f78 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + 0x40084f7c wifi_gpio_debug + *fill* 0x40084f8f 0x1 + .iram1.49 0x40084f90 0x9a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x9e (size before relaxing) + 0x4008501c wdev_record_rx_linked_list + *fill* 0x4008502a 0x2 + .iram1.19 0x4008502c 0x69 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x6d (size before relaxing) + 0x40085030 wdev_push_promis_misc_buf + *fill* 0x40085095 0x3 + .iram1.46 0x40085098 0x83 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xa5 (size before relaxing) + 0x400850a0 wdev_process_panic_watchdog + *fill* 0x4008511b 0x1 + .iram1.47 0x4008511c 0x1c2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x21a (size before relaxing) + 0x4008515c wDev_ProcessFiq + *fill* 0x400852de 0x2 + .iram1.50 0x400852e0 0x82 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x9a (size before relaxing) + 0x400852ec wdev_dump_rx_linked_list + *fill* 0x40085362 0x2 + .iram1.13 0x40085364 0x11 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x40085368 hal_mac_interrupt_get_event + *fill* 0x40085375 0x3 + .iram1.14 0x40085378 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x4008537c hal_mac_interrupt_clr_event + .iram1.15 0x4008538c 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x23 (size before relaxing) + 0x4008538c hal_mac_interrupt_clr_watchdog + *fill* 0x400853a7 0x1 + .iram1.2 0x400853a8 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + 0x400853ac hal_mac_rx_get_end_state + .iram1.6 0x400853bc 0x57 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + 0x5f (size before relaxing) + 0x400853cc hal_mac_rx_get_end_info + *fill* 0x40085413 0x1 + .iram1.0 0x40085414 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + 0x3e (size before relaxing) + 0x40085414 esp_random + *fill* 0x4008544e 0x2 + .iram1.1 0x40085450 0x4e esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x5e (size before relaxing) + 0x40085450 os_timer_arm_us + 0x40085450 ets_timer_arm_us + *fill* 0x4008549e 0x2 + .iram1.2 0x400854a0 0x5e esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x6a (size before relaxing) + 0x400854a0 ets_timer_arm + 0x400854a0 os_timer_arm + *fill* 0x400854fe 0x2 + .iram1.3 0x40085500 0x12 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x16 (size before relaxing) + 0x40085500 ets_timer_disarm + 0x40085500 os_timer_disarm + *fill* 0x40085512 0x2 + .iram1.2 0x40085514 0x14 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x18 (size before relaxing) + 0x40085514 phy_enter_critical + .iram1.3 0x40085528 0xe esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x14 (size before relaxing) + 0x40085528 phy_exit_critical + *fill* 0x40085536 0x2 + .iram1.4 0x40085538 0x8 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0xb (size before relaxing) + 0x40085538 esp_phy_common_clock_enable + *fill* 0x40085540 0x0 + .iram1.5 0x40085540 0x8 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0xb (size before relaxing) + 0x40085540 esp_phy_common_clock_disable + *fill* 0x40085548 0x0 + .iram1.6 0x40085548 0x74 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x87 (size before relaxing) + 0x40085548 esp_wifi_bt_power_domain_on + 0x40085548 esp_wifi_power_domain_on + *fill* 0x400855bc 0x0 + .iram1.6 0x400855bc 0x14 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x400855bc esp_coex_common_malloc_internal_wrapper + .iram1.1 0x400855d0 0x14 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x18 (size before relaxing) + 0x400855d0 esp_coex_common_int_disable_wrapper + .iram1.2 0x400855e4 0xf esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x13 (size before relaxing) + 0x400855e4 esp_coex_common_int_restore_wrapper + *fill* 0x400855f3 0x1 + .iram1.3 0x400855f4 0x8 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0xb (size before relaxing) + 0x400855f4 esp_coex_common_task_yield_from_isr_wrapper + *fill* 0x400855fc 0x0 + .iram1.4 0x400855fc 0xa esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0xe (size before relaxing) + 0x400855fc esp_coex_common_timer_disarm_wrapper + *fill* 0x40085606 0x2 + .iram1.5 0x40085608 0x12 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x40085608 esp_coex_common_timer_arm_us_wrapper + *fill* 0x4008561a 0x2 + .iram1 0x4008561c 0x896 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x9ca (size before relaxing) + 0x40085620 ram_disable_agc + 0x4008563c ram_enable_agc + 0x40085670 ram_write_gain_mem + 0x400856d4 ram_set_txclk_en + 0x40085704 ram_set_rxclk_en + 0x40085748 disable_wifi_agc + 0x400857a4 enable_wifi_agc + 0x40085810 wr_bt_tx_atten + 0x4008586c wr_bt_tx_gain_mem + 0x4008596c set_tx_gain_table + 0x40085a48 set_most_pwr_reg + 0x40085c34 bb_wdt_rst_enable + 0x40085c5c bb_wdt_int_enable + 0x40085c88 bb_wdt_timeout_clear + 0x40085ca8 bb_wdt_get_status + 0x40085cc0 bt_tx_gain_cal + 0x40085d74 bt_tx_gain_cal_set + 0x40085d84 phy_wifi_enable_set + 0x40085dd4 ram_set_noise_floor + 0x40085e40 phy_close_rf + *fill* 0x40085eb2 0x2 + .iram1 0x40085eb4 0xfc7 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x10e7 (size before relaxing) + 0x40085ebc get_target_power_offset + 0x40085f04 ram_txbbgain_to_index + 0x40085f40 ram_set_chan_cal_interp + 0x4008600c write_txrate_power_offset + 0x40086170 get_phy_target_power + 0x400861e4 force_txrx_off + 0x40086274 phy_pwdet_onetime_en + 0x400862b8 ram_read_sar_dout + 0x400862ec get_rate_fcc_index + 0x40086424 get_rate_target_power + 0x40086470 get_chan_pwr_index + 0x400864f0 write_wifi_dig_gain + 0x40086554 correct_rf_ana_gain_new + 0x40086664 tx_gain_table_set + 0x40086704 set_chan_dig_gain + 0x400869c0 tx_pwctrl_cal + 0x40086ce4 tx_pwctrl_background + 0x40086dcc ram_get_rf_gain_qdb + 0x40086de4 wifi_11g_rate_chg + 0x40086dfc ram_set_txcap_reg + *fill* 0x40086e7b 0x1 + .iram1 0x40086e7c 0xae5 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0xdbd (size before relaxing) + 0x40086e80 get_i2c_read_mask + 0x40086eb4 pll_correct_dcap + 0x40086f9c bb_rst_en_set + 0x40086fe4 phy_dis_hw_set_freq + 0x40087044 phy_force_wifi_chan + 0x4008714c phy_en_hw_set_freq + 0x400871a4 ram_chip_i2c_readReg + 0x40087280 ram_chip_i2c_writeReg + 0x40087324 phy_unforce_wifi_chan + 0x400873ac wifi_track_pll_cap + 0x40087438 phy_get_fetx_delay + 0x4008745c get_temp_cal + 0x40087498 btpwr_pll_track + 0x40087570 phy_bt_ifs_set + 0x400875bc tsens_code_read + 0x40087628 btpwr_tsens_track + 0x40087698 bt_track_tx_power + 0x400876d8 bt_track_pll_cap + 0x40087744 chan_to_freq + 0x4008777c get_i2c_write_data + 0x400877ac i2c_write_master + 0x40087824 ram_pbus_debugmode + 0x40087850 ram_pbus_force_test + 0x400878bc force_txrxoff + *fill* 0x40087961 0x0 + *fill* 0x40087961 0x0 + *fill* 0x40087961 0x0 + *fill* 0x40087961 0x0 + *fill* 0x40087961 0x0 + *fill* 0x40087961 0x0 + *fill* 0x40087961 0x0 + *fill* 0x40087961 0x3 + .iram1 0x40087964 0xa esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + 0x40087964 esp_ipc_isr_waiting_for_finish_cmd + *fill* 0x4008796e 0x0 + *fill* 0x4008796e 0x0 + *fill* 0x4008796e 0x0 + *fill* 0x4008796e 0x2 + .iram1.2 0x40087970 0x5 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x40087970 esp_reset_reason_set_hint + *fill* 0x40087975 0x3 + .iram1.3 0x40087978 0x7 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x40087978 esp_reset_reason_get_hint + *fill* 0x4008797f 0x0 + *fill* 0x4008797f 0x0 + *fill* 0x4008797f 0x0 + *fill* 0x4008797f 0x0 + *fill* 0x4008797f 0x0 + *fill* 0x4008797f 0x0 + *fill* 0x4008797f 0x0 + *fill* 0x4008797f 0x0 + *fill* 0x4008797f 0x0 + *fill* 0x4008797f 0x0 + *fill* 0x4008797f 0x0 + *fill* 0x4008797f 0x0 + *fill* 0x4008797f 0x0 + *fill* 0x4008797f 0x0 + *fill* 0x4008797f 0x0 + *fill* 0x4008797f 0x1 + .iram1.2 0x40087980 0x7 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x40087980 efuse_hal_get_disable_wafer_version_major + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x0 + *fill* 0x40087987 0x1 + .iram1.1 0x40087988 0x9 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + 0x40087988 esp_timer_impl_get_min_period_us + *fill* 0x40087991 0x0 + *fill* 0x40087991 0x0 + *fill* 0x40087991 0x0 + *fill* 0x40087991 0x0 + *fill* 0x40087991 0x0 + *fill* 0x40087991 0x0 + *fill* 0x40087991 0x0 + *fill* 0x40087991 0x0 + *fill* 0x40087991 0x0 + *fill* 0x40087991 0x0 + *fill* 0x40087991 0x0 + *fill* 0x40087991 0x0 + *fill* 0x40087991 0x0 + *fill* 0x40087991 0x0 + *fill* 0x40087991 0x0 + *fill* 0x40087991 0x0 + *fill* 0x40087991 0x0 + *fill* 0x40087991 0x0 + *fill* 0x40087991 0x0 + *fill* 0x40087991 0x0 + *fill* 0x40087991 0x0 + *fill* 0x40087991 0x0 + *fill* 0x40087991 0x0 + *fill* 0x40087991 0x0 + *fill* 0x40087991 0x0 + *fill* 0x40087991 0x0 + *fill* 0x40087991 0x0 + *fill* 0x40087991 0x0 + *fill* 0x40087991 0x0 + *fill* 0x40087991 0x0 + *fill* 0x40087991 0x0 + *fill* 0x40087991 0x3 + .iram1.11 0x40087994 0x7 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x40087994 spi_flash_init_chip_state + *fill* 0x4008799b 0x1 + .iram1.3 0x4008799c 0x28 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.4 0x400879c4 0x1e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x400879e2 0x2 + .iram1.7 0x400879e4 0xe esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x400879e4 esp_flash_chip_driver_initialized + *fill* 0x400879f2 0x0 + *fill* 0x400879f2 0x0 + *fill* 0x400879f2 0x0 + *fill* 0x400879f2 0x0 + *fill* 0x400879f2 0x0 + *fill* 0x400879f2 0x0 + *fill* 0x400879f2 0x0 + *fill* 0x400879f2 0x0 + *fill* 0x400879f2 0x0 + *fill* 0x400879f2 0x0 + *fill* 0x400879f2 0x0 + *fill* 0x400879f2 0x0 + *fill* 0x400879f2 0x0 + *fill* 0x400879f2 0x0 + *fill* 0x400879f2 0x0 + *fill* 0x400879f2 0x0 + *fill* 0x400879f2 0x0 + *fill* 0x400879f2 0x0 + *fill* 0x400879f2 0x0 + *fill* 0x400879f2 0x0 + *fill* 0x400879f2 0x0 + *fill* 0x400879f2 0x0 + *fill* 0x400879f2 0x0 + *fill* 0x400879f2 0x0 + *fill* 0x400879f2 0x0 + *fill* 0x400879f2 0x2 + .iram1.6 0x400879f4 0x12 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40087a06 0x0 + *fill* 0x40087a06 0x2 + .iram1.11 0x40087a08 0x5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40087a0d 0x3 + .iram1.12 0x40087a10 0x5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40087a15 0x3 + .iram1.17 0x40087a18 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40087a1f 0x1 + .iram1.18 0x40087a20 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40087a27 0x1 + .iram1.19 0x40087a28 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40087a2f 0x1 + .iram1.20 0x40087a30 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40087a37 0x1 + .iram1.21 0x40087a38 0x5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40087a3d 0x0 + *fill* 0x40087a3d 0x0 + *fill* 0x40087a3d 0x0 + *fill* 0x40087a3d 0x0 + *fill* 0x40087a3d 0x0 + *fill* 0x40087a3d 0x0 + *fill* 0x40087a3d 0x0 + *fill* 0x40087a3d 0x0 + *fill* 0x40087a3d 0x0 + *fill* 0x40087a3d 0x0 + *fill* 0x40087a3d 0x0 + *fill* 0x40087a3d 0x0 + *fill* 0x40087a3d 0x0 + *fill* 0x40087a3d 0x0 + *fill* 0x40087a3d 0x0 + *fill* 0x40087a3d 0x0 + *fill* 0x40087a3d 0x0 + *fill* 0x40087a3d 0x0 + *fill* 0x40087a3d 0x0 + *fill* 0x40087a3d 0x0 + *fill* 0x40087a3d 0x0 + *fill* 0x40087a3d 0x0 + *fill* 0x40087a3d 0x0 + *fill* 0x40087a3d 0x0 + *fill* 0x40087a3d 0x0 + *fill* 0x40087a3d 0x0 + *fill* 0x40087a3d 0x0 + *fill* 0x40087a3d 0x0 + *fill* 0x40087a3d 0x0 + *fill* 0x40087a3d 0x0 + *fill* 0x40087a3d 0x0 + *fill* 0x40087a3d 0x0 + *fill* 0x40087a3d 0x0 + *fill* 0x40087a3d 0x0 + *fill* 0x40087a3d 0x0 + *fill* 0x40087a3d 0x0 + *fill* 0x40087a3d 0x3 + .iram1.0 0x40087a40 0x7 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x40087a40 esp_coex_common_env_is_chip_wrapper + *fill* 0x40087a47 0x0 + *fill* 0x40087a47 0x0 + *fill* 0x40087a47 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.*) + *libdriver.a:gptimer.*(.literal.gptimer_default_isr .text.gptimer_default_isr) + *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* 0x40087a47 0x1 + .text.esp_cpu_compare_and_set + 0x40087a48 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x40087a48 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) + *fill* 0x40087a5d 0x3 + .text.esp_cpu_stall + 0x40087a60 0x86 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x8a (size before relaxing) + 0x40087a60 esp_cpu_stall + *fill* 0x40087ae6 0x0 + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_unstall .text.esp_cpu_unstall) + *fill* 0x40087ae6 0x2 + .text.esp_cpu_unstall + 0x40087ae8 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x54 (size before relaxing) + 0x40087ae8 esp_cpu_unstall + *fill* 0x40087b38 0x0 + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_wait_for_intr .text.esp_cpu_wait_for_intr) + .text.esp_cpu_wait_for_intr + 0x40087b38 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x40087b38 esp_cpu_wait_for_intr + *libesp_hw_support.a:esp_gpio_reserve.*(.literal.esp_gpio_is_pin_reserved .text.esp_gpio_is_pin_reserved) + *libesp_hw_support.a:esp_gpio_reserve.*(.literal.esp_gpio_reserve_pins .text.esp_gpio_reserve_pins) + .text.esp_gpio_reserve_pins + 0x40087b40 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + 0x40087b40 esp_gpio_reserve_pins + *libesp_hw_support.a:esp_memory_utils.*(.literal .literal.* .text .text.*) + *fill* 0x40087b59 0x3 + .text.esp_ptr_byte_accessible + 0x40087b5c 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + 0x40087b5c esp_ptr_byte_accessible + *fill* 0x40087b75 0x0 + *libesp_hw_support.a:mspi_timing_config.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:mspi_timing_tuning.*(.literal .literal.* .text .text.*) + *fill* 0x40087b75 0x3 + .text.mspi_timing_change_speed_mode_cache_safe + 0x40087b78 0x5 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + 0x40087b78 mspi_timing_change_speed_mode_cache_safe + *libesp_hw_support.a:periph_ctrl.*(.literal.periph_module_reset .text.periph_module_reset) + *fill* 0x40087b7d 0x3 + .text.periph_module_reset + 0x40087b80 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x78 (size before relaxing) + 0x40087b80 periph_module_reset + *fill* 0x40087be0 0x0 + *libesp_hw_support.a:periph_ctrl.*(.literal.wifi_module_disable .text.wifi_module_disable) + .text.wifi_module_disable + 0x40087be0 0x3b esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x4f (size before relaxing) + 0x40087be0 wifi_module_disable + *libesp_hw_support.a:periph_ctrl.*(.literal.wifi_module_enable .text.wifi_module_enable) + *fill* 0x40087c1b 0x1 + .text.wifi_module_enable + 0x40087c1c 0x3b esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x4f (size before relaxing) + 0x40087c1c wifi_module_enable + *fill* 0x40087c57 0x0 + *libesp_hw_support.a:rtc_clk.*(.literal .literal.* .text .text.*) + *fill* 0x40087c57 0x1 + .text.rtc_clk_32k_enable_common + 0x40087c58 0x88 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_to_pll_mhz + 0x40087ce0 0x9d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xa5 (size before relaxing) + *fill* 0x40087d7d 0x3 + .text.rtc_clk_bbpll_disable + 0x40087d80 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_32k_enable + 0x40087dbc 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40087dbc rtc_clk_32k_enable + *fill* 0x40087df6 0x2 + .text.rtc_clk_8m_enable + 0x40087df8 0x86 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40087df8 rtc_clk_8m_enable + *fill* 0x40087e7e 0x2 + .text.rtc_clk_8md256_enabled + 0x40087e80 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40087e80 rtc_clk_8md256_enabled + *fill* 0x40087e95 0x3 + .text.rtc_clk_slow_src_set + 0x40087e98 0x83 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x86 (size before relaxing) + 0x40087e98 rtc_clk_slow_src_set + *fill* 0x40087f1b 0x1 + .text.rtc_clk_slow_src_get + 0x40087f1c 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40087f1c rtc_clk_slow_src_get + *fill* 0x40087f37 0x1 + .text.rtc_clk_slow_freq_get_hz + 0x40087f38 0x22 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x26 (size before relaxing) + 0x40087f38 rtc_clk_slow_freq_get_hz + *fill* 0x40087f5a 0x2 + .text.rtc_clk_fast_src_set + 0x40087f5c 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40087f5c rtc_clk_fast_src_set + .text.rtc_clk_xtal_freq_get + 0x40087f98 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40087f98 rtc_get_xtal + 0x40087f98 rtc_clk_xtal_freq_get + .text.rtc_clk_cpu_freq_mhz_to_config + 0x40087fbc 0x5b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40087fbc rtc_clk_cpu_freq_mhz_to_config + *fill* 0x40088017 0x1 + .text.rtc_clk_cpu_freq_get_config + 0x40088018 0x90 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x98 (size before relaxing) + 0x40088018 rtc_clk_cpu_freq_get_config + .text.rtc_clk_apb_freq_update + 0x400880a8 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x400880a8 rtc_clk_apb_freq_update + *fill* 0x400880c1 0x3 + .text.rtc_clk_cpu_freq_to_xtal + 0x400880c4 0x81 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x89 (size before relaxing) + 0x400880c4 rtc_clk_cpu_freq_to_xtal + *fill* 0x40088145 0x3 + .text.rtc_clk_cpu_set_to_default_config + 0x40088148 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x19 (size before relaxing) + 0x40088148 rtc_clk_cpu_set_to_default_config + *fill* 0x40088159 0x3 + .text.rtc_clk_cpu_freq_set_config + 0x4008815c 0x295 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x2d5 (size before relaxing) + 0x4008815c rtc_clk_cpu_freq_set_config + *fill* 0x400883f1 0x3 + .text.rtc_dig_clk8m_enable + 0x400883f4 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x400883f4 rtc_dig_clk8m_enable + .text.rtc_dig_clk8m_disable + 0x40088414 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40088414 rtc_dig_clk8m_disable + *fill* 0x40088434 0x0 + *fill* 0x40088434 0x0 + *fill* 0x40088434 0x0 + *fill* 0x40088434 0x0 + *fill* 0x40088434 0x0 + *fill* 0x40088434 0x0 + *fill* 0x40088434 0x0 + *fill* 0x40088434 0x0 + *fill* 0x40088434 0x0 + *fill* 0x40088434 0x0 + *fill* 0x40088434 0x0 + *fill* 0x40088434 0x0 + *fill* 0x40088434 0x0 + *libesp_hw_support.a:rtc_init.*(.literal.rtc_vddsdio_get_config .text.rtc_vddsdio_get_config) + *libesp_hw_support.a:rtc_init.*(.literal.rtc_vddsdio_set_config .text.rtc_vddsdio_set_config) + *libesp_hw_support.a:rtc_sleep.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:rtc_time.*(.literal .literal.* .text .text.*) + .text.rtc_clk_cal_internal + 0x40088434 0x1bb esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x1d3 (size before relaxing) + *fill* 0x400885ef 0x1 + .text.rtc_clk_cal + 0x400885f0 0xbd esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0xc9 (size before relaxing) + 0x400885f0 rtc_clk_cal + *fill* 0x400886ad 0x3 + .text.rtc_time_get + 0x400886b0 0x77 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x400886b0 rtc_time_get + *fill* 0x40088727 0x1 + .text.rtc_clk_wait_for_slow_cycle + 0x40088728 0xaf esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0xb3 (size before relaxing) + 0x40088728 rtc_clk_wait_for_slow_cycle + *fill* 0x400887d7 0x1 + .text.rtc_clk_freq_cal + 0x400887d8 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x400887d8 rtc_clk_freq_cal + .text.startup.enable_timer_group0_for_calibration + 0x400887f4 0x5e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x62 (size before relaxing) + *fill* 0x40088852 0x0 + *fill* 0x40088852 0x0 + *fill* 0x40088852 0x0 + *fill* 0x40088852 0x0 + *libesp_hw_support.a:rtc_wdt.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:sar_periph_ctrl.*(.literal.sar_periph_ctrl_power_enable .text.sar_periph_ctrl_power_enable) + *libesp_mm.a:cache_esp32.*(.literal .literal.* .text .text.*) + *fill* 0x40088852 0x2 + .text.cache_sync + 0x40088854 0x1e esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + 0x40088854 cache_sync + *fill* 0x40088872 0x0 + *libesp_mm.a:esp_cache.*(.literal .literal.* .text .text.*) + *libesp_ringbuf.a:(.literal .literal.* .text .text.*) + *fill* 0x40088872 0x2 + .text.prvAcquireItemNoSplit + 0x40088874 0x82 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x400888f6 0x2 + .text.prvReceiveGeneric + 0x400888f8 0xcc esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0xe4 (size before relaxing) + .text.prvSendAcquireGeneric + 0x400889c4 0xd0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0xe8 (size before relaxing) + .text.xRingbufferSend + 0x40088a94 0x53 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x56 (size before relaxing) + 0x40088a94 xRingbufferSend + *fill* 0x40088ae7 0x1 + .text.xRingbufferReceive + 0x40088ae8 0x36 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x3a (size before relaxing) + 0x40088ae8 xRingbufferReceive + *fill* 0x40088b1e 0x2 + .text.vRingbufferReturnItem + 0x40088b20 0x57 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x6a (size before relaxing) + 0x40088b20 vRingbufferReturnItem + *fill* 0x40088b77 0x1 + .text.prvCheckItemAvail + 0x40088b78 0x2a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x40088ba2 0x0 + *fill* 0x40088ba2 0x0 + *fill* 0x40088ba2 0x0 + *fill* 0x40088ba2 0x0 + *libesp_rom.a:esp_rom_spiflash.*(.literal .literal.* .text .text.*) + *libesp_system.a:esp_err.*(.literal .literal.* .text .text.*) + *fill* 0x40088ba2 0x2 + .text.esp_error_check_failed_print + 0x40088ba4 0x4b esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x4f (size before relaxing) + *fill* 0x40088bef 0x1 + .text._esp_error_check_failed + 0x40088bf0 0x2a esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x2e (size before relaxing) + 0x40088bf0 _esp_error_check_failed + *fill* 0x40088c1a 0x0 + *fill* 0x40088c1a 0x0 + *libesp_system.a:esp_system_chip.*(.literal.esp_system_abort .text.esp_system_abort) + *fill* 0x40088c1a 0x2 + .text.esp_system_abort + 0x40088c1c 0x8 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0xc (size before relaxing) + 0x40088c1c esp_system_abort + *fill* 0x40088c24 0x0 + *libesp_system.a:ubsan.*(.literal .literal.* .text .text.*) + .text.__ubsan_include + 0x40088c24 0x5 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + 0x40088c24 __ubsan_include + *libesp_wifi.a:esp_adapter.*(.literal.coex_pti_get_wrapper .text.coex_pti_get_wrapper) + *fill* 0x40088c29 0x3 + .text.coex_pti_get_wrapper + 0x40088c2c 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *libesp_wifi.a:wifi_netif.*(.literal.wifi_sta_receive .text.wifi_sta_receive) + *fill* 0x40088c33 0x1 + .text.wifi_sta_receive + 0x40088c34 0x1c esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + *fill* 0x40088c50 0x0 + *libesp_wifi.a:wifi_netif.*(.literal.wifi_transmit_wrap .text.wifi_transmit_wrap) + .text.wifi_transmit_wrap + 0x40088c50 0x14 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + *libfreertos.a:(EXCLUDE_FILE(*libfreertos.a:tasks.* *libfreertos.a:idf_additions.* *libfreertos.a:freertos_compatibility.* *libfreertos.a:app_startup.*) .literal EXCLUDE_FILE(*libfreertos.a:tasks.* *libfreertos.a:idf_additions.* *libfreertos.a:freertos_compatibility.* *libfreertos.a:app_startup.*) .literal.* EXCLUDE_FILE(*libfreertos.a:tasks.* *libfreertos.a:idf_additions.* *libfreertos.a:freertos_compatibility.* *libfreertos.a:app_startup.*) .text EXCLUDE_FILE(*libfreertos.a:tasks.* *libfreertos.a:idf_additions.* *libfreertos.a:freertos_compatibility.* *libfreertos.a:app_startup.*) .text.*) + .text.prvCopyDataToQueue + 0x40088c64 0x7d esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x40088ce1 0x3 + .text.prvCopyDataFromQueue + 0x40088ce4 0x23 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x40088d07 0x1 + .text.prvNotifyQueueSetContainer + 0x40088d08 0x72 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x8a (size before relaxing) + *fill* 0x40088d7a 0x2 + .text.xQueueGenericReset + 0x40088d7c 0xa1 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xad (size before relaxing) + 0x40088d7c xQueueGenericReset + *fill* 0x40088e1d 0x3 + .text.xQueueGenericCreateStatic + 0x40088e20 0x89 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x8d (size before relaxing) + 0x40088e20 xQueueGenericCreateStatic + *fill* 0x40088ea9 0x3 + .text.xQueueGenericGetStaticBuffers + 0x40088eac 0x38 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x3c (size before relaxing) + 0x40088eac xQueueGenericGetStaticBuffers + .text.xQueueGenericCreate + 0x40088ee4 0x53 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x56 (size before relaxing) + 0x40088ee4 xQueueGenericCreate + *fill* 0x40088f37 0x1 + .text.xQueueGetMutexHolder + 0x40088f38 0x35 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x38 (size before relaxing) + 0x40088f38 xQueueGetMutexHolder + *fill* 0x40088f6d 0x3 + .text.xQueueCreateCountingSemaphore + 0x40088f70 0x2f esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x32 (size before relaxing) + 0x40088f70 xQueueCreateCountingSemaphore + *fill* 0x40088f9f 0x1 + .text.xQueueGenericSend + 0x40088fa0 0x10b esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x127 (size before relaxing) + 0x40088fa0 xQueueGenericSend + *fill* 0x400890ab 0x1 + .text.xQueueCreateMutexStatic + 0x400890ac 0x33 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x37 (size before relaxing) + 0x400890ac xQueueCreateMutexStatic + *fill* 0x400890df 0x1 + .text.xQueueGiveMutexRecursive + 0x400890e0 0x3f esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x43 (size before relaxing) + 0x400890e0 xQueueGiveMutexRecursive + *fill* 0x4008911f 0x1 + .text.xQueueCreateMutex + 0x40089120 0x2f esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x33 (size before relaxing) + 0x40089120 xQueueCreateMutex + *fill* 0x4008914f 0x1 + .text.xQueueGenericSendFromISR + 0x40089150 0xce esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xd6 (size before relaxing) + 0x40089150 xQueueGenericSendFromISR + *fill* 0x4008921e 0x2 + .text.xQueueGiveFromISR + 0x40089220 0xaa esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xae (size before relaxing) + 0x40089220 xQueueGiveFromISR + *fill* 0x400892ca 0x2 + .text.xQueueReceive + 0x400892cc 0xcf esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xeb (size before relaxing) + 0x400892cc xQueueReceive + *fill* 0x4008939b 0x1 + .text.xQueueSemaphoreTake + 0x4008939c 0x108 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x124 (size before relaxing) + 0x4008939c xQueueSemaphoreTake + .text.xQueueTakeMutexRecursive + 0x400894a4 0x42 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x46 (size before relaxing) + 0x400894a4 xQueueTakeMutexRecursive + *fill* 0x400894e6 0x2 + .text.xQueueReceiveFromISR + 0x400894e8 0x6e esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x7e (size before relaxing) + 0x400894e8 xQueueReceiveFromISR + *fill* 0x40089556 0x2 + .text.uxQueueMessagesWaiting + 0x40089558 0x32 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x36 (size before relaxing) + 0x40089558 uxQueueMessagesWaiting + *fill* 0x4008958a 0x2 + .text.vQueueDelete + 0x4008958c 0x23 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x2a (size before relaxing) + 0x4008958c vQueueDelete + *fill* 0x400895af 0x1 + .text.xPortStartScheduler + 0x400895b0 0x28 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x30 (size before relaxing) + 0x400895b0 xPortStartScheduler + .text.pxPortInitialiseStack + 0x400895d8 0x87 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x8b (size before relaxing) + 0x400895d8 pxPortInitialiseStack + *fill* 0x4008965f 0x1 + .text.xPortInIsrContext + 0x40089660 0x23 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x40089660 xPortInIsrContext + *fill* 0x40089683 0x1 + .text.xPortEnterCriticalTimeout + 0x40089684 0x148 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x157 (size before relaxing) + 0x40089684 xPortEnterCriticalTimeout + *fill* 0x400897cc 0x0 + .text.vPortExitCritical + 0x400897cc 0x94 esp-idf/freertos/libfreertos.a(port.c.obj) + 0xa0 (size before relaxing) + 0x400897cc vPortExitCritical + .text.vPortYieldOtherCore + 0x40089860 0xa esp-idf/freertos/libfreertos.a(port.c.obj) + 0xe (size before relaxing) + 0x40089860 vPortYieldOtherCore + *fill* 0x4008986a 0x2 + .text.vApplicationStackOverflowHook + 0x4008986c 0x3d esp-idf/freertos/libfreertos.a(port.c.obj) + 0x4008986c vApplicationStackOverflowHook + *fill* 0x400898a9 0x3 + .text.vPortTCBPreDeleteHook + 0x400898ac 0x7c esp-idf/freertos/libfreertos.a(port.c.obj) + 0x7f (size before relaxing) + 0x400898ac vPortTCBPreDeleteHook + *fill* 0x40089928 0x0 + .text 0x40089928 0x25a esp-idf/freertos/libfreertos.a(portasm.S.obj) + 0x26a (size before relaxing) + 0x40089928 _frxt_setup_switch + 0x40089940 _frxt_int_enter + 0x40089984 _frxt_int_exit + 0x400899d4 _frxt_timer_int + 0x400899fc _frxt_tick_timer_init + 0x40089a18 _frxt_dispatch + 0x40089a7c vPortYield + 0x40089ae0 vPortYieldFromInt + 0x40089b14 _frxt_task_coproc_state + 0x40089b54 _frxt_coproc_exc_hook + *fill* 0x40089b82 0x2 + .text._xt_tick_divisor_init + 0x40089b84 0x1c esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + 0x1f (size before relaxing) + 0x40089b84 _xt_tick_divisor_init + *fill* 0x40089ba0 0x0 + .text.pvPortMalloc + 0x40089ba0 0x14 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x40089ba0 pvPortMalloc + .text.vPortFree + 0x40089bb4 0xa esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0xe (size before relaxing) + 0x40089bb4 vPortFree + *fill* 0x40089bbe 0x2 + .text.xPortCheckValidListMem + 0x40089bc0 0x2e esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x31 (size before relaxing) + 0x40089bc0 xPortCheckValidListMem + *fill* 0x40089bee 0x2 + .text.xPortCheckValidTCBMem + 0x40089bf0 0xc esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x10 (size before relaxing) + 0x40089bf0 xPortCheckValidTCBMem + .text.xPortcheckValidStackMem + 0x40089bfc 0xc esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x10 (size before relaxing) + 0x40089bfc xPortcheckValidStackMem + .text.vApplicationGetIdleTaskMemory + 0x40089c08 0x3c esp-idf/freertos/libfreertos.a(port_common.c.obj) + 0x44 (size before relaxing) + 0x40089c08 vApplicationGetIdleTaskMemory + .text.vPortSetupTimer + 0x40089c44 0xb esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x11 (size before relaxing) + 0x40089c44 vPortSetupTimer + *fill* 0x40089c4f 0x1 + .text.xPortSysTickHandler + 0x40089c50 0x22 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x2d (size before relaxing) + 0x40089c50 xPortSysTickHandler + *fill* 0x40089c72 0x2 + .text.xEventGroupCreate + 0x40089c74 0x24 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x28 (size before relaxing) + 0x40089c74 xEventGroupCreate + .text.xEventGroupWaitBits + 0x40089c98 0xf2 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x102 (size before relaxing) + 0x40089c98 xEventGroupWaitBits + *fill* 0x40089d8a 0x2 + .text.xEventGroupClearBits + 0x40089d8c 0x4a esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x4e (size before relaxing) + 0x40089d8c xEventGroupClearBits + *fill* 0x40089dd6 0x2 + .text.xEventGroupSetBits + 0x40089dd8 0x98 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0xa7 (size before relaxing) + 0x40089dd8 xEventGroupSetBits + *fill* 0x40089e70 0x0 + .text.vEventGroupDelete + 0x40089e70 0x68 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x7b (size before relaxing) + 0x40089e70 vEventGroupDelete + *fill* 0x40089ed8 0x0 + *fill* 0x40089ed8 0x0 + *fill* 0x40089ed8 0x0 + *fill* 0x40089ed8 0x0 + *fill* 0x40089ed8 0x0 + *fill* 0x40089ed8 0x0 + *fill* 0x40089ed8 0x0 + *fill* 0x40089ed8 0x0 + *fill* 0x40089ed8 0x0 + *fill* 0x40089ed8 0x0 + *fill* 0x40089ed8 0x0 + *fill* 0x40089ed8 0x0 + *fill* 0x40089ed8 0x0 + *fill* 0x40089ed8 0x0 + *fill* 0x40089ed8 0x0 + *fill* 0x40089ed8 0x0 + *fill* 0x40089ed8 0x0 + *fill* 0x40089ed8 0x0 + *fill* 0x40089ed8 0x0 + *fill* 0x40089ed8 0x0 + *fill* 0x40089ed8 0x0 + *fill* 0x40089ed8 0x0 + *fill* 0x40089ed8 0x0 + *fill* 0x40089ed8 0x0 + *fill* 0x40089ed8 0x0 + *fill* 0x40089ed8 0x0 + *fill* 0x40089ed8 0x0 + *fill* 0x40089ed8 0x0 + *fill* 0x40089ed8 0x0 + *fill* 0x40089ed8 0x0 + .text.vListInitialise + 0x40089ed8 0x24 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x40089ed8 vListInitialise + .text.vListInitialiseItem + 0x40089efc 0xc esp-idf/freertos/libfreertos.a(list.c.obj) + 0x40089efc vListInitialiseItem + .text.vListInsertEnd + 0x40089f08 0x39 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x40089f08 vListInsertEnd + *fill* 0x40089f41 0x3 + .text.vListInsert + 0x40089f44 0x59 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x40089f44 vListInsert + *fill* 0x40089f9d 0x3 + .text.uxListRemove + 0x40089fa0 0x52 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x40089fa0 uxListRemove + *fill* 0x40089ff2 0x0 + *fill* 0x40089ff2 0x0 + *fill* 0x40089ff2 0x0 + *fill* 0x40089ff2 0x0 + *libfreertos.a:tasks.*(.literal.__getreent .literal.eTaskGetState .literal.pcTaskGetName .literal.prvAddCurrentTaskToDelayedList .literal.prvAddNewTaskToReadyList .literal.prvCheckTaskCanBeScheduledSMP .literal.prvDeleteTCB .literal.prvIdleTask .literal.prvInitialiseNewTask$constprop$0 .literal.prvIsYieldRequiredSMP .literal.prvReleaseKernelLock .literal.prvResetNextTaskUnblockTime .literal.prvSearchForNameWithinSingleList .literal.prvTakeKernelLock .literal.prvTaskIsTaskSuspended .literal.prvTaskPriorityRaise .literal.prvTaskPriorityRestore .literal.pvTaskGetCurrentTCBForCore .literal.pvTaskGetThreadLocalStoragePointer .literal.pvTaskIncrementMutexHeldCount .literal.pxTaskGetStackStart .literal.ulTaskGenericNotifyTake .literal.ulTaskGenericNotifyValueClear .literal.uxTaskGetNumberOfTasks .literal.uxTaskGetStackHighWaterMark .literal.uxTaskGetStackHighWaterMark2 .literal.uxTaskPriorityGet .literal.uxTaskPriorityGetFromISR .literal.uxTaskResetEventItemValue .literal.vTaskDelay .literal.vTaskDelete .literal.vTaskEndScheduler .literal.vTaskGenericNotifyGiveFromISR .literal.vTaskGetSnapshot .literal.vTaskInternalSetTimeOutState .literal.vTaskMissedYield .literal.vTaskPlaceOnEventList .literal.vTaskPlaceOnEventListRestricted .literal.vTaskPlaceOnUnorderedEventList .literal.vTaskPriorityDisinheritAfterTimeout .literal.vTaskPrioritySet .literal.vTaskRemoveFromUnorderedEventList .literal.vTaskResume .literal.vTaskSetThreadLocalStoragePointer .literal.vTaskSetThreadLocalStoragePointerAndDelCallback .literal.vTaskSetTimeOutState .literal.vTaskStartScheduler .literal.vTaskSuspend .literal.vTaskSuspendAll .literal.vTaskSwitchContext .literal.xTaskAbortDelay .literal.xTaskCatchUpTicks .literal.xTaskCheckForTimeOut .literal.xTaskCreatePinnedToCore .literal.xTaskCreateStaticPinnedToCore .literal.xTaskDelayUntil .literal.xTaskGenericNotify .literal.xTaskGenericNotifyFromISR .literal.xTaskGenericNotifyStateClear .literal.xTaskGenericNotifyWait .literal.xTaskGetCoreID .literal.xTaskGetCurrentTaskHandle .literal.xTaskGetCurrentTaskHandleForCore .literal.xTaskGetHandle .literal.xTaskGetIdleTaskHandle .literal.xTaskGetIdleTaskHandleForCore .literal.xTaskGetSchedulerState .literal.xTaskGetStaticBuffers .literal.xTaskGetTickCount .literal.xTaskGetTickCountFromISR .literal.xTaskIncrementTick .literal.xTaskIncrementTickOtherCores .literal.xTaskPriorityDisinherit .literal.xTaskPriorityInherit .literal.xTaskRemoveFromEventList .literal.xTaskResumeAll .literal.xTaskResumeFromISR .text .text.__getreent .text.eTaskGetState .text.pcTaskGetName .text.prvAddCurrentTaskToDelayedList .text.prvAddNewTaskToReadyList .text.prvCheckTaskCanBeScheduledSMP .text.prvDeleteTCB .text.prvIdleTask .text.prvInitialiseNewTask$constprop$0 .text.prvIsYieldRequiredSMP .text.prvReleaseKernelLock .text.prvResetNextTaskUnblockTime .text.prvSearchForNameWithinSingleList .text.prvTakeKernelLock .text.prvTaskIsTaskSuspended .text.prvTaskPriorityRaise .text.prvTaskPriorityRestore .text.pvTaskGetCurrentTCBForCore .text.pvTaskGetThreadLocalStoragePointer .text.pvTaskIncrementMutexHeldCount .text.pxTaskGetStackStart .text.ulTaskGenericNotifyTake .text.ulTaskGenericNotifyValueClear .text.uxTaskGetNumberOfTasks .text.uxTaskGetStackHighWaterMark .text.uxTaskGetStackHighWaterMark2 .text.uxTaskPriorityGet .text.uxTaskPriorityGetFromISR .text.uxTaskResetEventItemValue .text.vTaskDelay .text.vTaskDelete .text.vTaskEndScheduler .text.vTaskGenericNotifyGiveFromISR .text.vTaskGetSnapshot .text.vTaskInternalSetTimeOutState .text.vTaskMissedYield .text.vTaskPlaceOnEventList .text.vTaskPlaceOnEventListRestricted .text.vTaskPlaceOnUnorderedEventList .text.vTaskPriorityDisinheritAfterTimeout .text.vTaskPrioritySet .text.vTaskRemoveFromUnorderedEventList .text.vTaskResume .text.vTaskSetThreadLocalStoragePointer .text.vTaskSetThreadLocalStoragePointerAndDelCallback .text.vTaskSetTimeOutState .text.vTaskStartScheduler .text.vTaskSuspend .text.vTaskSuspendAll .text.vTaskSwitchContext .text.xTaskAbortDelay .text.xTaskCatchUpTicks .text.xTaskCheckForTimeOut .text.xTaskCreatePinnedToCore .text.xTaskCreateStaticPinnedToCore .text.xTaskDelayUntil .text.xTaskGenericNotify .text.xTaskGenericNotifyFromISR .text.xTaskGenericNotifyStateClear .text.xTaskGenericNotifyWait .text.xTaskGetCoreID .text.xTaskGetCurrentTaskHandle .text.xTaskGetCurrentTaskHandleForCore .text.xTaskGetHandle .text.xTaskGetIdleTaskHandle .text.xTaskGetIdleTaskHandleForCore .text.xTaskGetSchedulerState .text.xTaskGetStaticBuffers .text.xTaskGetTickCount .text.xTaskGetTickCountFromISR .text.xTaskIncrementTick .text.xTaskIncrementTickOtherCores .text.xTaskPriorityDisinherit .text.xTaskPriorityInherit .text.xTaskRemoveFromEventList .text.xTaskResumeAll .text.xTaskResumeFromISR .text.xTimerCreateTimerTask) + *fill* 0x40089ff2 0x2 + .text.prvCheckTaskCanBeScheduledSMP + 0x40089ff4 0x35 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x4008a029 0x3 + .text.prvIsYieldRequiredSMP + 0x4008a02c 0x94 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x97 (size before relaxing) + *fill* 0x4008a0c0 0x0 + .text.prvAddCurrentTaskToDelayedList + 0x4008a0c0 0xf0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xf4 (size before relaxing) + .text.prvAddNewTaskToReadyList + 0x4008a1b0 0x1a9 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1c9 (size before relaxing) + *fill* 0x4008a359 0x3 + .text.prvResetNextTaskUnblockTime + 0x4008a35c 0x32 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x4008a38e 0x2 + .text.prvDeleteTCB + 0x4008a390 0x3f esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4a (size before relaxing) + *fill* 0x4008a3cf 0x1 + .text.prvIdleTask + 0x4008a3d0 0x91 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x9c (size before relaxing) + *fill* 0x4008a461 0x3 + .text.prvInitialiseNewTask$constprop$0 + 0x4008a464 0x94 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xa4 (size before relaxing) + .text.vTaskSuspendAll + 0x4008a4f8 0x2e esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x32 (size before relaxing) + 0x4008a4f8 vTaskSuspendAll + *fill* 0x4008a526 0x2 + .text.xTaskGetTickCount + 0x4008a528 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4008a528 xTaskGetTickCount + *fill* 0x4008a535 0x3 + .text.xTaskGetTickCountFromISR + 0x4008a538 0x1e esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x22 (size before relaxing) + 0x4008a538 xTaskGetTickCountFromISR + *fill* 0x4008a556 0x2 + .text.xTaskIncrementTick + 0x4008a558 0x234 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x240 (size before relaxing) + 0x4008a558 xTaskIncrementTick + .text.vTaskSwitchContext + 0x4008a78c 0x228 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x23c (size before relaxing) + 0x4008a78c vTaskSwitchContext + .text.vTaskPlaceOnEventList + 0x4008a9b4 0x47 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x57 (size before relaxing) + 0x4008a9b4 vTaskPlaceOnEventList + *fill* 0x4008a9fb 0x1 + .text.vTaskPlaceOnUnorderedEventList + 0x4008a9fc 0xa0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xac (size before relaxing) + 0x4008a9fc vTaskPlaceOnUnorderedEventList + .text.xTaskRemoveFromEventList + 0x4008aa9c 0x1b7 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1c7 (size before relaxing) + 0x4008aa9c xTaskRemoveFromEventList + *fill* 0x4008ac53 0x1 + .text.vTaskRemoveFromUnorderedEventList + 0x4008ac54 0x1a8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1ac (size before relaxing) + 0x4008ac54 vTaskRemoveFromUnorderedEventList + .text.vTaskInternalSetTimeOutState + 0x4008adfc 0x19 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4008adfc vTaskInternalSetTimeOutState + *fill* 0x4008ae15 0x3 + .text.xTaskCheckForTimeOut + 0x4008ae18 0xa7 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xaf (size before relaxing) + 0x4008ae18 xTaskCheckForTimeOut + *fill* 0x4008aebf 0x1 + .text.xTaskGetCurrentTaskHandle + 0x4008aec0 0x1f esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4008aec0 xTaskGetCurrentTaskHandle + *fill* 0x4008aedf 0x1 + .text.vTaskPrioritySet + 0x4008aee0 0x12e esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x142 (size before relaxing) + 0x4008aee0 vTaskPrioritySet + *fill* 0x4008b00e 0x2 + .text.vTaskSuspend + 0x4008b010 0xf4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x104 (size before relaxing) + 0x4008b010 vTaskSuspend + .text.pcTaskGetName + 0x4008b104 0x26 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x2a (size before relaxing) + 0x4008b104 pcTaskGetName + *fill* 0x4008b12a 0x2 + .text.pvTaskGetThreadLocalStoragePointer + 0x4008b12c 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1c (size before relaxing) + 0x4008b12c pvTaskGetThreadLocalStoragePointer + .text.xTaskGetSchedulerState + 0x4008b144 0x34 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4008b144 xTaskGetSchedulerState + .text.vTaskDelete + 0x4008b178 0xf0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x11a (size before relaxing) + 0x4008b178 vTaskDelete + *fill* 0x4008b268 0x0 + .text.vTaskDelay + 0x4008b268 0x3b esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4f (size before relaxing) + 0x4008b268 vTaskDelay + *fill* 0x4008b2a3 0x1 + .text.xTaskResumeAll + 0x4008b2a4 0x1ba esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1d2 (size before relaxing) + 0x4008b2a4 xTaskResumeAll + *fill* 0x4008b45e 0x2 + .text.xTaskPriorityInherit + 0x4008b460 0xe4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xf0 (size before relaxing) + 0x4008b460 xTaskPriorityInherit + .text.xTaskPriorityDisinherit + 0x4008b544 0xca esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xd2 (size before relaxing) + 0x4008b544 xTaskPriorityDisinherit + *fill* 0x4008b60e 0x2 + .text.vTaskPriorityDisinheritAfterTimeout + 0x4008b610 0xe0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xeb (size before relaxing) + 0x4008b610 vTaskPriorityDisinheritAfterTimeout + *fill* 0x4008b6f0 0x0 + .text.uxTaskResetEventItemValue + 0x4008b6f0 0x42 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x46 (size before relaxing) + 0x4008b6f0 uxTaskResetEventItemValue + *fill* 0x4008b732 0x2 + .text.pvTaskIncrementMutexHeldCount + 0x4008b734 0x3e esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x42 (size before relaxing) + 0x4008b734 pvTaskIncrementMutexHeldCount + *fill* 0x4008b772 0x2 + .text.ulTaskGenericNotifyTake + 0x4008b774 0xae esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xc2 (size before relaxing) + 0x4008b774 ulTaskGenericNotifyTake + *fill* 0x4008b822 0x2 + .text.xTaskGenericNotify + 0x4008b824 0x17e esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x18e (size before relaxing) + 0x4008b824 xTaskGenericNotify + *fill* 0x4008b9a2 0x2 + .text.vTaskGenericNotifyGiveFromISR + 0x4008b9a4 0x177 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x17f (size before relaxing) + 0x4008b9a4 vTaskGenericNotifyGiveFromISR + *fill* 0x4008bb1b 0x1 + .text.prvTakeKernelLock + 0x4008bb1c 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + 0x4008bb1c prvTakeKernelLock + *fill* 0x4008bb29 0x3 + .text.prvReleaseKernelLock + 0x4008bb2c 0xb esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xe (size before relaxing) + 0x4008bb2c prvReleaseKernelLock + *fill* 0x4008bb37 0x1 + .text.xTaskIncrementTickOtherCores + 0x4008bb38 0x7e esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x86 (size before relaxing) + 0x4008bb38 xTaskIncrementTickOtherCores + *fill* 0x4008bbb6 0x2 + .text.xTaskCreatePinnedToCore + 0x4008bbb8 0x79 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x88 (size before relaxing) + 0x4008bbb8 xTaskCreatePinnedToCore + *fill* 0x4008bc31 0x3 + .text.xTaskCreateStaticPinnedToCore + 0x4008bc34 0xb0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xc0 (size before relaxing) + 0x4008bc34 xTaskCreateStaticPinnedToCore + .text.vTaskStartScheduler + 0x4008bce4 0xc1 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xd4 (size before relaxing) + 0x4008bce4 vTaskStartScheduler + *fill* 0x4008bda5 0x3 + .text.xTaskGetCoreID + 0x4008bda8 0x12 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4008bda8 xTaskGetCoreID + *fill* 0x4008bdba 0x2 + .text.xTaskGetIdleTaskHandleForCore + 0x4008bdbc 0x30 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4008bdbc xTaskGetIdleTaskHandleForCore + .text.xTaskGetCurrentTaskHandleForCore + 0x4008bdec 0x22 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x25 (size before relaxing) + 0x4008bdec xTaskGetCurrentTaskHandleForCore + *fill* 0x4008be0e 0x2 + .text.vTaskSetThreadLocalStoragePointerAndDelCallback + 0x4008be10 0x29 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x30 (size before relaxing) + 0x4008be10 vTaskSetThreadLocalStoragePointerAndDelCallback + *fill* 0x4008be39 0x3 + .text.__getreent + 0x4008be3c 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x13 (size before relaxing) + 0x4008be3c __getreent + *fill* 0x4008be4c 0x0 + .text.vTaskGetSnapshot + 0x4008be4c 0x2d esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x31 (size before relaxing) + 0x4008be4c vTaskGetSnapshot + *fill* 0x4008be79 0x0 + *fill* 0x4008be79 0x0 + *fill* 0x4008be79 0x0 + *fill* 0x4008be79 0x0 + *fill* 0x4008be79 0x0 + *fill* 0x4008be79 0x0 + *fill* 0x4008be79 0x0 + *fill* 0x4008be79 0x0 + *fill* 0x4008be79 0x0 + *fill* 0x4008be79 0x0 + *fill* 0x4008be79 0x0 + *fill* 0x4008be79 0x0 + *fill* 0x4008be79 0x0 + *fill* 0x4008be79 0x0 + *fill* 0x4008be79 0x0 + *fill* 0x4008be79 0x0 + *fill* 0x4008be79 0x0 + *fill* 0x4008be79 0x0 + *fill* 0x4008be79 0x0 + *fill* 0x4008be79 0x0 + *fill* 0x4008be79 0x0 + *fill* 0x4008be79 0x0 + *fill* 0x4008be79 0x0 + *fill* 0x4008be79 0x0 + *fill* 0x4008be79 0x0 + *fill* 0x4008be79 0x0 + *fill* 0x4008be79 0x0 + *fill* 0x4008be79 0x3 + .text.xTimerCreateTimerTask + 0x4008be7c 0x7 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4008be7c xTimerCreateTimerTask + *fill* 0x4008be83 0x0 + *fill* 0x4008be83 0x0 + *fill* 0x4008be83 0x0 + *fill* 0x4008be83 0x0 + *libgcc.a:lib2funcs.*(.literal .literal.* .text .text.*) + *libgcov.a:(.literal .literal.* .text .text.*) + *libhal.a:cache_hal_esp32.*(.literal .literal.* .text .text.*) + *fill* 0x4008be83 0x1 + .text.cache_hal_suspend + 0x4008be84 0xca esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0xda (size before relaxing) + 0x4008be84 cache_hal_suspend + *fill* 0x4008bf4e 0x2 + .text.cache_hal_resume + 0x4008bf50 0x7e esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0x8e (size before relaxing) + 0x4008bf50 cache_hal_resume + *fill* 0x4008bfce 0x2 + .text.cache_hal_is_cache_enabled + 0x4008bfd0 0x1b esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0x1f (size before relaxing) + 0x4008bfd0 cache_hal_is_cache_enabled + *fill* 0x4008bfeb 0x0 + *fill* 0x4008bfeb 0x0 + *fill* 0x4008bfeb 0x0 + *libhal.a:i2c_hal_iram.*(.literal .literal.* .text .text.*) + *libhal.a:ledc_hal_iram.*(.literal .literal.* .text .text.*) + *fill* 0x4008bfeb 0x1 + .text.ledc_hal_set_fade_param + 0x4008bfec 0xa3 esp-idf/hal/libhal.a(ledc_hal_iram.c.obj) + 0x4008bfec ledc_hal_set_fade_param + *fill* 0x4008c08f 0x1 + .text.ledc_hal_ls_channel_update + 0x4008c090 0x26 esp-idf/hal/libhal.a(ledc_hal_iram.c.obj) + 0x4008c090 ledc_hal_ls_channel_update + *fill* 0x4008c0b6 0x2 + .text.ledc_hal_set_duty_start + 0x4008c0b8 0x2c esp-idf/hal/libhal.a(ledc_hal_iram.c.obj) + 0x4008c0b8 ledc_hal_set_duty_start + .text.ledc_hal_set_duty_int_part + 0x4008c0e4 0x39 esp-idf/hal/libhal.a(ledc_hal_iram.c.obj) + 0x4008c0e4 ledc_hal_set_duty_int_part + *fill* 0x4008c11d 0x3 + .text.ledc_hal_set_hpoint + 0x4008c120 0x2d esp-idf/hal/libhal.a(ledc_hal_iram.c.obj) + 0x4008c120 ledc_hal_set_hpoint + *fill* 0x4008c14d 0x3 + .text.ledc_hal_get_duty + 0x4008c150 0x27 esp-idf/hal/libhal.a(ledc_hal_iram.c.obj) + 0x4008c150 ledc_hal_get_duty + *fill* 0x4008c177 0x0 + *fill* 0x4008c177 0x1 + .text.ledc_hal_get_fade_end_intr_status + 0x4008c178 0x23 esp-idf/hal/libhal.a(ledc_hal_iram.c.obj) + 0x4008c178 ledc_hal_get_fade_end_intr_status + *fill* 0x4008c19b 0x1 + .text.ledc_hal_clear_fade_end_intr_status + 0x4008c19c 0x22 esp-idf/hal/libhal.a(ledc_hal_iram.c.obj) + 0x4008c19c ledc_hal_clear_fade_end_intr_status + *libhal.a:mmu_hal.*(.literal .literal.* .text .text.*) + *fill* 0x4008c1be 0x2 + .text.mmu_ll_check_entry_valid$isra$0 + 0x4008c1c0 0x36 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x3a (size before relaxing) + *fill* 0x4008c1f6 0x2 + .text.mmu_hal_check_valid_ext_vaddr_region + 0x4008c1f8 0x9a esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x4008c1f8 mmu_hal_check_valid_ext_vaddr_region + *fill* 0x4008c292 0x2 + .text.mmu_hal_map_region + 0x4008c294 0x150 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x4008c294 mmu_hal_map_region + .text.mmu_hal_unmap_region + 0x4008c3e4 0x128 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x4008c3e4 mmu_hal_unmap_region + .text.mmu_hal_vaddr_to_paddr + 0x4008c50c 0xfa esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x102 (size before relaxing) + 0x4008c50c mmu_hal_vaddr_to_paddr + *fill* 0x4008c606 0x0 + *fill* 0x4008c606 0x0 + *fill* 0x4008c606 0x0 + *libhal.a:spi_flash_encrypt_hal_iram.*(.literal .literal.* .text .text.*) + *fill* 0x4008c606 0x2 + .text.spi_flash_encryption_hal_enable + 0x4008c608 0x1b esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x4008c608 spi_flash_encryption_hal_enable + *fill* 0x4008c623 0x1 + .text.spi_flash_encryption_hal_disable + 0x4008c624 0x1b esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x4008c624 spi_flash_encryption_hal_disable + *fill* 0x4008c63f 0x1 + .text.spi_flash_encryption_hal_prepare + 0x4008c640 0x2c esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x4008c640 spi_flash_encryption_hal_prepare + .text.spi_flash_encryption_hal_done + 0x4008c66c 0x10 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x4008c66c spi_flash_encryption_hal_done + *fill* 0x4008c67c 0x0 + *fill* 0x4008c67c 0x0 + *fill* 0x4008c67c 0x0 + .text.spi_flash_encryption_hal_destroy + 0x4008c67c 0x5 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x4008c67c spi_flash_encryption_hal_destroy + *fill* 0x4008c681 0x3 + .text.spi_flash_encryption_hal_check + 0x4008c684 0xf esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + 0x4008c684 spi_flash_encryption_hal_check + *libhal.a:spi_flash_hal_iram.*(.literal .literal.* .text .text.*) + *fill* 0x4008c693 0x1 + .text.spi_flash_ll_set_buffer_data + 0x4008c694 0x41 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + *fill* 0x4008c6d5 0x3 + .text.spi_flash_ll_get_buffer_data + 0x4008c6d8 0x52 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + *fill* 0x4008c72a 0x2 + .text.spi_flash_hal_configure_host_io_mode + 0x4008c72c 0x23b esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x23e (size before relaxing) + 0x4008c72c spi_flash_hal_configure_host_io_mode + *fill* 0x4008c967 0x1 + .text.spi_flash_hal_common_command + 0x4008c968 0x160 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x164 (size before relaxing) + 0x4008c968 spi_flash_hal_common_command + .text.spi_flash_hal_read + 0x4008cac8 0xb2 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4008cac8 spi_flash_hal_read + *fill* 0x4008cb7a 0x2 + .text.spi_flash_hal_program_page + 0x4008cb7c 0x7a esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4008cb7c spi_flash_hal_program_page + *fill* 0x4008cbf6 0x2 + .text.spi_flash_hal_check_status + 0x4008cbf8 0x32 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4008cbf8 spi_flash_hal_check_status + *fill* 0x4008cc2a 0x2 + .text.unlikely.spi_flash_hal_resume + 0x4008cc2c 0x6 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x9 (size before relaxing) + 0x4008cc2c spi_flash_hal_resume + *fill* 0x4008cc32 0x2 + .text.unlikely.spi_flash_hal_suspend + 0x4008cc34 0x6 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x9 (size before relaxing) + 0x4008cc34 spi_flash_hal_suspend + *fill* 0x4008cc3a 0x0 + *fill* 0x4008cc3a 0x0 + *fill* 0x4008cc3a 0x2 + .text.spi_flash_hal_poll_cmd_done + 0x4008cc3c 0xf esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4008cc3c spi_flash_hal_poll_cmd_done + *fill* 0x4008cc4b 0x1 + .text.spi_flash_hal_device_config + 0x4008cc4c 0xdb esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4008cc4c spi_flash_hal_device_config + *fill* 0x4008cd27 0x0 + *fill* 0x4008cd27 0x0 + *fill* 0x4008cd27 0x1 + .text.spi_flash_hal_erase_chip + 0x4008cd28 0x23 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4008cd28 spi_flash_hal_erase_chip + *fill* 0x4008cd4b 0x1 + .text.spi_flash_hal_erase_sector + 0x4008cd4c 0x5f esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4008cd4c spi_flash_hal_erase_sector + *fill* 0x4008cdab 0x1 + .text.spi_flash_hal_erase_block + 0x4008cdac 0x58 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4008cdac spi_flash_hal_erase_block + *fill* 0x4008ce04 0x0 + .text.spi_flash_hal_set_write_protect + 0x4008ce04 0x32 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4008ce04 spi_flash_hal_set_write_protect + *fill* 0x4008ce36 0x0 + *fill* 0x4008ce36 0x2 + .text.spi_flash_hal_setup_read_suspend + 0x4008ce38 0x7 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + 0x4008ce38 spi_flash_hal_setup_read_suspend + *fill* 0x4008ce3f 0x0 + *fill* 0x4008ce3f 0x0 + *libhal.a:spi_hal_iram.*(.literal .literal.* .text .text.*) + *libhal.a:spi_slave_hal_iram.*(.literal .literal.* .text .text.*) + *libhal.a:timer_hal.*(.literal.timer_hal_capture_and_get_counter_value .text.timer_hal_capture_and_get_counter_value) + *libhal.a:wdt_hal_iram.*(.literal .literal.* .text .text.*) + *fill* 0x4008ce3f 0x1 + .text.wdt_hal_init + 0x4008ce40 0x262 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x4008ce40 wdt_hal_init + *fill* 0x4008d0a2 0x2 + .text.wdt_hal_config_stage + 0x4008d0a4 0x146 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x14a (size before relaxing) + 0x4008d0a4 wdt_hal_config_stage + *fill* 0x4008d1ea 0x2 + .text.wdt_hal_write_protect_disable + 0x4008d1ec 0x1d esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x4008d1ec wdt_hal_write_protect_disable + *fill* 0x4008d209 0x0 + *fill* 0x4008d209 0x0 + *fill* 0x4008d209 0x0 + *fill* 0x4008d209 0x3 + .text.wdt_hal_write_protect_enable + 0x4008d20c 0x1c esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x4008d20c wdt_hal_write_protect_enable + .text.wdt_hal_enable + 0x4008d228 0x48 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x4008d228 wdt_hal_enable + .text.wdt_hal_disable + 0x4008d270 0x30 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x4008d270 wdt_hal_disable + .text.wdt_hal_handle_intr + 0x4008d2a0 0x4c esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x4008d2a0 wdt_hal_handle_intr + .text.wdt_hal_feed + 0x4008d2ec 0x2b esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x4008d2ec wdt_hal_feed + *fill* 0x4008d317 0x1 + .text.wdt_hal_set_flashboot_en + 0x4008d318 0x45 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x4008d318 wdt_hal_set_flashboot_en + *fill* 0x4008d35d 0x3 + .text.wdt_hal_is_enabled + 0x4008d360 0x1d esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x4008d360 wdt_hal_is_enabled + *libheap.a:multi_heap.*(.literal.assert_valid_block .text.assert_valid_block) + *fill* 0x4008d37d 0x3 + .text.assert_valid_block + 0x4008d380 0x28 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x2c (size before relaxing) + *fill* 0x4008d3a8 0x0 + *libheap.a:multi_heap.*(.literal.multi_heap_aligned_alloc_impl .text.multi_heap_aligned_alloc_impl) + *libheap.a:multi_heap.*(.literal.multi_heap_aligned_alloc_impl_offs .text.multi_heap_aligned_alloc_impl_offs) + *libheap.a:multi_heap.*(.literal.multi_heap_aligned_alloc_offs .text.multi_heap_aligned_alloc_offs) + *libheap.a:multi_heap.*(.literal.multi_heap_free_impl .text.multi_heap_free_impl) + .text.multi_heap_free_impl + 0x4008d3a8 0x46 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x56 (size before relaxing) + 0x4008d3a8 multi_heap_free + 0x4008d3a8 multi_heap_free_impl + 0x4008d3a8 multi_heap_aligned_free + *libheap.a:multi_heap.*(.literal.multi_heap_get_allocated_size_impl .text.multi_heap_get_allocated_size_impl) + *fill* 0x4008d3ee 0x2 + .text.multi_heap_get_allocated_size_impl + 0x4008d3f0 0xc esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x10 (size before relaxing) + 0x4008d3f0 multi_heap_get_allocated_size + 0x4008d3f0 multi_heap_get_allocated_size_impl + *fill* 0x4008d3fc 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 + 0x4008d3fc 0x16 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x1a (size before relaxing) + 0x4008d3fc multi_heap_internal_lock + *libheap.a:multi_heap.*(.literal.multi_heap_internal_unlock .text.multi_heap_internal_unlock) + *fill* 0x4008d412 0x2 + .text.multi_heap_internal_unlock + 0x4008d414 0x13 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x17 (size before relaxing) + 0x4008d414 multi_heap_internal_unlock + *fill* 0x4008d427 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* 0x4008d427 0x1 + .text.multi_heap_malloc_impl + 0x4008d428 0x53 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x63 (size before relaxing) + 0x4008d428 multi_heap_malloc_impl + 0x4008d428 multi_heap_malloc + *fill* 0x4008d47b 0x0 + *libheap.a:multi_heap.*(.literal.multi_heap_realloc_impl .text.multi_heap_realloc_impl) + *fill* 0x4008d47b 0x1 + .text.multi_heap_realloc_impl + 0x4008d47c 0x6a esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x7d (size before relaxing) + 0x4008d47c multi_heap_realloc_impl + 0x4008d47c multi_heap_realloc + *fill* 0x4008d4e6 0x0 + *libheap.a:multi_heap.*(.literal.multi_heap_set_lock .text.multi_heap_set_lock) + *fill* 0x4008d4e6 0x2 + .text.multi_heap_set_lock + 0x4008d4e8 0x7 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x4008d4e8 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* 0x4008d4ef 0x1 + .text.tlsf_alloc_overhead + 0x4008d4f0 0x7 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x4008d4f0 tlsf_alloc_overhead + *libheap.a:tlsf.*(.literal.tlsf_block_size .text.tlsf_block_size) + *fill* 0x4008d4f7 0x1 + .text.tlsf_block_size + 0x4008d4f8 0x16 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x4008d4f8 tlsf_block_size + *libheap.a:tlsf.*(.literal.tlsf_block_size_max .text.tlsf_block_size_max) + *fill* 0x4008d50e 0x2 + .text.tlsf_block_size_max + 0x4008d510 0x18 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x4008d510 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) + .text.tlsf_free + 0x4008d528 0x314 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x4008d528 tlsf_free + *libheap.a:tlsf.*(.literal.tlsf_get_pool .text.tlsf_get_pool) + .text.tlsf_get_pool + 0x4008d83c 0xd esp-idf/heap/libheap.a(tlsf.c.obj) + 0x4008d83c tlsf_get_pool + *libheap.a:tlsf.*(.literal.tlsf_malloc .text.tlsf_malloc) + *fill* 0x4008d849 0x3 + .text.tlsf_malloc + 0x4008d84c 0x2f3 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x2f7 (size before relaxing) + 0x4008d84c tlsf_malloc + *fill* 0x4008db3f 0x0 + *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* 0x4008db3f 0x1 + .text.tlsf_realloc + 0x4008db40 0x3ef esp-idf/heap/libheap.a(tlsf.c.obj) + 0x3fb (size before relaxing) + 0x4008db40 tlsf_realloc + *fill* 0x4008df2f 0x0 + *libheap.a:tlsf.*(.literal.tlsf_size .text.tlsf_size) + *fill* 0x4008df2f 0x1 + .text.tlsf_size + 0x4008df30 0xe esp-idf/heap/libheap.a(tlsf.c.obj) + 0x4008df30 tlsf_size + *liblog.a:log.*(.literal.esp_log_write .text.esp_log_write) + *fill* 0x4008df3e 0x2 + .text.esp_log_write + 0x4008df40 0x27 esp-idf/log/liblog.a(log.c.obj) + 0x4008df40 esp_log_write + *fill* 0x4008df67 0x0 + *liblog.a:log_freertos.*(.literal.esp_log_early_timestamp .text.esp_log_early_timestamp) + *fill* 0x4008df67 0x1 + .text.esp_log_early_timestamp + 0x4008df68 0x1c esp-idf/log/liblog.a(log_freertos.c.obj) + 0x4008df68 esp_log_early_timestamp + *fill* 0x4008df84 0x0 + *liblog.a:log_freertos.*(.literal.esp_log_impl_lock .text.esp_log_impl_lock) + .text.esp_log_impl_lock + 0x4008df84 0x23 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x2b (size before relaxing) + 0x4008df84 esp_log_impl_lock + *liblog.a:log_freertos.*(.literal.esp_log_impl_lock_timeout .text.esp_log_impl_lock_timeout) + *fill* 0x4008dfa7 0x1 + .text.esp_log_impl_lock_timeout + 0x4008dfa8 0x32 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x36 (size before relaxing) + 0x4008dfa8 esp_log_impl_lock_timeout + *fill* 0x4008dfda 0x0 + *liblog.a:log_freertos.*(.literal.esp_log_impl_unlock .text.esp_log_impl_unlock) + *fill* 0x4008dfda 0x2 + .text.esp_log_impl_unlock + 0x4008dfdc 0x1b esp-idf/log/liblog.a(log_freertos.c.obj) + 0x1f (size before relaxing) + 0x4008dfdc esp_log_impl_unlock + *fill* 0x4008dff7 0x0 + *liblog.a:log_freertos.*(.literal.esp_log_timestamp .text.esp_log_timestamp) + *fill* 0x4008dff7 0x1 + .text.esp_log_timestamp + 0x4008dff8 0x47 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x52 (size before relaxing) + 0x4008dff8 esp_log_timestamp + *fill* 0x4008e03f 0x0 + *libnet80211.a:(.wifi0iram .wifi0iram.*) + *fill* 0x4008e03f 0x1 + .wifi0iram.8 0x4008e040 0x70 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + 0x7c (size before relaxing) + 0x4008e050 nan_dp_search_node + .wifi0iram.20 0x4008e0b0 0x565 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x5a5 (size before relaxing) + 0x4008e0f4 ieee80211_encap_esfbuf + *fill* 0x4008e615 0x3 + .wifi0iram.11 0x4008e618 0x2b0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x2d8 (size before relaxing) + 0x4008e670 ieee80211_output_process + .wifi0iram.12 0x4008e8c8 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x4008e8cc chm_is_at_home_channel + *fill* 0x4008e8e6 0x2 + .wifi0iram.93 0x4008e8e8 0x76 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x86 (size before relaxing) + 0x4008e8f8 cnx_node_search + *fill* 0x4008e95e 0x2 + .wifi0iram.95 0x4008e960 0x55 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x69 (size before relaxing) + 0x4008e968 cnx_node_is_existing + *fill* 0x4008e9b5 0x3 + .wifi0iram.37 0x4008e9b8 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x4008e9b8 ieee80211_is_tx_allowed + *fill* 0x4008e9d6 0x0 + *fill* 0x4008e9d6 0x0 + *fill* 0x4008e9d6 0x0 + *fill* 0x4008e9d6 0x0 + *libnet80211.a:(.wifirxiram .wifirxiram.*) + *fill* 0x4008e9d6 0x2 + .wifirxiram.27 + 0x4008e9d8 0x68 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x78 (size before relaxing) + 0x4008e9e4 ampdu_dispatch + .wifirxiram.29 + 0x4008ea40 0x91 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0xa1 (size before relaxing) + 0x4008ea48 ampdu_dispatch_as_many_as_possible + *fill* 0x4008ead1 0x3 + .wifirxiram.31 + 0x4008ead4 0x8d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x9d (size before relaxing) + 0x4008ead8 ampdu_dispatch_all + *fill* 0x4008eb61 0x3 + .wifirxiram.33 + 0x4008eb64 0xd7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0xf3 (size before relaxing) + 0x4008eb68 ampdu_dispatch_upto + *fill* 0x4008ec3b 0x1 + .wifirxiram.37 + 0x4008ec3c 0x238 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x26c (size before relaxing) + 0x4008ec60 ieee80211_ampdu_reorder + .wifirxiram.45 + 0x4008ee74 0x58f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x5d7 (size before relaxing) + 0x4008eec4 sta_input + *fill* 0x4008f403 0x1 + .wifirxiram.51 + 0x4008f404 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x20 (size before relaxing) + 0x4008f404 sta_rx_cb + *fill* 0x4008f41c 0x0 + *fill* 0x4008f41c 0x0 + *fill* 0x4008f41c 0x0 + *fill* 0x4008f41c 0x0 + *fill* 0x4008f41c 0x0 + *libnet80211.a:(.wifislprxiram .wifislprxiram.*) + .wifislprxiram.38 + 0x4008f41c 0x8f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0xa3 (size before relaxing) + 0x4008f42c wifi_rf_phy_enable + *fill* 0x4008f4ab 0x1 + .wifislprxiram.40 + 0x4008f4ac 0x80 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x9c (size before relaxing) + 0x4008f4b4 wifi_rf_phy_disable + .wifislprxiram.118 + 0x4008f52c 0x4a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x52 (size before relaxing) + 0x4008f52c sta_reset_beacon_timeout + *fill* 0x4008f576 0x0 + *libnewlib.a:abort.*(.literal .literal.* .text .text.*) + *fill* 0x4008f576 0x2 + .text.unlikely.abort + 0x4008f578 0x81 esp-idf/newlib/libnewlib.a(abort.c.obj) + 0x4008f578 abort + *fill* 0x4008f5f9 0x0 + *libnewlib.a:assert.*(.literal .literal.* .text .text.*) + *fill* 0x4008f5f9 0x3 + .text.__assert_func + 0x4008f5fc 0xf8 esp-idf/newlib/libnewlib.a(assert.c.obj) + 0x100 (size before relaxing) + 0x4008f5fc __assert_func + *fill* 0x4008f6f4 0x0 + .text.newlib_include_assert_impl + 0x4008f6f4 0x5 esp-idf/newlib/libnewlib.a(assert.c.obj) + 0x4008f6f4 newlib_include_assert_impl + *libnewlib.a:heap.*(.literal .literal.* .text .text.*) + *fill* 0x4008f6f9 0x3 + .text.malloc 0x4008f6fc 0xc esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x10 (size before relaxing) + 0x4008f6fc pvalloc + 0x4008f6fc valloc + 0x4008f6fc malloc + .text.realloc 0x4008f708 0x11 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4008f708 realloc + *fill* 0x4008f719 0x3 + .text.free 0x4008f71c 0xa esp-idf/newlib/libnewlib.a(heap.c.obj) + 0xe (size before relaxing) + 0x4008f71c free + 0x4008f71c cfree + *fill* 0x4008f726 0x2 + .text._malloc_r + 0x4008f728 0xc esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x10 (size before relaxing) + 0x4008f728 _malloc_r + .text._free_r 0x4008f734 0xa esp-idf/newlib/libnewlib.a(heap.c.obj) + 0xe (size before relaxing) + 0x4008f734 _free_r + *fill* 0x4008f73e 0x2 + .text._realloc_r + 0x4008f740 0x11 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4008f740 _realloc_r + *fill* 0x4008f751 0x3 + .text._calloc_r + 0x4008f754 0x23 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4008f754 _calloc_r + *fill* 0x4008f777 0x1 + .text.calloc 0x4008f778 0x14 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x18 (size before relaxing) + 0x4008f778 calloc + *fill* 0x4008f78c 0x0 + *fill* 0x4008f78c 0x0 + *fill* 0x4008f78c 0x0 + *fill* 0x4008f78c 0x0 + *fill* 0x4008f78c 0x0 + *fill* 0x4008f78c 0x0 + .text.newlib_include_heap_impl + 0x4008f78c 0x5 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4008f78c newlib_include_heap_impl + *libnewlib.a:stdatomic.*(.literal .literal.* .text .text.*) + *libpp.a:(.wifi0iram .wifi0iram.*) + *fill* 0x4008f791 0x3 + .wifi0iram.17 0x4008f794 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x4008f798 GetAccess + *fill* 0x4008f7a9 0x3 + .wifi0iram.38 0x4008f7ac 0x82 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0xa2 (size before relaxing) + 0x4008f7b0 lmacMSDUAged + *fill* 0x4008f82e 0x2 + .wifi0iram.54 0x4008f830 0x4a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x5a (size before relaxing) + 0x4008f830 lmacAdjustTimestamp + *fill* 0x4008f87a 0x2 + .wifi0iram.55 0x4008f87c 0x1f6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x23a (size before relaxing) + 0x4008f8ac lmacTxFrame + *fill* 0x4008fa72 0x2 + .wifi0iram.59 0x4008fa74 0x8f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0xba (size before relaxing) + 0x4008fa8c lmacTxDone + *fill* 0x4008fb03 0x1 + .wifi0iram.18 0x4008fb04 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x4008fb08 lmacDiscardAgedMSDU + .wifi0iram.19 0x4008fb1c 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x27 (size before relaxing) + 0x4008fb1c lmacRecycleMPDU + *fill* 0x4008fb3f 0x1 + .wifi0iram.22 0x4008fb40 0x2c6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x31a (size before relaxing) + 0x4008fb70 lmacEndFrameExchangeSequence + *fill* 0x4008fe06 0x2 + .wifi0iram.63 0x4008fe08 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x20 (size before relaxing) + 0x4008fe08 is_lmac_idle + .wifi0iram.8 0x4008fe24 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x1e (size before relaxing) + 0x4008fe28 pp_process_hmac_waiting_txq + *fill* 0x4008fe3e 0x2 + .wifi0iram.12 0x4008fe40 0x91 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x95 (size before relaxing) + 0x4008fe44 ppTxProtoProc + *fill* 0x4008fed1 0x3 + .wifi0iram.20 0x4008fed4 0x68 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x6c (size before relaxing) + 0x4008fed4 ppProcTxCallback + .wifi0iram.23 0x4008ff3c 0x118 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x120 (size before relaxing) + 0x4008ff40 pp_coex_tx_request + .wifi0iram.33 0x40090054 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x27 (size before relaxing) + 0x40090054 ppResumeTxAMPDU + *fill* 0x40090077 0x1 + .wifi0iram.34 0x40090078 0x27 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x4009007c ppCalSubFrameLength + *fill* 0x4009009f 0x1 + .wifi0iram.62 0x400900a0 0xf6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0xfe (size before relaxing) + 0x400900a8 ppSearchTxQueue + *fill* 0x40090196 0x2 + .wifi0iram.60 0x40090198 0x110 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x120 (size before relaxing) + 0x400901a0 ppSearchTxframe + .wifi0iram.65 0x400902a8 0x18d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x1a9 (size before relaxing) + 0x400902b4 ppMapTxQueue + *fill* 0x40090435 0x3 + .wifi0iram.68 0x40090438 0x140 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x160 (size before relaxing) + 0x40090458 ppProcTxSecFrame + .wifi0iram.70 0x40090578 0x6b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x40090588 ppCalFrameTimes + *fill* 0x400905e3 0x1 + .wifi0iram.13 0x400905e4 0x1ef /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x25f (size before relaxing) + 0x400905f8 ppTxPkt + *fill* 0x400907d3 0x1 + .wifi0iram.41 0x400907d4 0x2c6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x2fe (size before relaxing) + 0x400907e8 ppCalTxAMPDULength + *fill* 0x40090a9a 0x2 + .wifi0iram.24 0x40090a9c 0x148 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x190 (size before relaxing) + 0x40090aa8 ppProcessTxQ + .wifi0iram.44 0x40090be4 0x3d7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x43a (size before relaxing) + 0x40090bfc ppResortTxAMPDU + *fill* 0x40090fbb 0x1 + .wifi0iram.10 0x40090fbc 0x21b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x24b (size before relaxing) + 0x40090ff8 ppTask + *fill* 0x400911d7 0x1 + .wifi0iram.74 0x400911d8 0xa3 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0xbb (size before relaxing) + 0x400911e4 ppProcessLifeTime + *fill* 0x4009127b 0x1 + .wifi0iram.8 0x4009127c 0x6f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x73 (size before relaxing) + 0x40091284 rcUpdateTxDone + *fill* 0x400912eb 0x1 + .wifi0iram.10 0x400912ec 0x35e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x382 (size before relaxing) + 0x40091320 rcUpdateTxDoneAmpdu2 + *fill* 0x4009164a 0x2 + .wifi0iram.11 0x4009164c 0xd5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0xdd (size before relaxing) + 0x4009166c rcGetSched + *fill* 0x40091721 0x3 + .wifi0iram.7 0x40091724 0x6f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x9b (size before relaxing) + 0x4009173c wdev_mac_reg_load + *fill* 0x40091793 0x1 + .wifi0iram.8 0x40091794 0x57 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x9b (size before relaxing) + 0x40091794 wdev_mac_reg_store + *fill* 0x400917eb 0x1 + .wifi0iram.9 0x400917ec 0x24 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x400917fc wdev_mac_special_reg_load + .wifi0iram.10 0x40091810 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x24 (size before relaxing) + 0x40091814 wdev_mac_special_reg_store + .wifi0iram.13 0x40091828 0x9d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xb5 (size before relaxing) + 0x4009183c wdev_mac_wakeup + *fill* 0x400918c5 0x3 + .wifi0iram.14 0x400918c8 0x2e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x36 (size before relaxing) + 0x400918c8 wdev_is_data_in_rxlist + *fill* 0x400918f6 0x2 + .wifi0iram.15 0x400918f8 0x7c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xa8 (size before relaxing) + 0x400918fc wdev_mac_sleep + .wifi0iram.3 0x40091974 0x30 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x34 (size before relaxing) + 0x40091978 hal_mac_tx_config_timeout + .wifi0iram.4 0x400919a4 0x5f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x63 (size before relaxing) + 0x400919ac hal_mac_tx_config_edca + *fill* 0x40091a03 0x1 + .wifi0iram.5 0x40091a04 0x28 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x2c (size before relaxing) + 0x40091a08 hal_mac_txq_enable + .wifi0iram.7 0x40091a2c 0x5b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x40091a38 hal_mac_tx_get_blockack + *fill* 0x40091a87 0x1 + .wifi0iram.8 0x40091a88 0x11 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x40091a8c hal_random + *fill* 0x40091a99 0x3 + .wifi0iram.9 0x40091a9c 0x2f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x40091aa8 hal_mac_is_low_rate_enabled + *fill* 0x40091acb 0x1 + .wifi0iram.18 0x40091acc 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x43 (size before relaxing) + 0x40091ad4 hal_mac_deinit + *fill* 0x40091b07 0x1 + .wifi0iram.5 0x40091b08 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + 0x40091b0c hal_mac_tx_is_cbw40 + *fill* 0x40091b28 0x0 + *fill* 0x40091b28 0x0 + *fill* 0x40091b28 0x0 + *fill* 0x40091b28 0x0 + *fill* 0x40091b28 0x0 + *fill* 0x40091b28 0x0 + *fill* 0x40091b28 0x0 + *fill* 0x40091b28 0x0 + *fill* 0x40091b28 0x0 + *fill* 0x40091b28 0x0 + *fill* 0x40091b28 0x0 + *fill* 0x40091b28 0x0 + .wifi0iram.35 0x40091b28 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x40091b28 ppEmptyDelimiterLength + .wifi0iram.37 0x40091b48 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x40091b48 ppSubFromAMPDU + *fill* 0x40091b64 0x0 + *fill* 0x40091b64 0x0 + *fill* 0x40091b64 0x0 + *fill* 0x40091b64 0x0 + *fill* 0x40091b64 0x0 + *fill* 0x40091b64 0x0 + *fill* 0x40091b64 0x0 + *fill* 0x40091b64 0x0 + *fill* 0x40091b64 0x0 + *fill* 0x40091b64 0x0 + *fill* 0x40091b64 0x0 + .wifi0iram.20 0x40091b64 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x40091b64 trc_isTxAmpduOperational + *fill* 0x40091b76 0x2 + .wifi0iram.21 0x40091b78 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x40091b78 trc_tid_isTxAmpduOperational + *fill* 0x40091b8f 0x1 + .wifi0iram.5 0x40091b90 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x40091b90 wdev_bank_store + *fill* 0x40091bae 0x2 + .wifi0iram.6 0x40091bb0 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x40091bb0 wdev_bank_load + *fill* 0x40091bce 0x0 + *fill* 0x40091bce 0x0 + *fill* 0x40091bce 0x0 + *fill* 0x40091bce 0x0 + *fill* 0x40091bce 0x0 + *fill* 0x40091bce 0x0 + *fill* 0x40091bce 0x0 + *fill* 0x40091bce 0x0 + *fill* 0x40091bce 0x0 + *fill* 0x40091bce 0x0 + *libpp.a:(.wifiorslpiram .wifiorslpiram.*) + *fill* 0x40091bce 0x2 + .wifiorslpiram.27 + 0x40091bd0 0x2f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x33 (size before relaxing) + 0x40091bd4 wDev_GetNoiseFloor + *libpp.a:(.wifirxiram .wifirxiram.*) + *fill* 0x40091bff 0x1 + .wifirxiram.9 0x40091c00 0x105 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x115 (size before relaxing) + 0x40091c14 esf_buf_recycle + *fill* 0x40091d05 0x3 + .wifirxiram.18 + 0x40091d08 0x7a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x8e (size before relaxing) + 0x40091d14 pm_enable_active_timer + *fill* 0x40091d82 0x2 + .wifirxiram.47 + 0x40091d84 0x7c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x88 (size before relaxing) + 0x40091d94 pm_rx_data_process + .wifirxiram.51 + 0x40091e00 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x2a (size before relaxing) + 0x40091e00 pm_on_data_rx + *fill* 0x40091e1c 0x0 + .wifirxiram.7 0x40091e1c 0x2e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x36 (size before relaxing) + 0x40091e1c ppProcessRxPktHdr + *fill* 0x40091e4a 0x2 + .wifirxiram.27 + 0x40091e4c 0x432 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x49a (size before relaxing) + 0x40091e74 ppRxFragmentProc + *fill* 0x4009227e 0x2 + .wifirxiram.9 0x40092280 0x80 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x84 (size before relaxing) + 0x40092280 rcUpdateRxDone + .wifirxiram.25 + 0x40092300 0x52 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x5a (size before relaxing) + 0x40092304 rc_get_trc + *fill* 0x40092352 0x2 + .wifirxiram.25 + 0x40092354 0x2fa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x32a (size before relaxing) + 0x40092374 wDev_IndicateAmpdu + *fill* 0x4009264e 0x0 + *fill* 0x4009264e 0x0 + *fill* 0x4009264e 0x2 + .wifirxiram.48 + 0x40092650 0x5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x40092650 pm_hmac_rx_data_process + *fill* 0x40092655 0x0 + *fill* 0x40092655 0x0 + *fill* 0x40092655 0x0 + *fill* 0x40092655 0x0 + *fill* 0x40092655 0x0 + *libpp.a:(.wifislprxiram .wifislprxiram.*) + *fill* 0x40092655 0x3 + .wifislprxiram.7 + 0x40092658 0x148 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x168 (size before relaxing) + 0x40092664 esf_buf_alloc + .wifislprxiram.3 + 0x400927a0 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x18 (size before relaxing) + 0x400927a0 ic_interface_enabled + .wifislprxiram.13 + 0x400927b4 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x400927b4 ic_mac_init + *fill* 0x400927be 0x2 + .wifislprxiram.14 + 0x400927c0 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x400927c0 ic_mac_deinit + *fill* 0x400927ca 0x2 + .wifislprxiram.3 + 0x400927cc 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x16 (size before relaxing) + 0x400927cc pm_is_waked + *fill* 0x400927de 0x2 + .wifislprxiram.4 + 0x400927e0 0x58 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x70 (size before relaxing) + 0x400927e4 pm_sleep_for + .wifislprxiram.6 + 0x40092838 0xb6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0xce (size before relaxing) + 0x40092840 pm_scale_listen_interval + *fill* 0x400928ee 0x2 + .wifislprxiram.8 + 0x400928f0 0x1d2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x216 (size before relaxing) + 0x40092918 pm_parse_beacon + *fill* 0x40092ac2 0x2 + .wifislprxiram.21 + 0x40092ac4 0x28 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x30 (size before relaxing) + 0x40092ac8 pm_disable_sleep_delay_timer + .wifislprxiram.23 + 0x40092aec 0x95 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0xa9 (size before relaxing) + 0x40092aec pm_get_tbtt_count + *fill* 0x40092b81 0x3 + .wifislprxiram.24 + 0x40092b84 0x25 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x29 (size before relaxing) + 0x40092b84 pm_save_tbtt_info + *fill* 0x40092ba9 0x3 + .wifislprxiram.26 + 0x40092bac 0xd3 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0xdb (size before relaxing) + 0x40092bb0 pm_beacon_monitor_tbtt_start + *fill* 0x40092c7f 0x1 + .wifislprxiram.27 + 0x40092c80 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x17 (size before relaxing) + 0x40092c80 pm_beacon_monitor_tbtt_stop + *fill* 0x40092c93 0x1 + .wifislprxiram.28 + 0x40092c94 0x5e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x6a (size before relaxing) + 0x40092c94 pm_enable_beacon_monitor_timer + *fill* 0x40092cf2 0x2 + .wifislprxiram.29 + 0x40092cf4 0x35 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x41 (size before relaxing) + 0x40092cf4 pm_disable_beacon_monitor_timer + *fill* 0x40092d29 0x3 + .wifislprxiram.30 + 0x40092d2c 0x142 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x162 (size before relaxing) + 0x40092d38 pm_dream + *fill* 0x40092e6e 0x2 + .wifislprxiram.31 + 0x40092e70 0x1c2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x1fa (size before relaxing) + 0x40092e78 pm_sleep + *fill* 0x40093032 0x2 + .wifislprxiram.32 + 0x40093034 0x3a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x49 (size before relaxing) + 0x40093034 pm_check_state + *fill* 0x4009306e 0x2 + .wifislprxiram.38 + 0x40093070 0x81 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x9d (size before relaxing) + 0x40093070 pm_keep_alive + *fill* 0x400930f1 0x3 + .wifislprxiram.40 + 0x400930f4 0x46 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x4e (size before relaxing) + 0x400930f4 pm_beacon_monitor_timeout_process + *fill* 0x4009313a 0x2 + .wifislprxiram.39 + 0x4009313c 0x181 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x1a5 (size before relaxing) + 0x4009314c pm_process_tim + *fill* 0x400932bd 0x3 + .wifislprxiram.45 + 0x400932c0 0x98 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0xac (size before relaxing) + 0x400932c0 pm_rx_beacon_process + .wifislprxiram.44 + 0x40093358 0x107 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x13f (size before relaxing) + 0x40093378 pm_tbtt_process + *fill* 0x4009345f 0x1 + .wifislprxiram.41 + 0x40093460 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x23 (size before relaxing) + 0x40093460 pm_beacon_monitor_tbtt_timeout_process + *fill* 0x4009347b 0x1 + .wifislprxiram.50 + 0x4009347c 0xa7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0xdf (size before relaxing) + 0x40093484 pm_on_beacon_rx + *fill* 0x40093523 0x1 + .wifislprxiram.4 + 0x40093524 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_coex.o) + 0x24 (size before relaxing) + 0x40093524 pm_coex_schm_overall_period_get + .wifislprxiram.5 + 0x40093544 0x63 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_coex.o) + 0x6f (size before relaxing) + 0x40093548 pm_coex_pwr_update + *fill* 0x400935a7 0x1 + .wifislprxiram.25 + 0x400935a8 0xdd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x10d (size before relaxing) + 0x400935ac ppRxProtoProc + *fill* 0x40093685 0x3 + .wifislprxiram.50 + 0x40093688 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x22 (size before relaxing) + 0x40093688 ppEnqueueRxq + *fill* 0x400936a6 0x2 + .wifislprxiram.51 + 0x400936a8 0x25 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x29 (size before relaxing) + 0x400936a8 ppDequeueRxq_Locked + *fill* 0x400936cd 0x3 + .wifislprxiram.29 + 0x400936d0 0x12d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x161 (size before relaxing) + 0x400936d4 ppRxPkt + *fill* 0x400937fd 0x3 + .wifislprxiram.54 + 0x40093800 0x133 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x18b (size before relaxing) + 0x4009381c wDev_AppendRxBlocks + *fill* 0x40093933 0x1 + .wifislprxiram.23 + 0x40093934 0x27a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x2be (size before relaxing) + 0x40093934 wDev_IndicateFrame + *fill* 0x40093bae 0x2 + .wifislprxiram.29 + 0x40093bb0 0x329 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x39d (size before relaxing) + 0x40093bd0 wDev_ProcessRxSucData + *fill* 0x40093ed9 0x3 + .wifislprxiram.31 + 0x40093edc 0xfc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x12c (size before relaxing) + 0x40093ef0 wdevProcessRxSucDataAll + .wifislprxiram.58 + 0x40093fd8 0x8c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xa0 (size before relaxing) + 0x40093fec wDevCheckBlockError + .wifislprxiram.11 + 0x40094064 0xd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x11 (size before relaxing) + 0x40094064 hal_mac_rx_read_rxdscrnext + *fill* 0x40094071 0x3 + .wifislprxiram.12 + 0x40094074 0x10 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x14 (size before relaxing) + 0x40094074 hal_mac_rx_set_base + .wifislprxiram.17 + 0x40094084 0x21 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x25 (size before relaxing) + 0x40094088 hal_mac_init + *fill* 0x400940a5 0x3 + .wifislprxiram.3 + 0x400940a8 0xd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + 0x11 (size before relaxing) + 0x400940a8 hal_mac_rx_get_last_dscr + *fill* 0x400940b5 0x3 + .wifislprxiram.4 + 0x400940b8 0x10 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + 0x14 (size before relaxing) + 0x400940b8 hal_mac_rx_is_dscr_reload + .wifislprxiram.5 + 0x400940c8 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + 0x1e (size before relaxing) + 0x400940c8 hal_mac_rx_set_dscr_reload + *fill* 0x400940e2 0x0 + *fill* 0x400940e2 0x0 + *fill* 0x400940e2 0x0 + *fill* 0x400940e2 0x0 + *fill* 0x400940e2 0x0 + *fill* 0x400940e2 0x0 + *fill* 0x400940e2 0x0 + *fill* 0x400940e2 0x0 + *fill* 0x400940e2 0x0 + *fill* 0x400940e2 0x0 + *fill* 0x400940e2 0x0 + *fill* 0x400940e2 0x0 + *fill* 0x400940e2 0x0 + *fill* 0x400940e2 0x0 + *fill* 0x400940e2 0x0 + *fill* 0x400940e2 0x0 + *fill* 0x400940e2 0x0 + *fill* 0x400940e2 0x0 + *fill* 0x400940e2 0x0 + *fill* 0x400940e2 0x0 + *fill* 0x400940e2 0x0 + *fill* 0x400940e2 0x0 + *fill* 0x400940e2 0x0 + *fill* 0x400940e2 0x0 + *fill* 0x400940e2 0x0 + *fill* 0x400940e2 0x0 + *fill* 0x400940e2 0x0 + *fill* 0x400940e2 0x0 + *fill* 0x400940e2 0x0 + *fill* 0x400940e2 0x0 + *fill* 0x400940e2 0x0 + *fill* 0x400940e2 0x0 + *librtc.a:(.literal .literal.* .text .text.*) + *fill* 0x400940e2 0x2 + .text.coex_bt_high_prio + 0x400940e4 0x117 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + 0x137 (size before relaxing) + 0x40094100 coex_bt_high_prio + *fill* 0x400941fb 0x1 + .text.temprature_sens_read + 0x400941fc 0xb1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + 0xe1 (size before relaxing) + 0x40094200 temprature_sens_read + *fill* 0x400942ad 0x0 + *fill* 0x400942ad 0x0 + *libsoc.a:lldesc.*(.literal .literal.* .text .text.*) + *libspi_flash.a:flash_brownout_hook.*(.literal .literal.* .text .text.*) + *fill* 0x400942ad 0x3 + .text.spi_flash_needs_reset_check + 0x400942b0 0x16 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x400942b0 spi_flash_needs_reset_check + *fill* 0x400942c6 0x2 + .text.spi_flash_set_erasing_flag + 0x400942c8 0xb esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x400942c8 spi_flash_set_erasing_flag + *fill* 0x400942d3 0x1 + .text.spi_flash_brownout_need_reset + 0x400942d4 0x19 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x400942d4 spi_flash_brownout_need_reset + *fill* 0x400942ed 0x0 + *fill* 0x400942ed 0x0 + *fill* 0x400942ed 0x0 + *libspi_flash.a:memspi_host_driver.*(.literal .literal.* .text .text.*) + *fill* 0x400942ed 0x3 + .text.memspi_host_read_id_hs + 0x400942f0 0x88 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x400942f0 memspi_host_read_id_hs + .text.memspi_host_flush_cache + 0x40094378 0x19 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x40094378 memspi_host_flush_cache + *fill* 0x40094391 0x3 + .text.memspi_host_init_pointers + 0x40094394 0x38 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x40094394 memspi_host_init_pointers + *fill* 0x400943cc 0x0 + .text.memspi_host_read_status_hs + 0x400943cc 0x3a esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x400943cc memspi_host_read_status_hs + *fill* 0x40094406 0x2 + .text.memspi_host_write_data_slicer + 0x40094408 0x32 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x40094408 memspi_host_write_data_slicer + *fill* 0x4009443a 0x2 + .text.memspi_host_read_data_slicer + 0x4009443c 0x2a esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x4009443c memspi_host_read_data_slicer + *fill* 0x40094466 0x0 + *fill* 0x40094466 0x0 + *libspi_flash.a:spi_flash_chip_boya.*(.literal .literal.* .text .text.*) + *libspi_flash.a:spi_flash_chip_gd.*(.literal .literal.* .text .text.*) + *fill* 0x40094466 0x2 + .text.spi_flash_chip_gd_detect_size + 0x40094468 0x34 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x40094468 spi_flash_chip_gd_detect_size + .text.spi_flash_chip_gd_suspend_cmd_conf + 0x4009449c 0x1d esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x4009449c spi_flash_chip_gd_suspend_cmd_conf + *fill* 0x400944b9 0x3 + .text.spi_flash_chip_gd_get_io_mode + 0x400944bc 0x1e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x400944bc spi_flash_chip_gd_get_io_mode + *fill* 0x400944da 0x2 + .text.spi_flash_chip_gd_set_io_mode + 0x400944dc 0x3b esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x400944dc spi_flash_chip_gd_set_io_mode + *fill* 0x40094517 0x1 + .text.spi_flash_chip_gd_get_caps + 0x40094518 0x19 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x40094518 spi_flash_chip_gd_get_caps + *fill* 0x40094531 0x0 + *fill* 0x40094531 0x0 + *fill* 0x40094531 0x3 + .text.spi_flash_chip_gd_probe + 0x40094534 0x22 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x40094534 spi_flash_chip_gd_probe + *fill* 0x40094556 0x0 + *libspi_flash.a:spi_flash_chip_generic.*(.literal .literal.* .text .text.*) + *fill* 0x40094556 0x2 + .text.spi_flash_chip_generic_detect_size + 0x40094558 0x42 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40094558 spi_flash_chip_generic_detect_size + *fill* 0x4009459a 0x2 + .text.spi_flash_chip_generic_config_host_io_mode + 0x4009459c 0xea esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4009459c spi_flash_chip_generic_config_host_io_mode + *fill* 0x40094686 0x2 + .text.spi_flash_chip_generic_read + 0x40094688 0x99 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x9d (size before relaxing) + 0x40094688 spi_flash_chip_generic_read + *fill* 0x40094721 0x3 + .text.spi_flash_chip_generic_write + 0x40094724 0x97 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40094724 spi_flash_chip_generic_write + *fill* 0x400947bb 0x1 + .text.spi_flash_chip_generic_yield + 0x400947bc 0x42 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x45 (size before relaxing) + 0x400947bc spi_flash_chip_generic_yield + *fill* 0x400947fe 0x2 + .text.spi_flash_chip_generic_read_unique_id + 0x40094800 0x81 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40094800 spi_flash_chip_generic_read_unique_id + *fill* 0x40094881 0x3 + .text.spi_flash_chip_generic_write_encrypted + 0x40094884 0xa7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40094884 spi_flash_chip_generic_write_encrypted + *fill* 0x4009492b 0x1 + .text.spi_flash_chip_generic_get_write_protect + 0x4009492c 0x38 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4009492c spi_flash_chip_generic_get_write_protect + .text.spi_flash_chip_generic_suspend_cmd_conf + 0x40094964 0x45 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40094964 spi_flash_chip_generic_suspend_cmd_conf + *fill* 0x400949a9 0x3 + .text.spi_flash_common_read_status_16b_rdsr_rdsr2 + 0x400949ac 0x34 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x38 (size before relaxing) + 0x400949ac spi_flash_common_read_status_16b_rdsr_rdsr2 + .text.spi_flash_common_write_status_16b_wrsr + 0x400949e0 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x400949e0 spi_flash_common_write_status_16b_wrsr + *fill* 0x400949f5 0x3 + .text.spi_flash_common_read_status_8b_rdsr2 + 0x400949f8 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x14 (size before relaxing) + 0x400949f8 spi_flash_common_read_status_8b_rdsr2 + .text.spi_flash_chip_generic_get_io_mode + 0x40094a08 0x1e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40094a08 spi_flash_chip_generic_get_io_mode + *fill* 0x40094a26 0x2 + .text.spi_flash_common_read_status_8b_rdsr + 0x40094a28 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x14 (size before relaxing) + 0x40094a28 spi_flash_common_read_status_8b_rdsr + .text.spi_flash_common_write_status_8b_wrsr + 0x40094a38 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40094a38 spi_flash_common_write_status_8b_wrsr + *fill* 0x40094a4d 0x3 + .text.spi_flash_common_write_status_8b_wrsr2 + 0x40094a50 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40094a50 spi_flash_common_write_status_8b_wrsr2 + *fill* 0x40094a65 0x3 + .text.spi_flash_chip_generic_set_io_mode + 0x40094a68 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40094a68 spi_flash_chip_generic_set_io_mode + *fill* 0x40094a80 0x0 + *fill* 0x40094a80 0x0 + .text.spi_flash_chip_generic_probe + 0x40094a80 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40094a80 spi_flash_chip_generic_probe + *fill* 0x40094a87 0x1 + .text.spi_flash_chip_generic_reset + 0x40094a88 0x54 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40094a88 spi_flash_chip_generic_reset + .text.spi_flash_chip_generic_erase_chip + 0x40094adc 0x8a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40094adc spi_flash_chip_generic_erase_chip + *fill* 0x40094b66 0x2 + .text.spi_flash_chip_generic_erase_sector + 0x40094b68 0x92 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40094b68 spi_flash_chip_generic_erase_sector + *fill* 0x40094bfa 0x2 + .text.spi_flash_chip_generic_erase_block + 0x40094bfc 0x92 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40094bfc spi_flash_chip_generic_erase_block + *fill* 0x40094c8e 0x2 + .text.spi_flash_chip_generic_set_write_protect + 0x40094c90 0x52 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40094c90 spi_flash_chip_generic_set_write_protect + *fill* 0x40094ce2 0x2 + .text.spi_flash_chip_generic_read_reg + 0x40094ce4 0x12 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40094ce4 spi_flash_chip_generic_read_reg + *fill* 0x40094cf6 0x2 + .text.spi_flash_chip_generic_wait_idle + 0x40094cf8 0x7b esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40094cf8 spi_flash_chip_generic_wait_idle + *fill* 0x40094d73 0x0 + *fill* 0x40094d73 0x1 + .text.spi_flash_chip_generic_get_caps + 0x40094d74 0x17 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40094d74 spi_flash_chip_generic_get_caps + *fill* 0x40094d8b 0x0 + *fill* 0x40094d8b 0x0 + *fill* 0x40094d8b 0x0 + *fill* 0x40094d8b 0x0 + *fill* 0x40094d8b 0x1 + .text.spi_flash_chip_generic_page_program + 0x40094d8c 0x6c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40094d8c spi_flash_chip_generic_page_program + *fill* 0x40094df8 0x0 + *fill* 0x40094df8 0x0 + .text.spi_flash_common_read_qe_sr$constprop$0$isra$0 + 0x40094df8 0x34 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .text.spi_flash_common_write_qe_sr$isra$0 + 0x40094e2c 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x40094e5c 0x0 + .text.spi_flash_chip_generic_read_unique_id_none + 0x40094e5c 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40094e5c spi_flash_chip_generic_read_unique_id_none + *fill* 0x40094e64 0x0 + *fill* 0x40094e64 0x0 + *fill* 0x40094e64 0x0 + .text.spi_flash_common_set_io_mode + 0x40094e64 0x8e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40094e64 spi_flash_common_set_io_mode + *fill* 0x40094ef2 0x0 + *libspi_flash.a:spi_flash_chip_issi.*(.literal .literal.* .text .text.*) + *fill* 0x40094ef2 0x2 + .text.spi_flash_chip_issi_set_io_mode + 0x40094ef4 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x18 (size before relaxing) + 0x40094ef4 spi_flash_chip_issi_set_io_mode + .text.spi_flash_chip_issi_get_io_mode + 0x40094f08 0x1f esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x40094f08 spi_flash_chip_issi_get_io_mode + *fill* 0x40094f27 0x1 + .text.spi_flash_chip_issi_probe + 0x40094f28 0x22 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x40094f28 spi_flash_chip_issi_probe + *fill* 0x40094f4a 0x2 + .text.spi_flash_chip_issi_get_caps + 0x40094f4c 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x40094f4c spi_flash_chip_issi_get_caps + *fill* 0x40094f53 0x0 + *libspi_flash.a:spi_flash_chip_mxic.*(.literal .literal.* .text .text.*) + *fill* 0x40094f53 0x1 + .text.spi_flash_chip_mxic_detect_size + 0x40094f54 0x48 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x40094f54 spi_flash_chip_mxic_detect_size + *fill* 0x40094f9c 0x0 + .text.spi_flash_chip_mxic_probe + 0x40094f9c 0x1c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x40094f9c spi_flash_chip_mxic_probe + .text.spi_flash_chip_mxic_get_caps + 0x40094fb8 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x40094fb8 spi_flash_chip_mxic_get_caps + *libspi_flash.a:spi_flash_chip_th.*(.literal .literal.* .text .text.*) + *libspi_flash.a:spi_flash_chip_winbond.*(.literal .literal.* .text .text.*) + *fill* 0x40094fbf 0x1 + .text.spi_flash_chip_winbond_read + 0x40094fc0 0xa5 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0xa9 (size before relaxing) + 0x40094fc0 spi_flash_chip_winbond_read + *fill* 0x40095065 0x3 + .text.spi_flash_chip_winbond_probe + 0x40095068 0x16 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x40095068 spi_flash_chip_winbond_probe + *fill* 0x4009507e 0x2 + .text.spi_flash_chip_winbond_get_caps + 0x40095080 0x19 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x40095080 spi_flash_chip_winbond_get_caps + *fill* 0x40095099 0x0 + *fill* 0x40095099 0x3 + .text.spi_flash_chip_winbond_erase_block + 0x4009509c 0x8e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x4009509c spi_flash_chip_winbond_erase_block + *fill* 0x4009512a 0x2 + .text.spi_flash_chip_winbond_erase_sector + 0x4009512c 0x8a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x4009512c spi_flash_chip_winbond_erase_sector + *fill* 0x400951b6 0x2 + .text.spi_flash_chip_winbond_page_program + 0x400951b8 0x6c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x400951b8 spi_flash_chip_winbond_page_program + *libspi_flash.a:spi_flash_wrap.*(.literal .literal.* .text .text.*) + *libxt_hal.a:(.literal .literal.* .text .text.*) + .text 0x40095224 0x137 /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + 0x40095224 xthal_spill_registers_into_stack_nw + 0x40095224 xthal_window_spill_nw + 0x40095338 xthal_window_spill + *fill* 0x4009535b 0x1 + .text 0x4009535c 0x8 /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + 0x4009535c xthal_set_intclear + .text 0x40095364 0x3e /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + 0x40095364 xthal_restore_extra_nw + *fill* 0x400953a2 0x2 + .text 0x400953a4 0x3e /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + 0x400953a4 xthal_save_extra_nw + *libxtensa.a:(EXCLUDE_FILE(*libxtensa.a:xtensa_intr.* *libxtensa.a:xt_trax.*) .literal EXCLUDE_FILE(*libxtensa.a:xtensa_intr.* *libxtensa.a:xt_trax.*) .literal.* EXCLUDE_FILE(*libxtensa.a:xtensa_intr.* *libxtensa.a:xt_trax.*) .text EXCLUDE_FILE(*libxtensa.a:xtensa_intr.* *libxtensa.a:xt_trax.*) .text.*) + *fill* 0x400953e2 0x2 + .text 0x400953e4 0x186 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + 0x18e (size before relaxing) + 0x400953e4 _xt_context_save + 0x40095488 _xt_context_restore + 0x400954cc _xt_coproc_init + 0x400954e0 _xt_coproc_release + 0x40095524 _xt_coproc_savecs + 0x40095548 _xt_coproc_restorecs + *fill* 0x4009556a 0x0 + *fill* 0x4009556a 0x2 + .text 0x4009556c 0x33 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + 0x4009556c xt_ints_on + 0x40095584 xt_ints_off + +.dram0.data 0x3ffb0000 0x3cfc + 0x3ffb0000 _data_start = ABSOLUTE (.) + *(.gnu.linkonce.d.*) + *(.data1) + *(.sdata) + *(.sdata.*) + *(.gnu.linkonce.s.*) + *(.gnu.linkonce.s2.*) + *(.jcr) + *(.data .data.*) + .data.s_keys_lock + 0x3ffb0000 0x8 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .data.esp_ipc_isr_end_fl + 0x3ffb0008 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x3ffb0008 esp_ipc_isr_end_fl + .data.s_ipc_isr_mux + 0x3ffb000c 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .data.s_panic_uart + 0x3ffb0014 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .data.rtc_wdt_ctx + 0x3ffb0018 0x8 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .data.wdt0_context + 0x3ffb0020 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .data 0x3ffb0028 0x10 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .data.hooks_spinlock + 0x3ffb0038 0x8 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .data.s_log_print_func + 0x3ffb0040 0x4 esp-idf/log/liblog.a(log.c.obj) + .data.esp_log_default_level + 0x3ffb0044 0x4 esp-idf/log/liblog.a(log.c.obj) + 0x3ffb0044 esp_log_default_level + .data.malloc_alwaysinternal_limit + 0x3ffb0048 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .data.first_call$0 + 0x3ffb004c 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + *fill* 0x3ffb004d 0x3 + .data.s_esp_rtc_time_lock + 0x3ffb0050 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .data.spinlock + 0x3ffb0058 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .data.periph_spinlock + 0x3ffb0060 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .data.rtc_spinlock + 0x3ffb0068 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x3ffb0068 rtc_spinlock + .data.mux 0x3ffb0070 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .data.xKernelLock + 0x3ffb0078 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .data.lock_init_spinlock + 0x3ffb0080 0x8 esp-idf/newlib/libnewlib.a(locks.c.obj) + .data.s_stub_table + 0x3ffb0088 0x90 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .data.s_timer_lock + 0x3ffb0118 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .data.timestamp_id + 0x3ffb0120 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + 0x3ffb0120 timestamp_id + .data.s_time_update_lock + 0x3ffb0130 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + 0x3ffb0130 s_time_update_lock + .data.s_fd_table + 0x3ffb0138 0xc0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .data.s_registered_select_lock + 0x3ffb01f8 0x8 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .data.s_context + 0x3ffb0200 0x6c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .data.light_off + 0x3ffb026c 0x6 esp-idf/main/libmain.a(mesh_main.c.obj) + 0x3ffb026c light_off + .data.light_on + 0x3ffb0272 0x6 esp-idf/main/libmain.a(mesh_main.c.obj) + 0x3ffb0272 light_on + .data.mesh_layer + 0x3ffb0278 0x4 esp-idf/main/libmain.a(mesh_main.c.obj) + .data.is_running + 0x3ffb027c 0x1 esp-idf/main/libmain.a(mesh_main.c.obj) + *fill* 0x3ffb027d 0x3 + .data 0x3ffb0280 0x400 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + 0x3ffb0280 _xt_interrupt_table + 0x3ffb0480 _xt_exception_table + .data 0x3ffb0680 0x14 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x3ffb0680 _xt_coproc_owner_sa + 0x3ffb0690 _xt_coproc_owner_sa_lock + .data.ESP_EFUSE_MAC_VERSION + 0x3ffb0694 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x3ffb0694 ESP_EFUSE_MAC_VERSION + .data.ESP_EFUSE_MAC_CUSTOM + 0x3ffb069c 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x3ffb069c ESP_EFUSE_MAC_CUSTOM + .data.ESP_EFUSE_CUSTOM_MAC_CRC + 0x3ffb06a4 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x3ffb06a4 ESP_EFUSE_CUSTOM_MAC_CRC + .data.ESP_EFUSE_MAC_CRC + 0x3ffb06ac 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x3ffb06ac ESP_EFUSE_MAC_CRC + .data.ESP_EFUSE_MAC + 0x3ffb06b4 0x1c esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x3ffb06b4 ESP_EFUSE_MAC + .data.s_cache_drv + 0x3ffb06d0 0x8 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .data.gpio_context + 0x3ffb06d8 0x20 esp-idf/driver/libdriver.a(gpio.c.obj) + .data._gpio_hal + 0x3ffb06f8 0x4 esp-idf/driver/libdriver.a(gpio.c.obj) + .data.ledc_spinlock + 0x3ffb06fc 0x8 esp-idf/driver/libdriver.a(ledc.c.obj) + .data.uart_selectlock + 0x3ffb0704 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + .data.uart_context + 0x3ffb070c 0x48 esp-idf/driver/libdriver.a(uart.c.obj) + .data.s_flash_op_cpu + 0x3ffb0754 0x4 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .data.esp_flash_registered_chips + 0x3ffb0758 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + 0x3ffb0758 esp_flash_registered_chips + .data.default_registered_chips + 0x3ffb075c 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .data.reason_spinlock + 0x3ffb0774 0x8 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .data.spinlock + 0x3ffb077c 0x8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .data.periph_spinlock + 0x3ffb0784 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .data.spinlock_rtc_deep_sleep + 0x3ffb078c 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .data.g_wifi_osi_funcs + 0x3ffb0794 0x1e0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x3ffb0794 g_wifi_osi_funcs + .data.mbedtls_cipher_base_lookup_table + 0x3ffb0974 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x3ffb0974 mbedtls_cipher_base_lookup_table + .data.mbedtls_free_func + 0x3ffb0990 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .data.mbedtls_calloc_func + 0x3ffb0994 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .data.aes_spinlock + 0x3ffb0998 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .data.engines_in_use_lock + 0x3ffb09a0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .data.memory_block_lock + 0x3ffb09a8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .data.s_mesh_ie_crypto_plain_key + 0x3ffb09b0 0x41 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + *fill* 0x3ffb09f1 0x3 + .data.g_mesh_ann_interval + 0x3ffb09f4 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x3ffb09f4 g_mesh_ann_interval + .data.g_mesh_rt_capacity + 0x3ffb09fc 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x3ffb09fc g_mesh_rt_capacity + .data.g_mesh_root_healing_delay + 0x3ffb0a00 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x3ffb0a00 g_mesh_root_healing_delay + .data.g_mesh_passive_scan_time + 0x3ffb0a04 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x3ffb0a04 g_mesh_passive_scan_time + .data.g_mesh_cfg_vote_percent + 0x3ffb0a08 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x3ffb0a08 g_mesh_cfg_vote_percent + .data.g_mesh_max_layer + 0x3ffb0a0c 0x2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x3ffb0a0c g_mesh_max_layer + .data.MESH_BCAST_ADDR + 0x3ffb0a0e 0x6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .data.mesh_nvs_handle + 0x3ffb0a14 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .data.MESH_BCAST_ADDR + 0x3ffb0a18 0x6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + *fill* 0x3ffb0a1e 0x2 + .data.s_mesh_beacon_interval + 0x3ffb0a20 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x3ffb0a20 s_mesh_beacon_interval + .data.s_monitor_parent_config + 0x3ffb0a24 0x2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .data.s_mesh_scan_done + 0x3ffb0a26 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .data.candidate_rssi$10854 + 0x3ffb0a27 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .data.g_mesh_monitor_parent_beacon_count + 0x3ffb0a28 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x3ffb0a28 g_mesh_monitor_parent_beacon_count + .data.MESH_BCAST_ADDR + 0x3ffb0a2c 0x6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + *fill* 0x3ffb0a32 0x2 + .data.g_mesh_packet_lifetime + 0x3ffb0a34 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x3ffb0a34 g_mesh_packet_lifetime + .data.MESH_BCAST_ADDR + 0x3ffb0a38 0x6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + *fill* 0x3ffb0a3e 0x2 + .data.s_mesh_active_duty_cycle + 0x3ffb0a40 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .data.g_mesh_dfs_compensation_ms + 0x3ffb0a44 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + 0x3ffb0a44 g_mesh_dfs_compensation_ms + .data.mesh_timer_info + 0x3ffb0a48 0x40 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + 0x3ffb0a48 mesh_timer_info + .data.MESH_BCAST_ADDR + 0x3ffb0a88 0x6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + *fill* 0x3ffb0a8e 0x2 + .data.WIFI_MESH_EVENT + 0x3ffb0a90 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x3ffb0a90 WIFI_MESH_EVENT + .data.g_wifi_event_mask + 0x3ffb0a94 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x3ffb0a94 g_wifi_event_mask + .data.s_wifi_init_state + 0x3ffb0a98 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .data.TmpSTAAPCloseAP + 0x3ffb0a9c 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x3ffb0a9c TmpSTAAPCloseAP + .data.g_phy_cap_rx_stbc + 0x3ffb0a9d 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x3ffb0a9d g_phy_cap_rx_stbc + .data.g_mesh_root_conflicts_allowed + 0x3ffb0a9e 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x3ffb0a9e g_mesh_root_conflicts_allowed + *fill* 0x3ffb0a9f 0x1 + .data.map_assoc_expire + 0x3ffb0aa0 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x3ffb0aa0 map_assoc_expire + .data.g_mesh_self_organized + 0x3ffb0aa4 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + 0x3ffb0aa4 g_mesh_self_organized + .data.s_ndp_id + 0x3ffb0aa5 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + 0x3ffb0aa5 s_ndp_id + *fill* 0x3ffb0aa6 0x2 + .data.g_wifi_nvs + 0x3ffb0aa8 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x3ffb0aa8 g_wifi_nvs + .data.s_raw_seq$13224 + 0x3ffb0aac 0x2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .data.country_info_24ghz + 0x3ffb0aae 0xe6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + 0x3ffb0aae country_info_24ghz + .data.g_scan_chan_list + 0x3ffb0b94 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + *fill* 0x3ffb0ba2 0x2 + .data.g_scan 0x3ffb0ba4 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x3ffb0ba4 g_scan + .data.g_dynamic_cs + 0x3ffb0ba8 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x3ffb0ba8 g_dynamic_cs + .data.send_deauth + 0x3ffb0bb4 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x3ffb0bb4 send_deauth + *fill* 0x3ffb0bb5 0x1 + .data.s_ap_igtk_active_idx + 0x3ffb0bb6 0x2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .data.s_sta_igtk_active_idx + 0x3ffb0bb8 0x2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + *fill* 0x3ffb0bba 0x2 + .data.g_timer_info + 0x3ffb0bbc 0x100 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x3ffb0bbc g_timer_info + .data.g_chm 0x3ffb0cbc 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x3ffb0cbc g_chm + .data.join_deny_flag + 0x3ffb0cc0 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + *fill* 0x3ffb0cc1 0x3 + .data.public_recv_action + 0x3ffb0cc4 0x88 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .data.sa_query_recv_action + 0x3ffb0d4c 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .data.vendor_recv_action + 0x3ffb0d54 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .data.ht_recv_action + 0x3ffb0d58 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .data.ba_recv_action + 0x3ffb0d5c 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .data.sa_query_send_action + 0x3ffb0d68 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .data.vendor_send_action + 0x3ffb0d70 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .data.ht_send_action + 0x3ffb0d74 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .data.ba_send_action + 0x3ffb0d78 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .data.ccmp 0x3ffb0d84 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + 0x3ffb0d84 ccmp + .data.sms4 0x3ffb0d9c 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + 0x3ffb0d9c sms4 + .data.tkip 0x3ffb0db4 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + 0x3ffb0db4 tkip + .data.wep 0x3ffb0dcc 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + 0x3ffb0dcc wep + .data.g_eb_list_desc + 0x3ffb0de4 0xc8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x3ffb0de4 g_eb_list_desc + .data.lmacConfMib + 0x3ffb0eac 0x30 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x3ffb0eac lmacConfMib + .data.g_pm_cfg + 0x3ffb0edc 0x2c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x3ffb0edc g_pm_cfg + .data.pTxRx 0x3ffb0f08 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x3ffb0f08 pTxRx + .data.TxRxCxt 0x3ffb0f0c 0x3cc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x3ffb0f0c TxRxCxt + .data.g_pp_timer_info + 0x3ffb12d8 0x60 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x3ffb12d8 g_pp_timer_info + .data.rc11BSchedTbl + 0x3ffb1338 0x48 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x3ffb1338 rc11BSchedTbl + .data.rcP2P11GSchedTbl + 0x3ffb1380 0x60 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x3ffb1380 rcP2P11GSchedTbl + .data.rc11GSchedTbl + 0x3ffb13e0 0x9c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x3ffb13e0 rc11GSchedTbl + .data.rcP2P11NSchedTbl + 0x3ffb147c 0x6c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x3ffb147c rcP2P11NSchedTbl + .data.rc11NSchedTbl + 0x3ffb14e8 0xa8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x3ffb14e8 rc11NSchedTbl + .data.rcLoRaSchedTbl + 0x3ffb1590 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x3ffb1590 rcLoRaSchedTbl + .data.BasicOFDMSched + 0x3ffb15a8 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x3ffb15a8 BasicOFDMSched + .data.trc_ctl 0x3ffb15b4 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x3ffb15b4 trc_ctl + .data.BcnInterval + 0x3ffb15d0 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x3ffb15d0 BcnInterval + .data.wDevCtrl + 0x3ffb15d4 0x38 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x3ffb15d4 wDevCtrl + .data.s_mac_table + 0x3ffb160c 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .data.tcp_port + 0x3ffb1644 0x2 esp-idf/lwip/liblwip.a(tcp.c.obj) + .data.udp_port + 0x3ffb1646 0x2 esp-idf/lwip/liblwip.a(udp.c.obj) + .data.retrans_timer + 0x3ffb1648 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x3ffb1648 retrans_timer + .data.reachable_time + 0x3ffb164c 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x3ffb164c reachable_time + .data._g_esp_netif_netstack_default_wifi_ap + 0x3ffb1650 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + 0x3ffb1650 _g_esp_netif_netstack_default_wifi_ap + .data._g_esp_netif_netstack_default_wifi_sta + 0x3ffb1654 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + 0x3ffb1654 _g_esp_netif_netstack_default_wifi_sta + .data.g_allowed_groups + 0x3ffb1658 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x3ffb1658 g_allowed_groups + .data._ZN10__cxxabiv119__terminate_handlerE + 0x3ffb1660 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_term_handler.o) + 0x3ffb1660 _ZN10__cxxabiv119__terminate_handlerE + .data.chan14_mic_most_power + 0x3ffb1664 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x3ffb1664 chan14_mic_most_power + .data.phy_in_most_power_bk + 0x3ffb1665 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x3ffb1665 phy_in_most_power_bk + .data.phy_in_most_power + 0x3ffb1666 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x3ffb1666 phy_in_most_power + *fill* 0x3ffb1667 0x1 + .data.bt_tx_pa_gain + 0x3ffb1668 0x2 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x3ffb1668 bt_tx_pa_gain + *fill* 0x3ffb166a 0x2 + .data.tx_rf_ana_gain + 0x3ffb166c 0x4 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x3ffb166c tx_rf_ana_gain + .data.wifi_bbgain_max + 0x3ffb1670 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x3ffb1670 wifi_bbgain_max + *fill* 0x3ffb1671 0x3 + .data.bt_rx_gain_swp + 0x3ffb1674 0x9 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .data.rfbb_gain_swp + 0x3ffb167d 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + *fill* 0x3ffb167e 0x2 + .data.wifi_rx_gain_swp + 0x3ffb1680 0xc /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .data.wifi_txband_ht40 + 0x3ffb168c 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x3ffb168c wifi_txband_ht40 + .data.wifi_txband + 0x3ffb168d 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x3ffb168d wifi_txband + .data.rfcal_bb_atten_init + 0x3ffb168e 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x3ffb168e rfcal_bb_atten_init + .data.dreg_1p2_set + 0x3ffb168f 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x3ffb168f dreg_1p2_set + .data.phy_wifi_pll_track_en + 0x3ffb1690 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x3ffb1690 phy_wifi_pll_track_en + .data.phy_bt_pll_track_en + 0x3ffb1691 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x3ffb1691 phy_bt_pll_track_en + *fill* 0x3ffb1692 0x2 + .data 0x3ffb1694 0xc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-findfp.o) + 0x3ffb1694 __sglue + .data 0x3ffb16a0 0xf4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-impure.o) + 0x3ffb16a0 _impure_ptr + 0x3ffb16a4 _impure_data + .data 0x3ffb1794 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-locale.o) + 0x3ffb1794 __global_locale_ptr + *(.dram1 .dram1.*) + .dram1.2 0x3ffb1798 0x2b esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .dram1.0 0x3ffb17c3 0x4 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + *fill* 0x3ffb17c7 0x1 + .dram1.4 0x3ffb17c8 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .dram1.3 0x3ffb17d0 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .dram1.2 0x3ffb17d4 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .dram1.1 0x3ffb17d8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .dram1.0 0x3ffb17dc 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .dram1.0 0x3ffb17e0 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3ffb17e0 FreeRTOS_openocd_params + *fill* 0x3ffb17e8 0x8 + .dram1.3 0x3ffb17f0 0xc00 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3ffb17f0 port_IntStack + .dram1.2 0x3ffb23f0 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3ffb23f0 offset_xCoreID + .dram1.1 0x3ffb23f4 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3ffb23f4 offset_cpsa + .dram1.0 0x3ffb23f8 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3ffb23f8 offset_pxEndOfStack + .dram1.0 0x3ffb23fc 0x4 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.6 0x3ffb2400 0x8 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x3ffb2400 g_flash_guard_default_ops + .dram1.32 0x3ffb2408 0x1b esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .dram1.31 0x3ffb2423 0x21 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .dram1.30 0x3ffb2444 0x3b esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .dram1.29 0x3ffb247f 0x3e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .dram1.23 0x3ffb24bd 0x1b esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .dram1.2 0x3ffb24d8 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x3ffb24d8 rom_spiflash_api_funcs + .dram1.1 0x3ffb24dc 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .dram1.0 0x3ffb24ec 0xa esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x3ffb24f6 0x2 + .dram1.2 0x3ffb24f8 0x20 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .dram1.1 0x3ffb2518 0x2c esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .dram1.16 0x3ffb2544 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .dram1.15 0x3ffb256c 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .dram1.10 0x3ffb257c 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x3ffb257c esp_flash_noos_functions + .dram1.5 0x3ffb25a4 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x3ffb25a4 spi_flash_chip_generic_timeout + .dram1.4 0x3ffb25b8 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .dram1.3 0x3ffb25d0 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x3ffb25d0 rom_flash_chip_dummy_hpm + .dram1.2 0x3ffb25d4 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x3ffb25d4 rom_flash_chip_dummy + .dram1.1 0x3ffb25d8 0x6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .dram1.0 0x3ffb25de 0x6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .dram1.0 0x3ffb25e4 0x58 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .dram1.1 0x3ffb263c 0xa8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .dram1.0 0x3ffb26e4 0xa8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .dram1.0 0x3ffb278c 0x19 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .dram1.0 0x3ffb27a5 0x28 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + 0x3ffb27a5 GPIO_PIN_MUX_REG_OFFSET + *fill* 0x3ffb27cd 0x3 + .dram1.6 0x3ffb27d0 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x3ffb27d0 g_wifi_mac_time_delta + .dram1.5 0x3ffb27d4 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x3ffb27d4 g_osi_funcs_p + .dram1.5 0x3ffb27d8 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x3ffb27d8 g_intr_lock_mux + .dram1.4 0x3ffb27dc 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + 0x3ffb27dc g_mesh_is_root + *fill* 0x3ffb27dd 0x3 + .dram1.3 0x3ffb27e0 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + 0x3ffb27e0 g_mesh_init_ps_type + .dram1.2 0x3ffb27e4 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + 0x3ffb27e4 g_mesh_is_started + .dram1.2 0x3ffb27e5 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x3ffb27e5 g_sta_connected_flag + *fill* 0x3ffb27e6 0x2 + .dram1.3 0x3ffb27e8 0x80 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x3ffb27e8 eb_txdesc_space + .dram1.5 0x3ffb2868 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x3ffb2868 xphyQueue + .dram1.4 0x3ffb286c 0x90 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x3ffb286c bars + .dram1.3 0x3ffb28fc 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x3ffb28fc pp_sig_cnt + *fill* 0x3ffb291a 0x2 + .dram1.3 0x3ffb291c 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .dram1.48 0x3ffb2920 0x84 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x3ffb2920 s_record_list + .dram1.45 0x3ffb29a4 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + *fill* 0x3ffb29a5 0x3 + .dram1.44 0x3ffb29a8 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .dram1.43 0x3ffb29c4 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .dram1.42 0x3ffb29cc 0x10 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .dram1.18 0x3ffb29dc 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .dram1.3 0x3ffb29e0 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .dram1.1 0x3ffb29e4 0x8 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .dram1.0 0x3ffb29ec 0x8 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x3ffb29f4 _coredump_dram_start = ABSOLUTE (.) + *(.dram2.coredump .dram2.coredump.*) + 0x3ffb29f4 _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.*) + *libesp_hw_support.a:esp_memory_utils.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hw_support.a:mspi_timing_config.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hw_support.a:mspi_timing_tuning.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hw_support.a:rtc_clk.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.rtc_clk_apll_coeff_calc.str1.1 + 0x3ffb29f4 0xc7 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .rodata.rtc_clk_cpu_freq_get_config.str1.1 + 0x3ffb29f4 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .rodata.rtc_clk_cpu_freq_to_xtal.str1.1 + 0x3ffb29f4 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .rodata.__func__$25 + 0x3ffb29f4 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + *libesp_mm.a:cache_esp32.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_mm.a:esp_cache.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_rom.a:esp_rom_spiflash.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_system.a:esp_err.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.esp_error_check_failed_print.str1.1 + 0x3ffb2a0b 0x58 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .rodata._esp_error_check_failed.str1.1 + 0x3ffb2a0b 0x10 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + *libesp_system.a:ubsan.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libgcov.a:(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:cache_hal_esp32.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:i2c_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:ledc_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.ledc_hal_set_fade_param.str1.1 + 0x3ffb2a0b 0x2f esp-idf/hal/libhal.a(ledc_hal_iram.c.obj) + .rodata.__func__$0 + 0x3ffb2a0b 0x18 esp-idf/hal/libhal.a(ledc_hal_iram.c.obj) + *libhal.a:mmu_hal.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.mmu_ll_check_entry_valid$isra$0.str1.1 + 0x3ffb2a23 0x4c esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.mmu_hal_paddr_to_vaddr.str1.1 + 0x3ffb2a23 0x56 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.mmu_hal_map_region.str1.1 + 0x3ffb2a23 0xd5 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.mmu_hal_vaddr_to_paddr.str1.1 + 0x3ffb2a23 0x8a esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.__func__$3 + 0x3ffb2a23 0x18 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.__func__$4 + 0x3ffb2a3b 0x19 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.__func__$5 + 0x3ffb2a54 0x17 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.__func__$6 + 0x3ffb2a6b 0x15 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.__func__$7 + 0x3ffb2a80 0x13 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.__func__$8 + 0x3ffb2a93 0x14 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.__func__$9 + 0x3ffb2aa7 0x13 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.__func__$12 + 0x3ffb2aba 0x19 esp-idf/hal/libhal.a(mmu_hal.c.obj) + *libhal.a:spi_flash_encrypt_hal_iram.*(.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:wdt_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.wdt_hal_config_stage.str1.1 + 0x3ffb2ad3 0x5e3 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + 0x51 (size before relaxing) + .rodata.__func__$0 + 0x3ffb30b6 0x15 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + *libnewlib.a:abort.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.abort.str1.1 + 0x3ffb30cb 0x26 esp-idf/newlib/libnewlib.a(abort.c.obj) + *libnewlib.a:assert.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.__assert_func.str1.1 + 0x3ffb30cb 0x2d esp-idf/newlib/libnewlib.a(assert.c.obj) + *libnewlib.a:heap.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libnewlib.a:stdatomic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libphy.a:(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *fill* 0x3ffb30cb 0x1 + .rodata 0x3ffb30cc 0xa8 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .rodata.ram_set_pbus_mem + 0x3ffb3174 0x2c /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .rodata.str1.4 + 0x3ffb31a0 0x72b /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x5bd (size before relaxing) + *fill* 0x3ffb38cb 0x1 + .rodata.CSWTCH$360 + 0x3ffb38cc 0x6 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + *fill* 0x3ffb38d2 0x2 + .rodata 0x3ffb38d4 0x7e /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .rodata.str1.4 + 0x3ffb3952 0x141 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + *fill* 0x3ffb3952 0x2 + .rodata.CSWTCH$293 + 0x3ffb3954 0x4 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .rodata.CSWTCH$289 + 0x3ffb3958 0xb /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + *fill* 0x3ffb3963 0x1 + .rodata.CSWTCH$283 + 0x3ffb3964 0x3 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + *fill* 0x3ffb3967 0x1 + .rodata.CSWTCH$266 + 0x3ffb3968 0x8 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .rodata.CSWTCH$256 + 0x3ffb3970 0x8 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .rodata.CSWTCH$254 + 0x3ffb3978 0x6 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + *fill* 0x3ffb397e 0x2 + .rodata.dco_gain_coarse$4710 + 0x3ffb3980 0x6 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .rodata.str1.4 + 0x3ffb3986 0x5a /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + *fill* 0x3ffb3986 0x2 + .rodata 0x3ffb3988 0xc /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .rodata.bt_i2c_write_set + 0x3ffb3994 0x24 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .rodata.bt_get_i2c_data + 0x3ffb39b8 0x2c /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .rodata.CSWTCH$169 + 0x3ffb39e4 0x10 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .rodata.CSWTCH$133 + 0x3ffb39f4 0x30 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.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.1 + 0x3ffb3a24 0x25 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.TAG 0x3ffb3a24 0x7 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + *libspi_flash.a:spi_flash_chip_boya.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:spi_flash_chip_gd.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *fill* 0x3ffb3a2b 0x1 + .rodata.esp_flash_chip_gd + 0x3ffb3a2c 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x3ffb3a2c esp_flash_chip_gd + .rodata.chip_name + 0x3ffb3aa8 0x3 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + *libspi_flash.a:spi_flash_chip_generic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.spi_flash_chip_generic_read.str1.1 + 0x3ffb3aab 0x44 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .rodata.spi_flash_chip_generic_read_unique_id.str1.1 + 0x3ffb3aab 0x53 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .rodata.spi_flash_chip_generic_get_write_protect.str1.1 + 0x3ffb3aab 0x4c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .rodata.spi_flash_chip_generic_suspend_cmd_conf.str1.1 + 0x3ffb3aab 0x60 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .rodata.__func__$0 + 0x3ffb3aab 0x29 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .rodata.esp_flash_chip_generic + 0x3ffb3ad4 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x3ffb3ad4 esp_flash_chip_generic + .rodata.chip_name + 0x3ffb3b50 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .rodata.TAG 0x3ffb3b58 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* 0x3ffb3b65 0x3 + .rodata.esp_flash_chip_issi + 0x3ffb3b68 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x3ffb3b68 esp_flash_chip_issi + .rodata.chip_name + 0x3ffb3be4 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* 0x3ffb3be9 0x3 + .rodata.esp_flash_chip_mxic + 0x3ffb3bec 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x3ffb3bec esp_flash_chip_mxic + .rodata.chip_name + 0x3ffb3c68 0x5 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + *libspi_flash.a:spi_flash_chip_th.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:spi_flash_chip_winbond.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.spi_flash_chip_winbond_read.str1.1 + 0x3ffb3c6d 0x44 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + *fill* 0x3ffb3c6d 0x3 + .rodata.esp_flash_chip_winbond + 0x3ffb3c70 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x3ffb3c70 esp_flash_chip_winbond + .rodata.chip_name + 0x3ffb3cec 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .rodata.TAG 0x3ffb3cf4 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + *libspi_flash.a:spi_flash_wrap.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + 0x3ffb3cfc _data_end = ABSOLUTE (.) + 0x3ffb3cfc . = ALIGN (0x4) + +.ext_ram_noinit + 0x3f800000 0x0 + 0x3f800000 _ext_ram_noinit_start = ABSOLUTE (.) + *(.ext_ram_noinit*) + 0x3f800000 . = ALIGN (0x4) + 0x3f800000 _ext_ram_noinit_end = ABSOLUTE (.) + +.noinit 0x3ffb3cfc 0x0 + 0x3ffb3cfc . = ALIGN (0x4) + 0x3ffb3cfc _noinit_start = ABSOLUTE (.) + *(.noinit .noinit.*) + 0x3ffb3cfc . = ALIGN (0x4) + 0x3ffb3cfc _noinit_end = ABSOLUTE (.) + +.ext_ram.bss 0x3f800000 0x0 + 0x3f800000 _ext_ram_bss_start = ABSOLUTE (.) + 0x3f800000 . = ALIGN (0x4) + 0x3f800000 _ext_ram_bss_end = ABSOLUTE (.) + +.dram0.bss 0x3ffb3d00 0x5c98 + 0x3ffb3d00 . = ALIGN (0x8) + 0x3ffb3d00 _bss_start = ABSOLUTE (.) + *(.bss .bss.*) + .bss.app_elf_sha256_str + 0x3ffb3d00 0xa esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0x3ffb3d00 app_elf_sha256_str + *fill* 0x3ffb3d0a 0x2 + .bss.s_pthread_cfg_key + 0x3ffb3d0c 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .bss.s_threads_mux + 0x3ffb3d10 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .bss.s_keys 0x3ffb3d14 0x4 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x3ffb3d14 s_keys + .bss.s_resume_cores + 0x3ffb3d18 0x1 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .bss.s_cpu_inited + 0x3ffb3d19 0x2 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .bss.s_cpu_up 0x3ffb3d1b 0x2 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + *fill* 0x3ffb3d1d 0x3 + .bss.esp_ipc_isr_finish_cmd + 0x3ffb3d20 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .bss.s_stored_interrupt_level + 0x3ffb3d24 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .bss.s_count_of_nested_calls + 0x3ffb3d28 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .bss.s_stall_state + 0x3ffb3d30 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .bss.esp_ipc_func_arg + 0x3ffb3d34 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x3ffb3d34 esp_ipc_func_arg + .bss.esp_ipc_func + 0x3ffb3d38 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x3ffb3d38 esp_ipc_func + .bss.esp_ipc_isr_start_fl + 0x3ffb3d3c 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x3ffb3d3c esp_ipc_isr_start_fl + .bss.int_wdt_cpu1_ticked + 0x3ffb3d40 0x1 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x3ffb3d40 int_wdt_cpu1_ticked + *fill* 0x3ffb3d41 0x3 + .bss.iwdt_context + 0x3ffb3d44 0x8 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .bss.g_panic_abort_details + 0x3ffb3d4c 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x3ffb3d4c g_panic_abort_details + .bss.g_panic_abort + 0x3ffb3d50 0x1 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x3ffb3d50 g_panic_abort + *fill* 0x3ffb3d51 0x3 + .bss.shutdown_handlers + 0x3ffb3d54 0x14 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .bss.s_system_full_inited + 0x3ffb3d68 0x1 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .bss.s_system_inited + 0x3ffb3d69 0x2 esp-idf/esp_system/libesp_system.a(startup.c.obj) + *fill* 0x3ffb3d6b 0x5 + .bss.g_startup_time + 0x3ffb3d70 0x8 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x3ffb3d70 g_startup_time + .bss.g_exc_frames + 0x3ffb3d78 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x3ffb3d78 g_exc_frames + .bss.tick_cb 0x3ffb3d80 0x40 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .bss.idle_cb 0x3ffb3dc0 0x40 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .bss.s_log_cache_misses + 0x3ffb3e00 0x4 esp-idf/log/liblog.a(log.c.obj) + .bss.s_log_cache_entry_count + 0x3ffb3e04 0x4 esp-idf/log/liblog.a(log.c.obj) + .bss.s_log_cache_max_generation + 0x3ffb3e08 0x4 esp-idf/log/liblog.a(log.c.obj) + .bss.s_log_cache + 0x3ffb3e0c 0xf8 esp-idf/log/liblog.a(log.c.obj) + .bss.s_log_tags + 0x3ffb3f04 0x4 esp-idf/log/liblog.a(log.c.obj) + .bss.base$0 0x3ffb3f08 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) + .bss.s_log_mutex + 0x3ffb3f0c 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) + .bss.alloc_failed_callback + 0x3ffb3f10 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .bss.registered_heaps + 0x3ffb3f14 0x4 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x3ffb3f14 registered_heaps + .bss.non_iram_int_disabled_flag + 0x3ffb3f18 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x3ffb3f1a 0x2 + .bss.non_iram_int_disabled + 0x3ffb3f1c 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .bss.non_iram_int_mask + 0x3ffb3f24 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .bss.vector_desc_head + 0x3ffb3f2c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .bss.ref_counts + 0x3ffb3f30 0x22 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x3ffb3f52 0x2 + .bss.s_rtc_isr_handle + 0x3ffb3f54 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .bss.s_cur_pll_freq + 0x3ffb3f58 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .bss.s_sar_power_on_cnt + 0x3ffb3f5c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .bss.s_other_cpu_startup_done + 0x3ffb3f60 0x1 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + *fill* 0x3ffb3f61 0x3 + .bss.uxSchedulerSuspended + 0x3ffb3f64 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xIdleTaskHandle + 0x3ffb3f6c 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xNextTaskUnblockTime + 0x3ffb3f74 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxTaskNumber + 0x3ffb3f78 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xNumOfOverflows + 0x3ffb3f7c 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xYieldPending + 0x3ffb3f80 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xPendedTicks + 0x3ffb3f88 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xSchedulerRunning + 0x3ffb3f8c 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxTopReadyPriority + 0x3ffb3f90 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xTickCount + 0x3ffb3f94 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxCurrentNumberOfTasks + 0x3ffb3f98 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xSuspendedTaskList + 0x3ffb3f9c 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxDeletedTasksWaitingCleanUp + 0x3ffb3fb0 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xTasksWaitingTermination + 0x3ffb3fb4 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xPendingReadyList + 0x3ffb3fc8 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.pxOverflowDelayedTaskList + 0x3ffb3ff0 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.pxDelayedTaskList + 0x3ffb3ff4 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xDelayedTaskList2 + 0x3ffb3ff8 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xDelayedTaskList1 + 0x3ffb400c 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.pxReadyTasksLists + 0x3ffb4020 0x1f4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.pxCurrentTCBs + 0x3ffb4214 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3ffb4214 pxCurrentTCBs + .bss.port_switch_flag + 0x3ffb421c 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3ffb421c port_switch_flag + .bss.port_uxOldInterruptState + 0x3ffb4224 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3ffb4224 port_uxOldInterruptState + .bss.port_uxCriticalNesting + 0x3ffb422c 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3ffb422c port_uxCriticalNesting + .bss.port_interruptNesting + 0x3ffb4234 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3ffb4234 port_interruptNesting + .bss.port_xSchedulerRunning + 0x3ffb423c 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3ffb423c port_xSchedulerRunning + .bss._xt_tick_divisor + 0x3ffb4244 0x4 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + 0x3ffb4244 _xt_tick_divisor + .bss.s_common_recursive_mutex + 0x3ffb4248 0x54 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x3ffb4248 __lock___sinit_recursive_mutex + 0x3ffb4248 __lock___env_recursive_mutex + 0x3ffb4248 __lock___sfp_recursive_mutex + 0x3ffb4248 __lock___atexit_recursive_mutex + 0x3ffb4248 __lock___malloc_recursive_mutex + .bss.s_common_mutex + 0x3ffb429c 0x54 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x3ffb429c __lock___tz_mutex + 0x3ffb429c __lock___arc4random_mutex + 0x3ffb429c __lock___dd_hash_mutex + 0x3ffb429c __lock___at_quick_exit_mutex + .bss.s_time_lock + 0x3ffb42f0 0x4 esp-idf/newlib/libnewlib.a(time.c.obj) + *fill* 0x3ffb42f4 0x4 + .bss.s_adjtime_total_correction_us + 0x3ffb42f8 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + .bss.s_adjtime_start_us + 0x3ffb4300 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + .bss.s_boot_time_lock + 0x3ffb4308 0x4 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + *fill* 0x3ffb430c 0x4 + .bss.s_microseconds_offset + 0x3ffb4310 0x8 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x3ffb4310 s_microseconds_offset + .bss.s_timer_task + 0x3ffb4318 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .bss.s_timers 0x3ffb431c 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .bss.s_correction_us + 0x3ffb4320 0x8 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .bss.s_alarm_handler + 0x3ffb4328 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .bss.s_timer_interrupt_handle + 0x3ffb432c 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .bss.s_wifi_adc_xpd_flag + 0x3ffb4330 0x1 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + *fill* 0x3ffb4331 0x3 + .bss.s_fd_table_lock + 0x3ffb4334 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .bss.s_vfs_count + 0x3ffb4338 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .bss.s_vfs 0x3ffb433c 0x20 esp-idf/vfs/libvfs.a(vfs.c.obj) + .bss.vfs_console + 0x3ffb435c 0x8 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .bss.primary_vfs_index + 0x3ffb4364 0x4 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .bss.s_uart_select_count + 0x3ffb4368 0xc esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .bss.s_registered_select_num + 0x3ffb4374 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .bss.s_registered_selects + 0x3ffb4378 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .bss.last_layer$1 + 0x3ffb437c 0x2 esp-idf/main/libmain.a(mesh_main.c.obj) + .bss.is_comm_p2p_started$2 + 0x3ffb437e 0x1 esp-idf/main/libmain.a(mesh_main.c.obj) + *fill* 0x3ffb437f 0x1 + .bss.netif_sta + 0x3ffb4380 0x4 esp-idf/main/libmain.a(mesh_main.c.obj) + .bss.mesh_parent_addr + 0x3ffb4384 0x6 esp-idf/main/libmain.a(mesh_main.c.obj) + .bss.is_mesh_connected + 0x3ffb438a 0x1 esp-idf/main/libmain.a(mesh_main.c.obj) + .bss.rx_buf 0x3ffb438b 0x5dc esp-idf/main/libmain.a(mesh_main.c.obj) + .bss.tx_buf 0x3ffb4967 0x5b4 esp-idf/main/libmain.a(mesh_main.c.obj) + .bss.s_light_inited + 0x3ffb4f1b 0x1 esp-idf/main/libmain.a(mesh_light.c.obj) + .bss.s_burn_counter + 0x3ffb4f1c 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .bss.s_mmu_ctx + 0x3ffb4f20 0x7c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .bss.s_ledc_slow_clk_rc_fast_freq + 0x3ffb4f9c 0x4 esp-idf/driver/libdriver.a(ledc.c.obj) + .bss.s_ledc_mutex + 0x3ffb4fa0 0x8 esp-idf/driver/libdriver.a(ledc.c.obj) + .bss.s_ledc_fade_isr_handle + 0x3ffb4fa8 0x4 esp-idf/driver/libdriver.a(ledc.c.obj) + .bss.s_ledc_fade_rec + 0x3ffb4fac 0x40 esp-idf/driver/libdriver.a(ledc.c.obj) + .bss.p_ledc_obj + 0x3ffb4fec 0x8 esp-idf/driver/libdriver.a(ledc.c.obj) + .bss.p_uart_obj + 0x3ffb4ff4 0xc esp-idf/driver/libdriver.a(uart.c.obj) + .bss.flash_erasing + 0x3ffb5000 0x1 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .bss.flash_brownout_needs_reset + 0x3ffb5001 0x1 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .bss.s_flash_op_complete + 0x3ffb5002 0x1 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .bss.s_flash_op_can_start + 0x3ffb5003 0x1 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .bss.s_flash_op_mutex + 0x3ffb5004 0x4 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .bss.s_flash_guard_ops + 0x3ffb5008 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .bss.esp_flash_default_chip + 0x3ffb500c 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x3ffb500c esp_flash_default_chip + .bss.reason 0x3ffb5010 0x8 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .bss.s_no_block_func_arg + 0x3ffb5018 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.s_no_block_func_and_arg_are_ready + 0x3ffb5020 0x2 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + *fill* 0x3ffb5022 0x2 + .bss.s_no_block_func + 0x3ffb5024 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.s_wait_for + 0x3ffb502c 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.s_func_arg + 0x3ffb5034 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.s_func 0x3ffb503c 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.s_ipc_ack + 0x3ffb5044 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.s_ipc_mutex + 0x3ffb504c 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.s_ipc_task_handle + 0x3ffb5054 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.p_twdt_obj + 0x3ffb505c 0x4 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .bss.g_twdt_isr + 0x3ffb5060 0x1 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x3ffb5060 g_twdt_isr + *fill* 0x3ffb5061 0x3 + .bss.init_context + 0x3ffb5064 0xc esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .bss.s_cache_status + 0x3ffb5070 0x8 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .bss.s_rc_fast_freq + 0x3ffb5078 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .bss.s_periph_ref_counts + 0x3ffb507c 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .bss.s_periph_use_8m_flag + 0x3ffb507d 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + *fill* 0x3ffb507e 0x2 + .bss.s_dslp_phy_cb + 0x3ffb5080 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + *fill* 0x3ffb508c 0x4 + .bss.s_reserve_status + 0x3ffb5090 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .bss.s_calibrated_freq + 0x3ffb5098 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .bss.s_default_loop + 0x3ffb50a0 0x4 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .bss._ZL13s_nvs_handles + 0x3ffb50a4 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .bss._ZN14NVSHandleEntry17s_nvs_next_handleE + 0x3ffb50b0 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x3ffb50b0 _ZN14NVSHandleEntry17s_nvs_next_handleE + .bss._ZN3nvs19NVSPartitionManager8instanceE + 0x3ffb50b4 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x3ffb50b4 _ZN3nvs19NVSPartitionManager8instanceE + .bss._ZN3nvs4Lock10mSemaphoreE + 0x3ffb50b8 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + 0x3ffb50b8 _ZN3nvs4Lock10mSemaphoreE + .bss.s_esp_netif_counter + 0x3ffb50bc 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .bss.s_head 0x3ffb50c0 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x3ffb50c0 s_head + .bss.api_lock_sem + 0x3ffb50c4 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .bss.api_sync_sem + 0x3ffb50c8 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .bss.netif_callback + 0x3ffb50cc 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .bss.s_is_last_default_esp_netif_overridden + 0x3ffb50d4 0x1 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x3ffb50d5 0x3 + .bss.s_last_default_esp_netif + 0x3ffb50d8 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .bss.s_wifi_mac_time_update_cb + 0x3ffb50dc 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x3ffb50dc s_wifi_mac_time_update_cb + .bss.s_wifi_inited + 0x3ffb50e0 0x1 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .bss.wifi_default_handlers_set + 0x3ffb50e1 0x1 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + *fill* 0x3ffb50e2 0x2 + .bss.s_wifi_netifs + 0x3ffb50e4 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .bss.s_wifi_netifs + 0x3ffb50f0 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .bss.s_wifi_rxcbs + 0x3ffb50fc 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .bss.s_wifi_thread_sem_key$0 + 0x3ffb5108 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .bss.s_wifi_thread_sem_key_init$1 + 0x3ffb510c 0x1 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .bss.engines_in_use + 0x3ffb510d 0x1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + *fill* 0x3ffb510e 0x2 + .bss.engine_states + 0x3ffb5110 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .bss.init_done$1 + 0x3ffb511c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .bss.ecp_supported_grp_id + 0x3ffb5120 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .bss.mul_count + 0x3ffb5154 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .bss.dbl_count + 0x3ffb5158 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .bss.add_count + 0x3ffb515c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .bss.option$9509 + 0x3ffb5160 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.value$9508 + 0x3ffb5167 0x2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + *fill* 0x3ffb5169 0x3 + .bss.s_mesh_group_addr + 0x3ffb516c 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.s_mesh_send_mutex + 0x3ffb5174 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x3ffb5174 s_mesh_send_mutex + .bss.s_mesh_stop_mutex + 0x3ffb5178 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x3ffb5178 s_mesh_stop_mutex + .bss.g_mesh_stop_event_group + 0x3ffb517c 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x3ffb517c g_mesh_stop_event_group + .bss.mesh_ioctl_sem + 0x3ffb5180 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x3ffb5180 mesh_ioctl_sem + .bss.mesh_xmit_sem + 0x3ffb5184 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.mesh_tcpip_mbox + 0x3ffb5188 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x3ffb5188 mesh_tcpip_mbox + .bss.mesh_myself_mbox + 0x3ffb5194 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x3ffb5194 mesh_myself_mbox + .bss.s_mesh_ext_crypto_config + 0x3ffb51a0 0x24 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.g_is_mesh_started + 0x3ffb51c4 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x3ffb51c4 g_is_mesh_started + .bss.g_is_mesh_inited + 0x3ffb51c5 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + *fill* 0x3ffb51c6 0x2 + .bss.s_extra_toDS_qsize + 0x3ffb51c8 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.s_extra_toSelf_qsize + 0x3ffb51cc 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.g_is_standalone_sta + 0x3ffb51d0 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x3ffb51d0 g_is_standalone_sta + .bss.g_is_root_fixed + 0x3ffb51d1 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x3ffb51d1 g_is_root_fixed + *fill* 0x3ffb51d2 0x2 + .bss.g_mesh_cfg_switch_parent + 0x3ffb51d4 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x3ffb51d4 g_mesh_cfg_switch_parent + .bss.MESH_ZERO_ADDR + 0x3ffb51e8 0x6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.mesh_nvs_settings + 0x3ffb51ee 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .bss.g_mesh_nvs_settings + 0x3ffb51f2 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + 0x3ffb51f2 g_mesh_nvs_settings + .bss.csa_bssid + 0x3ffb51f6 0x6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .bss.s_mesh_io_error + 0x3ffb51fc 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .bss.g_mesh_stop_reconnection + 0x3ffb5200 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + 0x3ffb5200 g_mesh_stop_reconnection + .bss.MESH_ZERO_ADDR + 0x3ffb5204 0x6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + *fill* 0x3ffb520a 0x2 + .bss.mesh_xseqno + 0x3ffb520c 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .bss.MESH_ZERO_ADDR + 0x3ffb5210 0x6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + *fill* 0x3ffb5216 0x2 + .bss.look_for_nwk_count$9432 + 0x3ffb5218 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .bss.scan_times$9412 + 0x3ffb521c 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .bss.MESH_ZERO_ADDR + 0x3ffb5220 0x6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + *fill* 0x3ffb5226 0x2 + .bss.last_event_id$10821 + 0x3ffb5228 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.cnx_backoff$9790 + 0x3ffb522c 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_final_struggle$9778 + 0x3ffb522d 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + *fill* 0x3ffb522e 0x2 + .bss.max_voter_num$9773 + 0x3ffb5230 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_mesh_rt_change_dbg + 0x3ffb5234 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + *fill* 0x3ffb5235 0x3 + .bss.s_monitor_timer_interval + 0x3ffb5238 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_history_root_backoff + 0x3ffb523c 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + *fill* 0x3ffb523d 0x3 + .bss.retry_attemps + 0x3ffb5240 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.mesh_ps_cnt + 0x3ffb5244 0x6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_layer_backoff_times + 0x3ffb524a 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_rssi_backoff_times + 0x3ffb524b 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + *fill* 0x3ffb524c 0x4 + .bss.vote_log_time_start + 0x3ffb5250 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.vote_log_time_stop + 0x3ffb5258 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_vote_scan_times + 0x3ffb5260 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_extra_scan_attempts + 0x3ffb5264 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_vote_ps_times + 0x3ffb5268 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_vote_rc_times + 0x3ffb526c 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_mesh_last_rcandidate + 0x3ffb5270 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_mesh_rcandidate + 0x3ffb527c 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + *fill* 0x3ffb5286 0x2 + .bss.mesh_ps_control + 0x3ffb5288 0x50 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_mesh_running_channel + 0x3ffb52d8 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x3ffb52d8 s_mesh_running_channel + *fill* 0x3ffb52d9 0x3 + .bss.s_first_short_time_retries + 0x3ffb52dc 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_parent_rssi_threshold + 0x3ffb52e0 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_mesh_root_addr + 0x3ffb52ec 0x6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_is_parent_set + 0x3ffb52f2 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + *fill* 0x3ffb52f3 0x1 + .bss.s_sta_discnx_times + 0x3ffb52f4 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_sta_cnx_times + 0x3ffb52f8 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.g_mesh_last_parent + 0x3ffb52fc 0x6c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.g_mesh_last_parent_chain + 0x3ffb5368 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.g_mesh_last_parent_ie + 0x3ffb536c 0x3a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + *fill* 0x3ffb53a6 0x2 + .bss.ann_time_start + 0x3ffb53a8 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.mie_log_time_start + 0x3ffb53b0 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_root_connect_timer_armed + 0x3ffb53b4 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.ps_control_timer + 0x3ffb53b8 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.candidate_monitor_timer + 0x3ffb53cc 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.root_connect_timer + 0x3ffb53e0 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.bcn_change_timer + 0x3ffb53f4 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.mie_monitor_timer + 0x3ffb5408 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.route_announce_timer + 0x3ffb541c 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.mesh_timer_func + 0x3ffb5430 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.mesh_nwk_task + 0x3ffb5434 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.mesh_nwk_mbox + 0x3ffb5438 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.is_nwk_running + 0x3ffb5444 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + *fill* 0x3ffb5445 0x3 + .bss.s_parent_root_children_list + 0x3ffb5448 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_vote_invalid_list + 0x3ffb5450 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_vote_expire_list + 0x3ffb5458 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_parent_cyclic_list + 0x3ffb5460 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_parent_map_list + 0x3ffb5468 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_parent_idle_list + 0x3ffb5470 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_mesh_print_scan_result_enable + 0x3ffb5478 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_mesh_scan_req + 0x3ffb5479 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_mesh_last_layer + 0x3ffb547a 0x2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.g_mesh_rmv_opt + 0x3ffb547c 0x4d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x3ffb547c g_mesh_rmv_opt + *fill* 0x3ffb54c9 0x3 + .bss.mesh_conn_mutex + 0x3ffb54cc 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x3ffb54cc mesh_conn_mutex + .bss.g_mesh_conn + 0x3ffb54d0 0x2c8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x3ffb54d0 g_mesh_conn + .bss.g_is_wifi_disconnecting + 0x3ffb5798 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x3ffb5798 g_is_wifi_disconnecting + .bss.g_is_wifi_connecting + 0x3ffb5799 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x3ffb5799 g_is_wifi_connecting + .bss.g_is_wifi_connected + 0x3ffb579a 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x3ffb579a g_is_wifi_connected + .bss.MESH_ZERO_ADDR + 0x3ffb579b 0x6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + *fill* 0x3ffb57a1 0x3 + .bss.rx_bcn_count$11004 + 0x3ffb57a4 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.monitor_count$10875 + 0x3ffb57a8 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + *fill* 0x3ffb57a9 0x1 + .bss.last_parent_layer$10874 + 0x3ffb57aa 0x2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.mesh_sub_ie$10865 + 0x3ffb57ac 0x10 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + *fill* 0x3ffb57bc 0x4 + .bss.monitor_time_start$10785 + 0x3ffb57c0 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.post_event_time$10574 + 0x3ffb57c8 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.signaling_token$10393 + 0x3ffb57d0 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.max_ie_len$10324 + 0x3ffb57d4 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.roots_found_time$10322 + 0x3ffb57d8 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.is_roots_found$10321 + 0x3ffb57e0 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + *fill* 0x3ffb57e1 0x7 + .bss.post_event_time$10281 + 0x3ffb57e8 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_parent_worse_rssi_time + 0x3ffb57f0 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.esp_mesh_remain_nwk_duty + 0x3ffb57f8 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_ps_device_duty_type + 0x3ffb5807 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_ps_parent_duty_type + 0x3ffb5808 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_ps_device_duty + 0x3ffb5809 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_ps_parent_duty + 0x3ffb580a 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + *fill* 0x3ffb580b 0x1 + .bss.wifi_vnd_ext_mesh_roots + 0x3ffb580c 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_mesh_conflict_roots + 0x3ffb582c 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_mesh_roots_ie_life + 0x3ffb5830 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_parent_monitor_assoc_time + 0x3ffb5850 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_parent_monitor_weak_time + 0x3ffb5858 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_mesh_parent_candidate + 0x3ffb5860 0xb0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_mesh_rssi_threshold + 0x3ffb5910 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_mesh_monitor_parent_cfg + 0x3ffb591c 0x2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + *fill* 0x3ffb591e 0x2 + .bss.s_recv_bcn_count + 0x3ffb5920 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_is_probe_requested + 0x3ffb5924 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.iv 0x3ffb5925 0x10 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + *fill* 0x3ffb5935 0x3 + .bss.s_mesh_ie_crypto_funcs + 0x3ffb5938 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_mesh_ie_crypto_key + 0x3ffb5940 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.MESH_ZERO_ADDR + 0x3ffb5960 0x6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.mesh_multi_send_ack + 0x3ffb5966 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + 0x3ffb5966 mesh_multi_send_ack + *fill* 0x3ffb5974 0x4 + .bss.mesh_multi_recv_ack + 0x3ffb5978 0xf0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + 0x3ffb5978 mesh_multi_recv_ack + .bss.rt_change_timer + 0x3ffb5a68 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .bss.mesh_route_table + 0x3ffb5a7c 0x50 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .bss.is_route_inited + 0x3ffb5acc 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .bss.MESH_ZERO_ADDR + 0x3ffb5acd 0x6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + *fill* 0x3ffb5ad3 0x1 + .bss.mesh_tx_fail_cnt$9709 + 0x3ffb5ad4 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.send_block_flush_mbox + 0x3ffb5ad8 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.send_block_task + 0x3ffb5adc 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.send_block_mbox + 0x3ffb5ae0 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.is_block_running + 0x3ffb5aec 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + *fill* 0x3ffb5aed 0x3 + .bss.mesh_xreq_seqno + 0x3ffb5af0 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.mesh_be_xmit_seqno + 0x3ffb5af4 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.mesh_new_wnd_mbox + 0x3ffb5af8 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.mesh_ack_state_mbox + 0x3ffb5b04 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.mesh_tx_mbox + 0x3ffb5b10 0xa8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.mesh_tx_task + 0x3ffb5bb8 0x30 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.is_mesh_tx_started + 0x3ffb5be8 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + *fill* 0x3ffb5be9 0x3 + .bss.mesh_reassign_xseqno + 0x3ffb5bec 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.MESH_ZERO_ADDR + 0x3ffb5bf0 0x6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + *fill* 0x3ffb5bf6 0x2 + .bss.rx_bcn_count$8153 + 0x3ffb5bf8 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .bss.send_null_cnt$8099 + 0x3ffb5bfc 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .bss.mesh_ps_keep_cnx + 0x3ffb5c00 0x30 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + 0x3ffb5c00 mesh_ps_keep_cnx + .bss.s_mesh_next_awake_tbtt + 0x3ffb5c30 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .bss.s_mesh_is_awake_duty + 0x3ffb5c34 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .bss.strid$9422 + 0x3ffb5c35 0x10 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + *fill* 0x3ffb5c45 0x1 + .bss.parent_last_mac_seqno$9420 + 0x3ffb5c46 0x2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .bss.mesh_rx_task + 0x3ffb5c48 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .bss.mesh_rx_mbox + 0x3ffb5c4c 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .bss.is_rx_running + 0x3ffb5c58 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .bss.MESH_ZERO_ADDR + 0x3ffb5c59 0x6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + *fill* 0x3ffb5c5f 0x1 + .bss.sort_bss$14599 + 0x3ffb5c60 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .bss.old_scan_id$13784 + 0x3ffb5c64 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + *fill* 0x3ffb5c65 0x1 + .bss.s_mesh_fetch_num + 0x3ffb5c66 0x2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .bss.s_mesh_sort_num + 0x3ffb5c68 0x2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + *fill* 0x3ffb5c6a 0x2 + .bss.s_mesh_sort_bss + 0x3ffb5c6c 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .bss.mesh_rxcb + 0x3ffb5c70 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x3ffb5c70 mesh_rxcb + .bss.s_wifi_api_lock + 0x3ffb5c74 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x3ffb5c74 s_wifi_api_lock + .bss.wifi_sta_rx_probe_req + 0x3ffb5c78 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x3ffb5c78 wifi_sta_rx_probe_req + .bss.s_wifi_stop_in_progress + 0x3ffb5c7c 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x3ffb5c7c s_wifi_stop_in_progress + *fill* 0x3ffb5c7d 0x3 + .bss.g_hmac_cnt + 0x3ffb5c80 0x40 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + 0x3ffb5c80 g_hmac_cnt + .bss.g_beacon_eb_allocated + 0x3ffb5cc0 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + *fill* 0x3ffb5cc1 0x3 + .bss.ap_rxcb 0x3ffb5cc4 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x3ffb5cc4 ap_rxcb + .bss.tim_offset + 0x3ffb5cc8 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + *fill* 0x3ffb5cc9 0x3 + .bss.BcnIntvl 0x3ffb5ccc 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .bss.g_beacon_idx + 0x3ffb5cd0 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x3ffb5cd0 g_beacon_idx + *fill* 0x3ffb5cd1 0x3 + .bss.g_beacon_eb + 0x3ffb5cd4 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x3ffb5cd4 g_beacon_eb + .bss.g_beacon_dtim_send_mc + 0x3ffb5cdc 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .bss.beacon_send_start_flag + 0x3ffb5cdd 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + *fill* 0x3ffb5cde 0x2 + .bss.beacon_timer + 0x3ffb5ce0 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .bss.tokens$11038 + 0x3ffb5cf4 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .bss.ap_id$12348 + 0x3ffb5cf8 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .bss.mesh_router_bssid + 0x3ffb5cf9 0x6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + *fill* 0x3ffb5cff 0x1 + .bss.mesh_deauth_reason + 0x3ffb5d00 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .bss.g_wifi_global_lock + 0x3ffb5d04 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x3ffb5d04 g_wifi_global_lock + .bss.s_wifi_task_hdl + 0x3ffb5d08 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x3ffb5d08 s_wifi_task_hdl + .bss.s_wps_start + 0x3ffb5d0c 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .bss.s_wpa2_start + 0x3ffb5d0d 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .bss.g_mac_sleep_en + 0x3ffb5d0e 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x3ffb5d0e g_mac_sleep_en + .bss.esp_mesh_ps_duty + 0x3ffb5d0f 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + 0x3ffb5d0f esp_mesh_ps_duty + *fill* 0x3ffb5d2a 0x2 + .bss.esp_mesh_quick_funcs + 0x3ffb5d2c 0xb0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + 0x3ffb5d2c esp_mesh_quick_funcs + .bss.g_mesh_topology + 0x3ffb5ddc 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + 0x3ffb5ddc g_mesh_topology + .bss.esp_mesh_appie + 0x3ffb5de0 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + 0x3ffb5de0 esp_mesh_appie + .bss.ndp_rxcb 0x3ffb5de4 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + 0x3ffb5de4 ndp_rxcb + .bss.g_wifi_nvs_cfg + 0x3ffb5de8 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .bss.s_netstack_ref + 0x3ffb5dec 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x3ffb5dec s_netstack_ref + .bss.s_encap_amsdu_func + 0x3ffb5df0 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .bss.s_netstack_free + 0x3ffb5df4 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x3ffb5df4 s_netstack_free + .bss.len_dh_ie + 0x3ffb5df8 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .bss.g_wifi_improve_contention_ability + 0x3ffb5df9 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + 0x3ffb5df9 g_wifi_improve_contention_ability + .bss.s_ch$11413 + 0x3ffb5dfa 0x2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .bss.s_owe_scan_flag + 0x3ffb5dfc 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .bss.connect_scan_flag + 0x3ffb5e00 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x3ffb5e00 connect_scan_flag + *fill* 0x3ffb5e01 0x1 + .bss.scannum 0x3ffb5e02 0x2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x3ffb5e02 scannum + .bss.sta_csa_timer + 0x3ffb5e04 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x3ffb5e04 sta_csa_timer + .bss.sta_rxcb 0x3ffb5e18 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x3ffb5e18 sta_rxcb + .bss.rssi_index + 0x3ffb5e1c 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x3ffb5e1c rssi_index + *fill* 0x3ffb5e1d 0x3 + .bss.rssi_saved + 0x3ffb5e20 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x3ffb5e20 rssi_saved + .bss.in_rssi_adjust + 0x3ffb5e28 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x3ffb5e28 in_rssi_adjust + .bss.s_ap_igtk + 0x3ffb5e29 0x50 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .bss.s_sta_igtk + 0x3ffb5e79 0x50 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .bss.is_connected_sync + 0x3ffb5ec9 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .bss.ap_no_lr 0x3ffb5eca 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x3ffb5eca ap_no_lr + .bss.reconnect_flag + 0x3ffb5ecb 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x3ffb5ecb reconnect_flag + .bss.g_rssi_threshold_failure + 0x3ffb5ecc 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x3ffb5ecc g_rssi_threshold_failure + .bss.g_authmode_threshold_failure + 0x3ffb5ecd 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x3ffb5ecd g_authmode_threshold_failure + .bss.g_authmode_incompatible + 0x3ffb5ece 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x3ffb5ece g_authmode_incompatible + .bss.g_in_blacklist_flag + 0x3ffb5ecf 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x3ffb5ecf g_in_blacklist_flag + .bss.s_sta_last_start_txseq + 0x3ffb5ed0 0x2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + *fill* 0x3ffb5ed2 0x2 + .bss.g_cnx_probe_rc_list_cb + 0x3ffb5ed4 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x3ffb5ed4 g_cnx_probe_rc_list_cb + .bss.cnx_csa_timer + 0x3ffb5ed8 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .bss.s_csa_timer_bss + 0x3ffb5eec 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .bss.avs_rx_content + 0x3ffb5ef0 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .bss.get_key_cb + 0x3ffb5ef4 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .bss.avs_cb 0x3ffb5ef8 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .bss.s_is_6m 0x3ffb5efc 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x3ffb5efc s_is_6m + .bss.g_pp_tx_pkt_num + 0x3ffb5efd 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x3ffb5efd g_pp_tx_pkt_num + *fill* 0x3ffb5efe 0x2 + .bss.our_instances + 0x3ffb5f00 0xb4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .bss.beacon_monitor_data$11098 + 0x3ffb5fb4 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .bss.g_pm_tx_null_func + 0x3ffb5fc8 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .bss.current_ifidx$11121 + 0x3ffb5fcc 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + *fill* 0x3ffb5fcd 0x3 + .bss.s_fragment + 0x3ffb5fd0 0x10 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x3ffb5fd0 s_fragment + .bss.s_wifi_queue + 0x3ffb5fe0 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x3ffb5fe0 s_wifi_queue + .bss.s_michael_mic_failure_cb + 0x3ffb5fe4 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.s_pp_task_create_sem + 0x3ffb5fe8 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.s_pp_task_del_sem + 0x3ffb5fec 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.pp_task_hdl + 0x3ffb5ff0 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.g_config_func + 0x3ffb5ff4 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.g_timer_func + 0x3ffb5ff8 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.g_net80211_tx_func + 0x3ffb5ffc 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.g_tx_done_cb_func + 0x3ffb6000 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + *fill* 0x3ffb6004 0x4 + .bss.g_pm_cnt 0x3ffb6008 0x48 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + 0x3ffb6008 g_pm_cnt + .bss.g_lmac_cnt + 0x3ffb6050 0xb4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + 0x3ffb6050 g_lmac_cnt + .bss.s_timer_post + 0x3ffb6104 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .bss.s_fix_rate_mask + 0x3ffb6108 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x3ffb6108 s_fix_rate_mask + .bss.g_per_conn_trc + 0x3ffb610c 0x58 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .bss.dbg_rx_all_count + 0x3ffb6164 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x3ffb6164 dbg_rx_all_count + .bss.BcnSendTick + 0x3ffb6168 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x3ffb6168 BcnSendTick + .bss.wDevMacSleep + 0x3ffb616c 0x70 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x3ffb616c wDevMacSleep + .bss.g_wdev_csi_rx_ctx + 0x3ffb61dc 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x3ffb61dc g_wdev_csi_rx_ctx + .bss.g_wdev_csi_rx + 0x3ffb61e0 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x3ffb61e0 g_wdev_csi_rx + .bss.g_wdev_nan_is_in_dw_cb + 0x3ffb61e4 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x3ffb61e4 g_wdev_nan_is_in_dw_cb + .bss.g_wdev_last_desc_reset + 0x3ffb61e8 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x3ffb61e8 g_wdev_last_desc_reset + *fill* 0x3ffb61e9 0x3 + .bss.s_partition_list_lock + 0x3ffb61ec 0x4 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .bss.s_partition_list + 0x3ffb61f0 0x4 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .bss.curr_partition$2 + 0x3ffb61f4 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .bss.last_ccount$1 + 0x3ffb61f8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .bss.s_crypto_mpi_lock + 0x3ffb61fc 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .bss.s_common_clock_disable_time$0 + 0x3ffb6200 0x4 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .bss.s_is_phy_calibrated + 0x3ffb6204 0x1 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + *fill* 0x3ffb6205 0x3 + .bss.s_phy_rf_en_ts + 0x3ffb6208 0x8 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .bss.s_phy_access_lock + 0x3ffb6210 0x4 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .bss.s_phy_modem_flag + 0x3ffb6214 0x2 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + *fill* 0x3ffb6216 0x2 + .bss.select_cb_list + 0x3ffb6218 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .bss.select_cb_ctr + 0x3ffb621c 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .bss.sockets 0x3ffb6220 0xc8 esp-idf/lwip/liblwip.a(sockets.c.obj) + .bss.socket_ipv6_multicast_memberships + 0x3ffb62e8 0x118 esp-idf/lwip/liblwip.a(sockets.c.obj) + .bss.socket_ipv4_multicast_memberships + 0x3ffb6400 0x78 esp-idf/lwip/liblwip.a(sockets.c.obj) + .bss.tcpip_mbox + 0x3ffb6478 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .bss.tcpip_init_done_arg + 0x3ffb647c 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .bss.tcpip_init_done + 0x3ffb6480 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .bss.dns_servers + 0x3ffb6484 0x48 esp-idf/lwip/liblwip.a(dns.c.obj) + .bss.ip_data 0x3ffb64cc 0x44 esp-idf/lwip/liblwip.a(ip.c.obj) + 0x3ffb64cc ip_data + .bss.loop_netif + 0x3ffb6510 0xfc esp-idf/lwip/liblwip.a(netif.c.obj) + .bss.netif_num + 0x3ffb660c 0x1 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x3ffb660d 0x3 + .bss.netif_default + 0x3ffb6610 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x3ffb6610 netif_default + .bss.netif_list + 0x3ffb6614 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x3ffb6614 netif_list + .bss.ext_callback + 0x3ffb6618 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + .bss.pbuf_free_ooseq_pending + 0x3ffb661c 0x1 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x3ffb661c pbuf_free_ooseq_pending + *fill* 0x3ffb661d 0x3 + .bss.raw_pcbs 0x3ffb6620 0x4 esp-idf/lwip/liblwip.a(raw.c.obj) + .bss.tcp_timer_ctr + 0x3ffb6624 0x1 esp-idf/lwip/liblwip.a(tcp.c.obj) + .bss.tcp_timer + 0x3ffb6625 0x1 esp-idf/lwip/liblwip.a(tcp.c.obj) + .bss.tcp_active_pcbs_changed + 0x3ffb6626 0x1 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x3ffb6626 tcp_active_pcbs_changed + *fill* 0x3ffb6627 0x1 + .bss.tcp_tw_pcbs + 0x3ffb6628 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x3ffb6628 tcp_tw_pcbs + .bss.tcp_active_pcbs + 0x3ffb662c 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x3ffb662c tcp_active_pcbs + .bss.tcp_listen_pcbs + 0x3ffb6630 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x3ffb6630 tcp_listen_pcbs + .bss.tcp_bound_pcbs + 0x3ffb6634 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x3ffb6634 tcp_bound_pcbs + .bss.tcp_ticks + 0x3ffb6638 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x3ffb6638 tcp_ticks + .bss.tcp_input_pcb + 0x3ffb663c 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x3ffb663c tcp_input_pcb + .bss.recv_data + 0x3ffb6640 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.recv_flags + 0x3ffb6644 0x1 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.flags 0x3ffb6645 0x1 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.tcplen 0x3ffb6646 0x2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.recv_acked + 0x3ffb6648 0x2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x3ffb664a 0x2 + .bss.ackno 0x3ffb664c 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.seqno 0x3ffb6650 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.tcp_optidx + 0x3ffb6654 0x2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x3ffb6656 0x2 + .bss.tcphdr_opt2 + 0x3ffb6658 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.tcphdr_opt1len + 0x3ffb665c 0x2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.tcphdr_optlen + 0x3ffb665e 0x2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.tcphdr 0x3ffb6660 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.inseg 0x3ffb6664 0x10 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.tcpip_tcp_timer_active + 0x3ffb6674 0x4 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .bss.current_timeout_due_time + 0x3ffb6678 0x4 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .bss.next_timeout + 0x3ffb667c 0x4 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .bss.udp_pcbs 0x3ffb6680 0x4 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x3ffb6680 udp_pcbs + .bss.xid$12 0x3ffb6684 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .bss.dhcp_pcb_refcount + 0x3ffb6688 0x1 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x3ffb6689 0x3 + .bss.dhcp_pcb 0x3ffb668c 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .bss.dhcp_rx_options_given + 0x3ffb6690 0xb esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x3ffb6690 dhcp_rx_options_given + *fill* 0x3ffb669b 0x1 + .bss.dhcp_rx_options_val + 0x3ffb669c 0x2c esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x3ffb669c dhcp_rx_options_val + .bss.etharp_cached_entry + 0x3ffb66c8 0x1 esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x3ffb66c9 0x3 + .bss.arp_table + 0x3ffb66cc 0xf0 esp-idf/lwip/liblwip.a(etharp.c.obj) + .bss.is_tmr_start + 0x3ffb67bc 0x1 esp-idf/lwip/liblwip.a(igmp.c.obj) + *fill* 0x3ffb67bd 0x3 + .bss.allrouters + 0x3ffb67c0 0x4 esp-idf/lwip/liblwip.a(igmp.c.obj) + .bss.allsystems + 0x3ffb67c4 0x4 esp-idf/lwip/liblwip.a(igmp.c.obj) + .bss.ip4_default_multicast_netif + 0x3ffb67c8 0x4 esp-idf/lwip/liblwip.a(ip4.c.obj) + .bss.ip_id 0x3ffb67cc 0x2 esp-idf/lwip/liblwip.a(ip4.c.obj) + *fill* 0x3ffb67ce 0x2 + .bss.identification$1 + 0x3ffb67d0 0x4 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .bss.is_tmr_start + 0x3ffb67d4 0x1 esp-idf/lwip/liblwip.a(mld6.c.obj) + .bss.last_router$1 + 0x3ffb67d5 0x1 esp-idf/lwip/liblwip.a(nd6.c.obj) + .bss.nd6_ra_buffer + 0x3ffb67d6 0x20 esp-idf/lwip/liblwip.a(nd6.c.obj) + .bss.nd6_tmr_rs_reduction + 0x3ffb67f6 0x1 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x3ffb67f7 0x1 + .bss.multicast_address + 0x3ffb67f8 0x14 esp-idf/lwip/liblwip.a(nd6.c.obj) + .bss.nd6_cached_destination_index + 0x3ffb680c 0x1 esp-idf/lwip/liblwip.a(nd6.c.obj) + .bss.nd6_cached_neighbor_index + 0x3ffb680d 0x1 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x3ffb680e 0x2 + .bss.default_router_list + 0x3ffb6810 0x24 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x3ffb6810 default_router_list + .bss.prefix_list + 0x3ffb6834 0x8c esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x3ffb6834 prefix_list + .bss.destination_cache + 0x3ffb68c0 0x1e0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x3ffb68c0 destination_cache + .bss.neighbor_cache + 0x3ffb6aa0 0xdc esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x3ffb6aa0 neighbor_cache + .bss.base_time + 0x3ffb6b7c 0x4 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .bss.input 0x3ffb6b80 0x40 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .bss.lwip_task$1 + 0x3ffb6bc0 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .bss.sys_thread_sem_key + 0x3ffb6bc4 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .bss.g_lwip_protect_mutex + 0x3ffb6bc8 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .bss.wpa_cb 0x3ffb6bcc 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x3ffb6bcc wpa_cb + .bss.wifi_funcs + 0x3ffb6bd0 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x3ffb6bd0 wifi_funcs + .bss.g_wpa_pmk_caching_disabled + 0x3ffb6bd4 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x3ffb6bd4 g_wpa_pmk_caching_disabled + *fill* 0x3ffb6bd5 0x3 + .bss.g_wpa_supp + 0x3ffb6bd8 0xa8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x3ffb6bd8 g_wpa_supp + .bss.s_wps_sm_cb + 0x3ffb6c80 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + 0x3ffb6c80 s_wps_sm_cb + .bss.g_wpa3_hostap_auth_api_lock + 0x3ffb6c84 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x3ffb6c84 g_wpa3_hostap_auth_api_lock + .bss.g_wpa3_hostap_evt_queue + 0x3ffb6c88 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .bss.g_wpa3_hostap_task_hdl + 0x3ffb6c8c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .bss.g_sae_confirm + 0x3ffb6c90 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .bss.g_sae_commit + 0x3ffb6c94 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .bss.g_sae_token + 0x3ffb6c98 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .bss.g_sae_data + 0x3ffb6c9c 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .bss.g_sae_pt 0x3ffb6d1c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .bss.global_hapd + 0x3ffb6d20 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x3ffb6d20 global_hapd + .bss.eloop 0x3ffb6d24 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .bss.eloop_data_lock + 0x3ffb6d44 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .bss.s_sm_valid_bitmap + 0x3ffb6d48 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .bss.s_sm_table + 0x3ffb6d4c 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .bss.assoc_ie_buf + 0x3ffb6d8c 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x3ffb6d8c assoc_ie_buf + .bss.gWpaSm 0x3ffb6dbc 0x338 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x3ffb6dbc gWpaSm + .bss.gEapSm 0x3ffb70f4 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .bss.g_misc_nvs_init + 0x3ffb70f8 0x1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + *fill* 0x3ffb70f9 0x3 + .bss._ZN12_GLOBAL__N_113__new_handlerE + 0x3ffb70fc 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_handler.o) + .bss._ZL4init 0x3ffb7100 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) + .bss._ZN17__eh_globals_init7_S_initE + 0x3ffb7104 0x1 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) + 0x3ffb7104 _ZN17__eh_globals_init7_S_initE + *fill* 0x3ffb7105 0x3 + .bss._ZN12_GLOBAL__N_110eh_globalsE + 0x3ffb7108 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) + .bss.g_phyFuns + 0x3ffb7110 0x4 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x3ffb7110 g_phyFuns + .bss.bt_dig_gain_force + 0x3ffb7114 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x3ffb7114 bt_dig_gain_force + .bss.init_wifi_disable + 0x3ffb7115 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x3ffb7115 init_wifi_disable + .bss.corr_cca_thr + 0x3ffb7116 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x3ffb7116 corr_cca_thr + .bss.lr_enable + 0x3ffb7117 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x3ffb7117 lr_enable + .bss.chan14_mic_en + 0x3ffb7118 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x3ffb7118 chan14_mic_en + .bss.re_entry 0x3ffb7119 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x3ffb7119 re_entry + .bss.force_hw_set_freq_flag + 0x3ffb711a 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x3ffb711a force_hw_set_freq_flag + .bss.phy_init_flag + 0x3ffb711b 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x3ffb711b phy_init_flag + .bss.phy_set_most_tpw_index + 0x3ffb711c 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x3ffb711c phy_set_most_tpw_index + *fill* 0x3ffb711d 0x1 + .bss.target_power_backoff_qdb + 0x3ffb711e 0x2 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x3ffb711e target_power_backoff_qdb + .bss.phy_set_most_tpw_flag + 0x3ffb7120 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x3ffb7120 phy_set_most_tpw_flag + .bss.phy_set_most_tpw_disbg + 0x3ffb7121 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x3ffb7121 phy_set_most_tpw_disbg + .bss.phy_meas_noise_floor + 0x3ffb7122 0x2 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x3ffb7122 phy_meas_noise_floor + .bss.sw_scan_mode + 0x3ffb7124 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x3ffb7124 sw_scan_mode + .bss.force_tx_gain_en + 0x3ffb7125 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x3ffb7125 force_tx_gain_en + .bss.phy_pwdet_onetime_flag + 0x3ffb7126 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x3ffb7126 phy_pwdet_onetime_flag + .bss.phy_dis_pwdet_one + 0x3ffb7127 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x3ffb7127 phy_dis_pwdet_one + .bss.phy_tx_pwr_error + 0x3ffb7128 0x2 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x3ffb7128 phy_tx_pwr_error + .bss.phy_in_vdd33_offset + 0x3ffb712a 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x3ffb712a phy_in_vdd33_offset + .bss.tx_pwctrl_track_num + 0x3ffb712b 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x3ffb712b tx_pwctrl_track_num + .bss.phy_tx_power_out + 0x3ffb712c 0x2 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x3ffb712c phy_tx_power_out + .bss.bt_pwr_track_num + 0x3ffb712e 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x3ffb712e bt_pwr_track_num + .bss.bt_pwr_freq_old + 0x3ffb712f 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x3ffb712f bt_pwr_freq_old + .bss.bt_pwr_cap_sum_old + 0x3ffb7130 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x3ffb7130 bt_pwr_cap_sum_old + *fill* 0x3ffb7131 0x1 + .bss.bt_pwr_cap_sum + 0x3ffb7132 0x2 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x3ffb7132 bt_pwr_cap_sum + .bss.btpwr_atten_offset + 0x3ffb7134 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x3ffb7134 btpwr_atten_offset + .bss.btpwr_tsen_flag + 0x3ffb7135 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x3ffb7135 btpwr_tsen_flag + .bss.btpwr_tsen_old + 0x3ffb7136 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x3ffb7136 btpwr_tsen_old + .bss.btpwr_tsen_init + 0x3ffb7137 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x3ffb7137 btpwr_tsen_init + .bss.rfpll_offset_delta + 0x3ffb7138 0x2 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x3ffb7138 rfpll_offset_delta + .bss.phy_bt_power_track_en + 0x3ffb713a 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x3ffb713a phy_bt_power_track_en + .bss.phy_sw_set_chan_en + 0x3ffb713b 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x3ffb713b phy_sw_set_chan_en + .bss.phy_force_wifi_chan_en + 0x3ffb713c 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x3ffb713c phy_force_wifi_chan_en + .bss.phy_freq_wifi_only + 0x3ffb713d 0x1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x3ffb713d phy_freq_wifi_only + .bss.phy_freq_offset + 0x3ffb713e 0x2 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x3ffb713e phy_freq_offset + .bss 0x3ffb7140 0x13c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-findfp.o) + 0x3ffb7140 __sf + 0x3ffb7278 __stdio_exit_handler + *(.dynbss .dynsbss .gnu.linkonce.b .gnu.linkonce.b.* .gnu.linkonce.sb .gnu.linkonce.sb.* .gnu.linkonce.sb2 .gnu.linkonce.sb2.* .sbss .sbss.* .sbss2 .sbss2.* .scommon .share.mem) + *(.ext_ram.bss .ext_ram.bss.*) + *(COMMON) + COMMON 0x3ffb727c 0x146 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x3ffb727c g_mesh_manual_nwk + 0x3ffb7284 g_mesh_self_map_addr + 0x3ffb728c g_mesh_xon_cfg_qsize + 0x3ffb7290 g_mesh_cfg_attemps + 0x3ffb72a0 mesh_xmit_state_mbox + 0x3ffb72ac g_mesh_self_sta_addr + 0x3ffb72b4 g_mesh_ext_cfg + 0x3ffb7384 g_mesh_ie + 0x3ffb73be g_mesh_chain + *fill* 0x3ffb73c2 0x2 + COMMON 0x3ffb73c4 0x70 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x3ffb73c4 g_mesh_current_parent + 0x3ffb7418 g_mesh_ext_vote_state + *fill* 0x3ffb7434 0x4 + COMMON 0x3ffb7438 0x2e8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x3ffb7438 mesh_self_xonseq + 0x3ffb7444 mesh_xon + 0x3ffb7458 mesh_conn_leave + COMMON 0x3ffb7720 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x3ffb7720 net80211_funcs + COMMON 0x3ffb7724 0x2a8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x3ffb7724 g_ic + COMMON 0x3ffb79cc 0x74 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + 0x3ffb79cc wpa_crypto_funcs + COMMON 0x3ffb7a40 0x60 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x3ffb7a40 g_wifi_menuconfig + COMMON 0x3ffb7aa0 0x160 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + 0x3ffb7aa0 s_ni + 0x3ffb7bf8 action_q + COMMON 0x3ffb7c00 0x224 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + 0x3ffb7c00 s_dp + COMMON 0x3ffb7e24 0x500 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x3ffb7e24 s_wifi_nvs + COMMON 0x3ffb8324 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x3ffb8324 s_tx_cacheq + COMMON 0x3ffb832c 0x11c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x3ffb832c gScanStruct + COMMON 0x3ffb8448 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x3ffb8448 s_eapol_txdone_cb + COMMON 0x3ffb844c 0xfc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x3ffb844c gChmCxt + COMMON 0x3ffb8548 0xf0c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x3ffb8548 g_cnxMgr + 0x3ffb9440 sta_con_timer + COMMON 0x3ffb9454 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + 0x3ffb9454 ctx + COMMON 0x3ffb945c 0xc0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x3ffb945c eb_space + COMMON 0x3ffb951c 0x28 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x3ffb951c if_ctrl + *fill* 0x3ffb9544 0x4 + COMMON 0x3ffb9548 0x1d0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x3ffb9548 g_pm + COMMON 0x3ffb9718 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x3ffb9718 s_fix_rate + COMMON 0x3ffb9724 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + 0x3ffb9724 g_misc_nvs + 0x3ffb9728 g_log_level + 0x3ffb972c g_log_mod + COMMON 0x3ffb9744 0x201 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x3ffb9744 pwrdet_offset + 0x3ffb9748 phy_rxbb_dc + 0x3ffb9758 phy_rxrf_dc + 0x3ffb97e0 chip7_sleep_params + 0x3ffb98a4 set_most_tpw + 0x3ffb98a8 phy_version_str + 0x3ffb98d0 chip7_phy_init_ctrl + 0x3ffb992e phy_dcur_org + 0x3ffb9930 chip7_phy_api_ctrl + 0x3ffb9940 adc_ana_conf_org + 0x3ffb9944 phy_dac_org + *fill* 0x3ffb9945 0x3 + COMMON 0x3ffb9948 0x2d /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x3ffb9948 phy_chan_gain_table + 0x3ffb9950 phy_chan_pwr_index + 0x3ffb9964 phy_chan_target_power + *fill* 0x3ffb9975 0x3 + COMMON 0x3ffb9978 0x1f /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x3ffb9978 bt_wifi_chan_data + 0x3ffb998c freq_i2c_addr + 0x3ffb9998 . = ALIGN (0x8) + *fill* 0x3ffb9997 0x1 + 0x3ffb9998 _bss_end = ABSOLUTE (.) + 0x00000001 ASSERT (((_bss_end - ORIGIN (dram0_0_seg)) <= LENGTH (dram0_0_seg)), DRAM segment data does not fit.) + +.flash.appdesc 0x3f400020 0x100 + 0x3f400020 _rodata_reserved_start = ABSOLUTE (.) + 0x3f400020 _rodata_start = ABSOLUTE (.) + *(.rodata_desc .rodata_desc.*) + .rodata_desc 0x3f400020 0x100 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0x3f400020 esp_app_desc + *(.rodata_custom_desc .rodata_custom_desc.*) + 0x3f400120 . = ALIGN (ALIGNOF (.flash.rodata)) + +.flash.rodata 0x3f400120 0x28580 + 0x3f400120 _flash_rodata_start = ABSOLUTE (.) + *(EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *libhal.a:wdt_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *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_esp32.* *libesp_system.a:ubsan.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_spiflash.* *libesp_mm.a:esp_cache.* *libesp_mm.a:cache_esp32.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:mspi_timing_config.* *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_flash_wrap.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *libhal.a:wdt_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *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_esp32.* *libesp_system.a:ubsan.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_spiflash.* *libesp_mm.a:esp_cache.* *libesp_mm.a:cache_esp32.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:mspi_timing_config.* *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_flash_wrap.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *libhal.a:wdt_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *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_esp32.* *libesp_system.a:ubsan.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_spiflash.* *libesp_mm.a:esp_cache.* *libesp_mm.a:cache_esp32.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:mspi_timing_config.* *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_flash_wrap.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *libhal.a:wdt_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *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_esp32.* *libesp_system.a:ubsan.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_spiflash.* *libesp_mm.a:esp_cache.* *libesp_mm.a:cache_esp32.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:mspi_timing_config.* *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_flash_wrap.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *libhal.a:wdt_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *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_esp32.* *libesp_system.a:ubsan.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_spiflash.* *libesp_mm.a:esp_cache.* *libesp_mm.a:cache_esp32.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:mspi_timing_config.* *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_flash_wrap.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *libhal.a:wdt_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *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_esp32.* *libesp_system.a:ubsan.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_spiflash.* *libesp_mm.a:esp_cache.* *libesp_mm.a:cache_esp32.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:mspi_timing_config.* *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_cleanup_thread_specific_data_callback.str1.1 + 0x3f400120 0x14fda esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x3d (size before relaxing) + .rodata.__func__$0 + 0x3f4150fa 0x2e esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .rodata.str1.1 + 0x3f415128 0xf0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .rodata.str1.1 + 0x3f415128 0x31 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .rodata.__func__$0 + 0x3f415128 0x1e esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .rodata.select_rtc_slow_clk.str1.1 + 0x3f415146 0x5c esp-idf/esp_system/libesp_system.a(clk.c.obj) + *fill* 0x3f415146 0x2 + .rodata 0x3f415148 0x4 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .rodata.esp_clk_init.str1.1 + 0x3f41514c 0x63 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .rodata.__func__$0 + 0x3f41514c 0xd esp-idf/esp_system/libesp_system.a(clk.c.obj) + *fill* 0x3f415159 0x3 + .rodata 0x3f41515c 0x10 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .rodata.esp_panic_handler.str1.1 + 0x3f41516c 0x80 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .rodata.do_system_init_fn.str1.1 + 0x3f41516c 0x4f esp-idf/esp_system/libesp_system.a(startup.c.obj) + .rodata.start_cpu0_default.str1.1 + 0x3f41516c 0x2cb esp-idf/esp_system/libesp_system.a(startup.c.obj) + .rodata.__func__$0 + 0x3f41516c 0xd esp-idf/esp_system/libesp_system.a(startup.c.obj) + *fill* 0x3f415179 0x3 + .rodata.g_startup_fn + 0x3f41517c 0x8 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x3f41517c g_startup_fn + .rodata.panic_handler.str1.1 + 0x3f415184 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .rodata.print_state_for_core.str1.1 + 0x3f415184 0x3 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .rodata 0x3f415184 0x5 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .rodata.print_debug_exception_details.str1.1 + 0x3f415189 0x89 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.print_illegal_instruction_details.str1.1 + 0x3f415189 0x17 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.panic_print_registers.str1.1 + 0x3f415189 0x152 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + *fill* 0x3f415189 0x3 + .rodata 0x3f41518c 0x60 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.panic_arch_fill_info.str1.1 + 0x3f4151ec 0x21 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.panic_soc_fill_info.str1.1 + 0x3f4151ec 0xf esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.str1.1 + 0x3f4151ec 0x281 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.pseudo_reason$0 + 0x3f4151ec 0x20 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.reason$1 + 0x3f41520c 0xa0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.str1.1 + 0x3f4152ac 0x47 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .rodata 0x3f4152ac 0x10 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .rodata.s_log_level_get_and_unlock.str1.1 + 0x3f4152bc 0x65 esp-idf/log/liblog.a(log.c.obj) + .rodata.esp_log_level_set.str1.1 + 0x3f4152bc 0x2 esp-idf/log/liblog.a(log.c.obj) + .rodata.__func__$0 + 0x3f4152bc 0x15 esp-idf/log/liblog.a(log.c.obj) + .rodata.__func__$1 + 0x3f4152d1 0x12 esp-idf/log/liblog.a(log.c.obj) + .rodata.__func__$2 + 0x3f4152e3 0x11 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$3 + 0x3f4152f4 0x12 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$6 + 0x3f415306 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$7 + 0x3f41531e 0x1a esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$8 + 0x3f415338 0x19 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$9 + 0x3f415351 0x11 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.register_heap.str1.1 + 0x3f415362 0x42 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .rodata.heap_caps_init.str1.1 + 0x3f415362 0xeb esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .rodata.__func__$2 + 0x3f415362 0xf esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .rodata.__func__$3 + 0x3f415371 0xe esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .rodata.assert_valid_block.str1.1 + 0x3f41537f 0x32 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.multi_heap_register_impl.str1.1 + 0x3f41537f 0x2d esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.multi_heap_get_first_block.str1.1 + 0x3f41537f 0xd esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$4 + 0x3f41537f 0x18 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$0 + 0x3f415397 0x19 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.default_walker.str1.1 + 0x3f4153b0 0x20 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.tlsf_check.str1.1 + 0x3f4153b0 0x48 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.tlsf_add_pool.str1.1 + 0x3f4153b0 0x125 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.tlsf_remove_pool.str1.1 + 0x3f4153b0 0x10f esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.tlsf_create.str1.1 + 0x3f4153b0 0x74 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.tlsf_malloc.str1.1 + 0x3f4153b0 0x17f esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.tlsf_free.str1.1 + 0x3f4153b0 0x10d esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.tlsf_realloc.str1.1 + 0x3f4153b0 0x2e esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$0 + 0x3f4153b0 0x10 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$1 + 0x3f4153c0 0xd esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$2 + 0x3f4153cd 0x11 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$3 + 0x3f4153de 0xd esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$5 + 0x3f4153eb 0x11 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$6 + 0x3f4153fc 0xa esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$8 + 0x3f415406 0xc esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$9 + 0x3f415412 0x10 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$11 + 0x3f415422 0x16 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$12 + 0x3f415438 0x12 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$14 + 0x3f41544a 0x12 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$15 + 0x3f41545c 0x12 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$18 + 0x3f41546e 0x12 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$20 + 0x3f415480 0xb esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.soc_get_available_memory_regions.str1.1 + 0x3f41548b 0xfb esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .rodata.__func__$0 + 0x3f41548b 0x1b esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + *fill* 0x3f4154a6 0x2 + .rodata.soc_memory_region_count + 0x3f4154a8 0x4 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x3f4154a8 soc_memory_region_count + .rodata.soc_memory_regions + 0x3f4154ac 0x35c esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x3f4154ac soc_memory_regions + .rodata.str1.1 + 0x3f415808 0x1f esp-idf/heap/libheap.a(memory_layout.c.obj) + .rodata.soc_memory_types + 0x3f415808 0x50 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x3f415808 soc_memory_types + .rodata.str1.1 + 0x3f415858 0x118 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .rodata.__func__$0 + 0x3f415858 0x17 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .rodata.__func__$1 + 0x3f41586f 0x18 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .rodata.__func__$2 + 0x3f415887 0xf esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .rodata.esp_cpu_stall.str1.1 + 0x3f415896 0x52 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .rodata.__func__$1 + 0x3f415896 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .rodata.__func__$2 + 0x3f4158a6 0xe esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .rodata.is_vect_desc_usable.str1.1 + 0x3f4158b4 0x76 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.str1.1 + 0x3f4158b4 0xc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.esp_intr_alloc_intrstatus.str1.1 + 0x3f4158b4 0xb9 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.__func__$0 + 0x3f4158b4 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.__func__$2 + 0x3f4158c5 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.__func__$3 + 0x3f4158db 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.__func__$5 + 0x3f4158f4 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.__func__$6 + 0x3f415908 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.periph_module_enable.str1.1 + 0x3f41591d 0x49 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .rodata.__func__$0 + 0x3f41591d 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .rodata.__func__$1 + 0x3f415931 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .rodata.__func__$2 + 0x3f415947 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .rodata.esp_deep_sleep_wakeup_io_reset.str1.1 + 0x3f41595c 0xdf esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.__func__$0 + 0x3f41595c 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.rtc_clk_cal_internal.str1.1 + 0x3f415978 0xa0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.rtc_clk_cal_ratio.str1.1 + 0x3f415978 0xf esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.rtc_time_get.str1.1 + 0x3f415978 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.rtc_clk_wait_for_slow_cycle.str1.1 + 0x3f415978 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.__func__$1 + 0x3f415978 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.__func__$2 + 0x3f415984 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.s_sar_power_release.str1.1 + 0x3f415999 0x4f esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .rodata.__func__$0 + 0x3f415999 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .rodata.esp_cpu_intr_get_desc.str1.1 + 0x3f4159ad 0x7f esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .rodata.__func__$0 + 0x3f4159ad 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + *fill* 0x3f4159c3 0x1 + .rodata.intr_desc_table + 0x3f4159c4 0x200 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .rodata.main_task.str1.1 + 0x3f415bc4 0xd6 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .rodata.esp_startup_start_app.str1.1 + 0x3f415bc4 0x3b esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .rodata.__func__$0 + 0x3f415bc4 0xa esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .rodata.__func__$1 + 0x3f415bce 0x16 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .rodata.prvNotifyQueueSetContainer.str1.1 + 0x3f415be4 0x8d esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueGenericReset.str1.1 + 0x3f415be4 0x2c esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueGenericCreateStatic.str1.1 + 0x3f415be4 0x34 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueGenericGetStaticBuffers.str1.1 + 0x3f415be4 0xf esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueGetMutexHolder.str1.1 + 0x3f415be4 0xb esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueCreateCountingSemaphoreStatic.str1.1 + 0x3f415be4 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueGenericSend.str1.1 + 0x3f415be4 0xf7 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueGiveMutexRecursive.str1.1 + 0x3f415be4 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueGiveFromISR.str1.1 + 0x3f415be4 0x7a esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueReceive.str1.1 + 0x3f415be4 0x66 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueReceiveFromISR.str1.1 + 0x3f415be4 0x52 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.uxQueueMessagesWaiting.str1.1 + 0x3f415be4 0x7 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$2 + 0x3f415be4 0xd esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$5 + 0x3f415bf1 0x17 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$7 + 0x3f415c08 0x15 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$9 + 0x3f415c1d 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$10 + 0x3f415c31 0xe esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$11 + 0x3f415c3f 0x12 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$12 + 0x3f415c51 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$13 + 0x3f415c6a 0x1b esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$14 + 0x3f415c85 0x12 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$15 + 0x3f415c97 0x1e esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$17 + 0x3f415cb5 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$18 + 0x3f415cce 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$20 + 0x3f415ce7 0x15 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$21 + 0x3f415cfc 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$22 + 0x3f415d10 0x1e esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$23 + 0x3f415d2e 0x1a esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$25 + 0x3f415d48 0x13 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.prvIsYieldRequiredSMP.str1.1 + 0x3f415d5b 0x4a esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.prvDeleteTCB.str1.1 + 0x3f415d5b 0x32 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.prvInitialiseNewTask$constprop$0.str1.1 + 0x3f415d5b 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.eTaskGetState.str1.1 + 0x3f415d5b 0x6 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskIncrementTick.str1.1 + 0x3f415d5b 0x8c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskSwitchContext.str1.1 + 0x3f415d5b 0x27 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskPlaceOnEventList.str1.1 + 0x3f415d5b 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskRemoveFromEventList.str1.1 + 0x3f415d5b 0x48 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskRemoveFromUnorderedEventList.str1.1 + 0x3f415d5b 0x3f esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskSetTimeOutState.str1.1 + 0x3f415d5b 0xa esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskCheckForTimeOut.str1.1 + 0x3f415d5b 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskPrioritySet.str1.1 + 0x3f415d5b 0x17 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskSuspend.str1.1 + 0x3f415d5b 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskDelete.str1.1 + 0x3f415d5b 0x7f esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskResumeAll.str1.1 + 0x3f415d5b 0x7f esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskPriorityDisinherit.str1.1 + 0x3f415d5b 0x40 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskPriorityDisinheritAfterTimeout.str1.1 + 0x3f415d5b 0x2b esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.ulTaskGenericNotifyTake.str1.1 + 0x3f415d5b 0x12 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskGenericNotify.str1.1 + 0x3f415d5b 0x80 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskIncrementTickOtherCores.str1.1 + 0x3f415d5b 0x52 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskCreatePinnedToCore.str1.1 + 0x3f415d5b 0xbc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskCreateStaticPinnedToCore.str1.1 + 0x3f415d5b 0x65 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskStartScheduler.str1.1 + 0x3f415d5b 0x17 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskGetIdleTaskHandleForCore.str1.1 + 0x3f415d5b 0xbe esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$2 + 0x3f415d5b 0x21 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$3 + 0x3f415d7c 0x1e esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$4 + 0x3f415d9a 0x1e esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$5 + 0x3f415db8 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$6 + 0x3f415dcd 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$7 + 0x3f415de5 0x1d esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$9 + 0x3f415e02 0x1e esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$11 + 0x3f415e20 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$13 + 0x3f415e33 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$14 + 0x3f415e4b 0x24 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$15 + 0x3f415e6f 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$17 + 0x3f415e87 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$19 + 0x3f415e9c 0x22 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$20 + 0x3f415ebe 0x19 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$22 + 0x3f415ed7 0x1f esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$23 + 0x3f415ef6 0x16 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$24 + 0x3f415f0c 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$25 + 0x3f415f2c 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$30 + 0x3f415f3f 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$31 + 0x3f415f4d 0xf esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$32 + 0x3f415f5c 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$36 + 0x3f415f70 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$37 + 0x3f415f7d 0x16 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$38 + 0x3f415f93 0x11 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$40 + 0x3f415fa4 0xb esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$42 + 0x3f415faf 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$43 + 0x3f415fbc 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.uxTopUsedPriority + 0x3f415fc8 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3f415fc8 uxTopUsedPriority + .rodata.pxPortInitialiseStack.str1.1 + 0x3f415fcc 0x64 esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.xPortEnterCriticalTimeout.str1.4 + 0x3f415fcc 0x130 esp-idf/freertos/libfreertos.a(port.c.obj) + 0xef (size before relaxing) + .rodata.vPortExitCritical.str1.4 + 0x3f4160fc 0x40 esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.vApplicationStackOverflowHook.str1.1 + 0x3f4160fc 0x3a esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.vPortTCBPreDeleteHook.str1.1 + 0x3f4160fc 0x7b esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.__func__$0 + 0x3f4160fc 0x11 esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.__func__$1 + 0x3f41610d 0x12 esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.__func__$2 + 0x3f41611f 0x11 esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.__func__$4 + 0x3f416130 0x16 esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.vApplicationGetIdleTaskMemory.str1.1 + 0x3f416146 0x5a esp-idf/freertos/libfreertos.a(port_common.c.obj) + .rodata.__func__$1 + 0x3f416146 0x1e esp-idf/freertos/libfreertos.a(port_common.c.obj) + .rodata.str1.1 + 0x3f416164 0x8a esp-idf/newlib/libnewlib.a(locks.c.obj) + .rodata.esp_newlib_locks_init.str1.1 + 0x3f416164 0x66 esp-idf/newlib/libnewlib.a(locks.c.obj) + .rodata.__func__$4 + 0x3f416164 0x16 esp-idf/newlib/libnewlib.a(locks.c.obj) + .rodata.__func__$3 + 0x3f41617a 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + .rodata.__func__$2 + 0x3f41618d 0x15 esp-idf/newlib/libnewlib.a(locks.c.obj) + .rodata.__func__$1 + 0x3f4161a2 0x15 esp-idf/newlib/libnewlib.a(locks.c.obj) + .rodata.__func__$0 + 0x3f4161b7 0xc esp-idf/newlib/libnewlib.a(locks.c.obj) + .rodata.esp_newlib_init_global_stdio.str1.1 + 0x3f4161c3 0x4 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .rodata.esp_timer_init.str1.1 + 0x3f4161c3 0xa5 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .rodata.esp_timer_impl_init_system_time.str1.1 + 0x3f4161c3 0x51 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .rodata.str1.1 + 0x3f4161c3 0x103 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .rodata.esp_timer_impl_init.str1.1 + 0x3f4161c3 0xb8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .rodata.__func__$2 + 0x3f4161c3 0x1f esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .rodata.__func__$1 + 0x3f4161e2 0x1c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .rodata.translate_path.str1.1 + 0x3f4161fe 0x5c esp-idf/vfs/libvfs.a(vfs.c.obj) + .rodata.esp_vfs_register_fd_range.str1.1 + 0x3f4161fe 0x1 esp-idf/vfs/libvfs.a(vfs.c.obj) + .rodata.__func__$0 + 0x3f4161fe 0xf esp-idf/vfs/libvfs.a(vfs.c.obj) + .rodata.console_open.str1.1 + 0x3f41620d 0xd esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .rodata.esp_vfs_dev_console_register.str1.1 + 0x3f41620d 0xd esp-idf/vfs/libvfs.a(vfs_console.c.obj) + *fill* 0x3f41620d 0x3 + .rodata.vfs 0x3f416210 0xa4 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .rodata.uart_access.str1.1 + 0x3f4162b4 0x9 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .rodata.uart_fcntl.str1.1 + 0x3f4162b4 0x31 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .rodata.uart_return_char.str1.1 + 0x3f4162b4 0x1d esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .rodata.uart_fsync.str1.1 + 0x3f4162b4 0x12 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .rodata.__func__$1 + 0x3f4162b4 0xb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .rodata.__func__$2 + 0x3f4162bf 0x11 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .rodata.__func__$3 + 0x3f4162d0 0xa esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .rodata.__func__$4 + 0x3f4162da 0xb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .rodata.__func__$5 + 0x3f4162e5 0xb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .rodata.__func__$6 + 0x3f4162f0 0xb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .rodata.__func__$7 + 0x3f4162fb 0xb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x3f416306 0x2 + .rodata.vfs 0x3f416308 0xa4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .rodata.s_ctx 0x3f4163ac 0xc esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .rodata.ip_event_handler.str1.1 + 0x3f4163b8 0x46 esp-idf/main/libmain.a(mesh_main.c.obj) + .rodata.esp_mesh_p2p_tx_main.str1.1 + 0x3f4163b8 0x1c3 esp-idf/main/libmain.a(mesh_main.c.obj) + .rodata.esp_mesh_p2p_rx_main.str1.1 + 0x3f4163b8 0xdd esp-idf/main/libmain.a(mesh_main.c.obj) + .rodata.esp_mesh_comm_p2p_start.str1.1 + 0x3f4163b8 0xa esp-idf/main/libmain.a(mesh_main.c.obj) + .rodata.mesh_event_handler.str1.1 + 0x3f4163b8 0x87f esp-idf/main/libmain.a(mesh_main.c.obj) + .rodata.app_main.str1.1 + 0x3f4163b8 0x467 esp-idf/main/libmain.a(mesh_main.c.obj) + .rodata.__func__$0 + 0x3f4163b8 0x9 esp-idf/main/libmain.a(mesh_main.c.obj) + .rodata.MESH_ID + 0x3f4163c1 0x6 esp-idf/main/libmain.a(mesh_main.c.obj) + .rodata.str1.1 + 0x3f4163c7 0x23 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + *fill* 0x3f4163c7 0x9 + .rodata 0x3f4163d0 0x24 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x3f4163d0 _xt_coproc_sa_offset + .rodata.write_reg.str1.1 + 0x3f4163f4 0x13b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_process.str1.1 + 0x3f4163f4 0x66 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_read_reg.str1.1 + 0x3f4163f4 0xd0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$1 + 0x3f4163f4 0x1b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$7 + 0x3f41640f 0x1a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x3f416429 0x3 + .rodata.MAC_VERSION + 0x3f41642c 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.MAC_CUSTOM + 0x3f416430 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CUSTOM_MAC_CRC + 0x3f416434 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.MAC_CRC + 0x3f416438 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.MAC 0x3f41643c 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.range_read_addr_blocks + 0x3f416454 0x20 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x3f416454 range_read_addr_blocks + .rodata.s_get_bus_mask.str1.1 + 0x3f416474 0x89 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_map_init.str1.1 + 0x3f416474 0x1d5 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_map_get_max_consecutive_free_block_size.str1.1 + 0x3f416474 0x5a esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_map_reserve_block_with_caps.str1.1 + 0x3f416474 0x2c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_map.str1.1 + 0x3f416474 0x175 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_unmap.str1.1 + 0x3f416474 0xa0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_vaddr_to_paddr.str1.1 + 0x3f416474 0x78 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__$1 + 0x3f416474 0x17 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__$2 + 0x3f41648b 0xe esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.__func__$4 + 0x3f416499 0xc esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__$5 + 0x3f4164a5 0xc esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.__func__$8 + 0x3f4164b1 0x16 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.__func__$9 + 0x3f4164c7 0x14 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.__func__$10 + 0x3f4164db 0x16 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.__func__$11 + 0x3f4164f1 0x11 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.str1.1 + 0x3f416502 0x5 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x3f416502 0x2 + .rodata.g_mmu_mem_regions + 0x3f416504 0x48 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + 0x3f416504 g_mmu_mem_regions + .rodata.gpio_od_enable$isra$0.str1.1 + 0x3f41654c 0x3a esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_output_enable$isra$0.str1.1 + 0x3f41654c 0x1b esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_output_disable$isra$0.str1.1 + 0x3f41654c 0xf1 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_input_enable$isra$0.str1.1 + 0x3f41654c 0xb8 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_set_direction.str1.1 + 0x3f41654c 0x34 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$39 + 0x3f41654c 0x10 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$40 + 0x3f41655c 0xf esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$41 + 0x3f41656b 0x17 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$42 + 0x3f416582 0x14 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$43 + 0x3f416596 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$44 + 0x3f4165a9 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$45 + 0x3f4165bc 0x15 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$46 + 0x3f4165d1 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$47 + 0x3f4165e3 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$49 + 0x3f4165f6 0xf esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.ilog2.str1.1 + 0x3f416605 0x2a esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.ledc_slow_clk_calibrate.str1.1 + 0x3f416605 0x3a esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.str1.1 + 0x3f416605 0x72 esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.ledc_timer_set.str1.1 + 0x3f416605 0xbb esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.ledc_set_timer_div.str1.1 + 0x3f416605 0x159 esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.ledc_isr_register.str1.1 + 0x3f416605 0x37 esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.ledc_timer_config.str1.1 + 0x3f416605 0x195 esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.ledc_set_pin.str1.1 + 0x3f416605 0x13b esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.ledc_update_duty.str1.1 + 0x3f416605 0x3c esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.ledc_set_duty_with_hpoint.str1.1 + 0x3f416605 0x3b esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.ledc_channel_config.str1.1 + 0x3f416605 0x7c esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.ledc_fade_func_install.str1.1 + 0x3f416605 0x20 esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.__func__$4 + 0x3f416605 0xe esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.__FUNCTION__$5 + 0x3f416613 0x17 esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.__FUNCTION__$15 + 0x3f41662a 0xe esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.__FUNCTION__$16 + 0x3f416638 0x1a esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.__FUNCTION__$19 + 0x3f416652 0x11 esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.__FUNCTION__$20 + 0x3f416663 0x14 esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.__func__$21 + 0x3f416677 0x17 esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.__func__$23 + 0x3f41668e 0x13 esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.__FUNCTION__$24 + 0x3f4166a1 0x13 esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.__FUNCTION__$25 + 0x3f4166b4 0xf esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.__FUNCTION__$26 + 0x3f4166c3 0x12 esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.__FUNCTION__$27 + 0x3f4166d5 0x12 esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.__FUNCTION__$28 + 0x3f4166e7 0x12 esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.__FUNCTION__$30 + 0x3f4166f9 0xf esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.__FUNCTION__$31 + 0x3f416708 0x18 esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.__FUNCTION__$32 + 0x3f416720 0xf esp-idf/driver/libdriver.a(ledc.c.obj) + .rodata.uart_reenable_intr_mask$constprop$0$isra$0.str1.1 + 0x3f41672f 0x34 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_word_length.str1.1 + 0x3f41672f 0x2f esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_stop_bits.str1.1 + 0x3f41672f 0x2f esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_baudrate.str1.1 + 0x3f41672f 0x30 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_pattern_pop_pos.str1.1 + 0x3f41672f 0x32 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_wait_tx_done.str1.1 + 0x3f41672f 0x90 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_flush_input.str1.1 + 0x3f41672f 0x2e esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$37 + 0x3f41672f 0x11 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$35 + 0x3f416740 0x1b esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$34 + 0x3f41675b 0x18 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__func__$29 + 0x3f416773 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$28 + 0x3f416785 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7 + 0x3f416797 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$6 + 0x3f4167a9 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$5 + 0x3f4167bb 0x10 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$4 + 0x3f4167cb 0x10 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$3 + 0x3f4167db 0x13 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$2 + 0x3f4167ee 0x13 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$1 + 0x3f416801 0x15 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$0 + 0x3f416816 0x15 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.str1.1 + 0x3f41682b 0x7d esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.__func__$1 + 0x3f41682b 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.spi_flash_init_lock.str1.1 + 0x3f416853 0x42 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .rodata.str1.1 + 0x3f416853 0xfa esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .rodata.__func__$0 + 0x3f416853 0x1c esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .rodata.__func__$1 + 0x3f41686f 0x31 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .rodata.__func__$2 + 0x3f4168a0 0x32 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .rodata.__func__$3 + 0x3f4168d2 0x14 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .rodata.s_merge_contiguous_pages.str1.1 + 0x3f4168e6 0x42 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .rodata.spi_flash_munmap.str1.1 + 0x3f4168e6 0x32 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .rodata.__func__$1 + 0x3f4168e6 0x11 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .rodata.esp_mspi_get_io.str1.1 + 0x3f4168f7 0x3c esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .rodata.__func__$0 + 0x3f4168f7 0x10 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .rodata.s_mspi_io_num_default + 0x3f416907 0x6 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .rodata.str1.1 + 0x3f41690d 0x18f esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .rodata.esp_flash_read_unique_chip_id.str1.1 + 0x3f41690d 0x91 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .rodata.__func__$0 + 0x3f41690d 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .rodata.__func__$1 + 0x3f41691d 0x17 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .rodata.io_mode_str + 0x3f416934 0xb4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .rodata.esp_flash_init_default_chip.str1.1 + 0x3f4169e8 0xfc esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.TAG 0x3f4169e8 0xa esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.str1.1 + 0x3f4169f2 0x44 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .rodata.__func__$0 + 0x3f4169f2 0x19 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .rodata.str1.1 + 0x3f416a0b 0x47 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .rodata.esp_crosscore_int_init.str1.1 + 0x3f416a0b 0x2f esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .rodata.__func__$0 + 0x3f416a0b 0x17 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .rodata.__func__$1 + 0x3f416a22 0x17 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .rodata.str1.1 + 0x3f416a39 0x40 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .rodata.esp_ipc_init.str1.1 + 0x3f416a39 0xe esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .rodata.__func__$0 + 0x3f416a39 0x9 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .rodata.__func__$1 + 0x3f416a42 0xd esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .rodata.add_entry.str1.1 + 0x3f416a4f 0xc3 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.delete_entry.str1.1 + 0x3f416a4f 0x5e esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.task_wdt_timeout_abort.str1.1 + 0x3f416a4f 0xcd esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.esp_task_wdt_add.str1.1 + 0x3f416a4f 0x3b esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.subscribe_idle.str1.1 + 0x3f416a4f 0xa3 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.esp_task_wdt_init.str1.1 + 0x3f416a4f 0x9f esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.esp_task_wdt_print_triggered_tasks.str1.1 + 0x3f416a4f 0xb8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.task_wdt_isr.str1.1 + 0x3f416a4f 0x32 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$5 + 0x3f416a4f 0x13 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$7 + 0x3f416a62 0xa esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$8 + 0x3f416a6c 0x11 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__func__$12 + 0x3f416a7d 0xf esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__func__$13 + 0x3f416a8c 0xd esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$14 + 0x3f416a99 0x12 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__func__$15 + 0x3f416aab 0x17 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.get_flash_clock_divider.str1.1 + 0x3f416ac2 0x8f esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .rodata.str1.1 + 0x3f416ac2 0x240 esp-idf/soc/libsoc.a(interrupts.c.obj) + *fill* 0x3f416ac2 0x2 + .rodata.esp_isr_names + 0x3f416ac4 0x114 esp-idf/soc/libsoc.a(interrupts.c.obj) + 0x3f416ac4 esp_isr_names + .rodata.GPIO_PIN_MUX_REG + 0x3f416bd8 0xa0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + 0x3f416bd8 GPIO_PIN_MUX_REG + .rodata.ledc_periph_signal + 0x3f416c78 0x2 esp-idf/soc/libsoc.a(ledc_periph.c.obj) + 0x3f416c78 ledc_periph_signal + *fill* 0x3f416c7a 0x2 + .rodata.rtc_io_desc + 0x3f416c7c 0x3f0 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + 0x3f416c7c rtc_io_desc + .rodata.rtc_io_num_map + 0x3f41706c 0xa0 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + 0x3f41706c rtc_io_num_map + .rodata 0x3f41710c 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .rodata.s_sleep_hook_register.str1.1 + 0x3f417120 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_clk_tree_src_get_freq_hz.str1.1 + 0x3f417120 0xe4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .rodata.__FUNCTION__$0 + 0x3f417120 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .rodata.esp_unknown_msg + 0x3f41713d 0x6 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .rodata.str1.1 + 0x3f417143 0x16a1 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + *fill* 0x3f417143 0x1 + .rodata.esp_err_msg_table + 0x3f417144 0x6c8 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .rodata.esp_event_loop_create_default.str1.1 + 0x3f41780c 0x8 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .rodata 0x3f41780c 0x14 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .rodata.handler_instances_add.str1.1 + 0x3f417820 0x46 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .rodata.base_node_add_handler.str1.1 + 0x3f417820 0x35 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .rodata.loop_node_add_handler.str1.1 + 0x3f417820 0x3f esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .rodata.esp_event_loop_create.str1.1 + 0x3f417820 0x134 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .rodata.esp_event_loop_run.str1.1 + 0x3f417820 0x32 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .rodata.esp_event_loop_run_task.str1.1 + 0x3f417820 0x33 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .rodata.esp_event_handler_register_with_internal.str1.1 + 0x3f417820 0x98 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .rodata.esp_event_handler_unregister_with_internal.str1.1 + 0x3f417820 0x61 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .rodata.__func__$1 + 0x3f417820 0x12 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .rodata.__func__$2 + 0x3f417832 0x2b esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .rodata.__func__$3 + 0x3f41785d 0x29 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .rodata.__func__$5 + 0x3f417886 0x13 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .rodata.nvs_flash_init.str1.1 + 0x3f417899 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + *fill* 0x3f417899 0x3 + .rodata._ZTVN3nvs15NVSHandleSimpleE + 0x3f41789c 0x40 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x3f41789c _ZTVN3nvs15NVSHandleSimpleE + .rodata._ZTVN3nvs12NVSPartitionE + 0x3f4178dc 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x3f4178dc _ZTVN3nvs12NVSPartitionE + .rodata._ZTVN3nvs19NVSPartitionManagerE + 0x3f417910 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x3f417910 _ZTVN3nvs19NVSPartitionManagerE + .rodata.esp_netif_remove_from_list_unsafe.str1.1 + 0x3f417920 0x47 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .rodata.__func__$0 + 0x3f417920 0x22 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .rodata.str1.1 + 0x3f417942 0x9 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + *fill* 0x3f417942 0x2 + .rodata.IP_EVENT + 0x3f417944 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x3f417944 IP_EVENT + .rodata.esp_netif_dhcps_cb.str1.1 + 0x3f417948 0xaf esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_dhcps_start_api.str1.1 + 0x3f417948 0x36 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_dhcpc_start_api.str1.1 + 0x3f417948 0x31 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_dhcpc_stop_api.str1.1 + 0x3f417948 0x3e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_ip_lost_timer.str1.1 + 0x3f417948 0x49 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_new_api.str1.1 + 0x3f417948 0x21c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_start_api.str1.1 + 0x3f417948 0x1da esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.netif_callback_fn.str1.1 + 0x3f417948 0x88 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_init.str1.1 + 0x3f417948 0xb7 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_attach.str1.1 + 0x3f417948 0x4a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.__func__$3 + 0x3f417948 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.__func__$4 + 0x3f41795c 0x12 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x3f41796e 0x2 + .rodata.g_wifi_default_mesh_crypto_funcs + 0x3f417970 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x3f417970 g_wifi_default_mesh_crypto_funcs + .rodata.g_wifi_default_wpa_crypto_funcs + 0x3f417978 0x74 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x3f417978 g_wifi_default_wpa_crypto_funcs + .rodata.fastpbkdf2_hmac_sha1.str1.1 + 0x3f4179ec 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + .rodata.__func__$1 + 0x3f4179ec 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + .rodata.esp_mesh_send_event_internal.str1.1 + 0x3f4179f8 0xb esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .rodata.MESH_EVENT + 0x3f4179f8 0x4 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + 0x3f4179f8 MESH_EVENT + .rodata.wifi_deinit_internal.str1.1 + 0x3f4179fc 0xa8 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .rodata.s_set_default_wifi_log_level.str1.1 + 0x3f4179fc 0x1d esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .rodata.esp_wifi_init.str1.1 + 0x3f4179fc 0x1d5 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .rodata.str1.1 + 0x3f4179fc 0xb esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .rodata.WIFI_EVENT + 0x3f4179fc 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x3f4179fc WIFI_EVENT + .rodata.wifi_start.str1.1 + 0x3f417a00 0xcc esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .rodata.wifi_default_action_sta_got_ip.str1.1 + 0x3f417a00 0x44 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .rodata.esp_netif_attach_wifi.str1.1 + 0x3f417a00 0x3f esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .rodata.esp_netif_create_default_wifi_ap.str1.1 + 0x3f417a00 0xa7 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .rodata.esp_netif_create_default_wifi_sta.str1.1 + 0x3f417a00 0x4e esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .rodata.esp_netif_create_default_wifi_mesh_netifs.str1.1 + 0x3f417a00 0x9e esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .rodata.__func__$0 + 0x3f417a00 0x2a esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .rodata.esp_wifi_create_if_driver.str1.1 + 0x3f417a2a 0x4f esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .rodata.esp_wifi_register_if_rxcb.str1.1 + 0x3f417a2a 0xe5 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .rodata.small_prime_gaps + 0x3f417a2a 0xa7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + *fill* 0x3f417ad1 0x3 + .rodata.mbedtls_cipher_definitions + 0x3f417ad4 0x180 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x3f417ad4 mbedtls_cipher_definitions + .rodata.str1.1 + 0x3f417c54 0x28b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_256_ccm_star_no_tag_info + 0x3f417c54 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_192_ccm_star_no_tag_info + 0x3f417c5c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_128_ccm_star_no_tag_info + 0x3f417c64 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_256_ccm_info + 0x3f417c6c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_192_ccm_info + 0x3f417c74 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_128_ccm_info + 0x3f417c7c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.ccm_aria_info + 0x3f417c84 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_256_gcm_info + 0x3f417cb0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_192_gcm_info + 0x3f417cb8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_128_gcm_info + 0x3f417cc0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.gcm_aria_info + 0x3f417cc8 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_256_ctr_info + 0x3f417cf4 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_192_ctr_info + 0x3f417cfc 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_128_ctr_info + 0x3f417d04 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_256_cfb128_info + 0x3f417d0c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_192_cfb128_info + 0x3f417d14 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_128_cfb128_info + 0x3f417d1c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_256_cbc_info + 0x3f417d24 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_192_cbc_info + 0x3f417d2c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_128_cbc_info + 0x3f417d34 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_256_ecb_info + 0x3f417d3c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_192_ecb_info + 0x3f417d44 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_128_ecb_info + 0x3f417d4c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aria_info + 0x3f417d54 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_ccm_star_no_tag_info + 0x3f417d80 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_ccm_star_no_tag_info + 0x3f417d88 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_ccm_star_no_tag_info + 0x3f417d90 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_ccm_info + 0x3f417d98 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_ccm_info + 0x3f417da0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_ccm_info + 0x3f417da8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.ccm_aes_info + 0x3f417db0 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_gcm_info + 0x3f417ddc 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_gcm_info + 0x3f417de4 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_gcm_info + 0x3f417dec 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.gcm_aes_info + 0x3f417df4 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_xts_info + 0x3f417e20 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_xts_info + 0x3f417e28 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.xts_aes_info + 0x3f417e30 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_ctr_info + 0x3f417e5c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_ctr_info + 0x3f417e64 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_ctr_info + 0x3f417e6c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_ofb_info + 0x3f417e74 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_ofb_info + 0x3f417e7c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_ofb_info + 0x3f417e84 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_cfb128_info + 0x3f417e8c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_cfb128_info + 0x3f417e94 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_cfb128_info + 0x3f417e9c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_cbc_info + 0x3f417ea4 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_cbc_info + 0x3f417eac 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_cbc_info + 0x3f417eb4 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_ecb_info + 0x3f417ebc 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_ecb_info + 0x3f417ec4 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_ecb_info + 0x3f417ecc 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_info + 0x3f417ed4 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.mbedtls_sha3_512_info + 0x3f417f00 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.mbedtls_sha3_384_info + 0x3f417f08 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.mbedtls_sha3_256_info + 0x3f417f10 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.mbedtls_sha3_224_info + 0x3f417f18 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.mbedtls_sha512_info + 0x3f417f20 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.mbedtls_sha384_info + 0x3f417f28 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.mbedtls_sha256_info + 0x3f417f30 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.mbedtls_sha224_info + 0x3f417f38 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.mbedtls_sha1_info + 0x3f417f40 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.mbedtls_md5_info + 0x3f417f48 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.memset_func + 0x3f417f50 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .rodata.rho 0x3f417f54 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .rodata.iota_r_packed + 0x3f417f6c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .rodata.esp_aes_crypt_cfb128.str1.1 + 0x3f417f84 0x5d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .rodata.esp_aes_crypt_ctr.str1.1 + 0x3f417f84 0x86 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .rodata.mbedtls_mpi_mul_mpi.str1.1 + 0x3f417f84 0x56 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .rodata.__func__$0 + 0x3f417f84 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .rodata.sha1_padding + 0x3f417fa3 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .rodata.sha256_padding + 0x3f417fe3 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + *fill* 0x3f418023 0x1 + .rodata.K 0x3f418024 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .rodata.sha512_padding + 0x3f418124 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + *fill* 0x3f4181a4 0x4 + .rodata.K 0x3f4181a8 0x280 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .rodata.esp_aes_gcm_starts.str1.1 + 0x3f418428 0x63 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .rodata.esp_aes_gcm_update.str1.1 + 0x3f418428 0xb7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .rodata.last4 0x3f418428 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .rodata 0x3f418468 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_is2 + 0x3f418498 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_is1 + 0x3f418598 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_sb2 + 0x3f418698 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.aria_sb1 + 0x3f418798 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .rodata.mbedtls_rsa_deduce_primes.str1.1 + 0x3f418898 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .rodata.sha_get_engine_state.str1.1 + 0x3f418898 0x4b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .rodata.esp_sha_lock_engine_common.str1.1 + 0x3f418898 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .rodata.esp_sha_read_digest_state.str1.1 + 0x3f418898 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .rodata.__func__$0 + 0x3f418898 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .rodata.__func__$1 + 0x3f4188a6 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .rodata.__func__$2 + 0x3f4188c0 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .rodata.__func__$3 + 0x3f4188d5 0x1b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .rodata.ecp_x25519_bad_point_2 + 0x3f4188f0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata.ecp_x25519_bad_point_1 + 0x3f4188f8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata.x25519_bad_point_2 + 0x3f418900 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata.x25519_bad_point_1 + 0x3f418920 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata.str1.1 + 0x3f418940 0x87 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata.ecp_supported_curves + 0x3f418940 0x9c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata.Rp$0 0x3f4189dc 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.Rp$1 0x3f4189e4 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.Rp$2 0x3f4189ec 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.curve25519_part_of_n + 0x3f4189f4 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T + 0x3f418a04 0x300 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_31_Y + 0x3f418d04 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_31_X + 0x3f418d44 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_30_Y + 0x3f418d84 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_30_X + 0x3f418dc4 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_29_Y + 0x3f418e04 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_29_X + 0x3f418e44 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_28_Y + 0x3f418e84 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_28_X + 0x3f418ec4 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_27_Y + 0x3f418f04 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_27_X + 0x3f418f44 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_26_Y + 0x3f418f84 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_26_X + 0x3f418fc4 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_25_Y + 0x3f419004 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_25_X + 0x3f419044 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_24_Y + 0x3f419084 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_24_X + 0x3f4190c4 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_23_Y + 0x3f419104 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_23_X + 0x3f419144 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_22_Y + 0x3f419184 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_22_X + 0x3f4191c4 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_21_Y + 0x3f419204 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_21_X + 0x3f419244 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_20_Y + 0x3f419284 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_20_X + 0x3f4192c4 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_19_Y + 0x3f419304 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_19_X + 0x3f419344 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_18_Y + 0x3f419384 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_18_X + 0x3f4193c4 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_17_Y + 0x3f419404 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_17_X + 0x3f419444 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_16_Y + 0x3f419484 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_16_X + 0x3f4194c4 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_15_Y + 0x3f419504 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_15_X + 0x3f419544 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_14_Y + 0x3f419584 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_14_X + 0x3f4195c4 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_13_Y + 0x3f419604 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_13_X + 0x3f419644 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_12_Y + 0x3f419684 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_12_X + 0x3f4196c4 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_11_Y + 0x3f419704 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_11_X + 0x3f419744 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_10_Y + 0x3f419784 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_10_X + 0x3f4197c4 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_9_Y + 0x3f419804 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_9_X + 0x3f419844 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_8_Y + 0x3f419884 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_8_X + 0x3f4198c4 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_7_Y + 0x3f419904 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_7_X + 0x3f419944 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_6_Y + 0x3f419984 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_6_X + 0x3f4199c4 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_5_Y + 0x3f419a04 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_5_X + 0x3f419a44 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_4_Y + 0x3f419a84 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_4_X + 0x3f419ac4 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_3_Y + 0x3f419b04 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_3_X + 0x3f419b44 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_2_Y + 0x3f419b84 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_2_X + 0x3f419bc4 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_1_Y + 0x3f419c04 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_1_X + 0x3f419c44 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_0_Y + 0x3f419c84 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_T_0_X + 0x3f419cc4 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_n + 0x3f419d04 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_gy + 0x3f419d44 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_gx + 0x3f419d84 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_b + 0x3f419dc4 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_a + 0x3f419e04 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_p + 0x3f419e44 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T + 0x3f419e84 0x300 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_31_Y + 0x3f41a184 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_31_X + 0x3f41a1b4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_30_Y + 0x3f41a1e4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_30_X + 0x3f41a214 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_29_Y + 0x3f41a244 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_29_X + 0x3f41a274 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_28_Y + 0x3f41a2a4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_28_X + 0x3f41a2d4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_27_Y + 0x3f41a304 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_27_X + 0x3f41a334 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_26_Y + 0x3f41a364 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_26_X + 0x3f41a394 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_25_Y + 0x3f41a3c4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_25_X + 0x3f41a3f4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_24_Y + 0x3f41a424 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_24_X + 0x3f41a454 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_23_Y + 0x3f41a484 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_23_X + 0x3f41a4b4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_22_Y + 0x3f41a4e4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_22_X + 0x3f41a514 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_21_Y + 0x3f41a544 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_21_X + 0x3f41a574 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_20_Y + 0x3f41a5a4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_20_X + 0x3f41a5d4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_19_Y + 0x3f41a604 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_19_X + 0x3f41a634 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_18_Y + 0x3f41a664 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_18_X + 0x3f41a694 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_17_Y + 0x3f41a6c4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_17_X + 0x3f41a6f4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_16_Y + 0x3f41a724 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_16_X + 0x3f41a754 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_15_Y + 0x3f41a784 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_15_X + 0x3f41a7b4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_14_Y + 0x3f41a7e4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_14_X + 0x3f41a814 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_13_Y + 0x3f41a844 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_13_X + 0x3f41a874 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_12_Y + 0x3f41a8a4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_12_X + 0x3f41a8d4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_11_Y + 0x3f41a904 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_11_X + 0x3f41a934 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_10_Y + 0x3f41a964 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_10_X + 0x3f41a994 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_9_Y + 0x3f41a9c4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_9_X + 0x3f41a9f4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_8_Y + 0x3f41aa24 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_8_X + 0x3f41aa54 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_7_Y + 0x3f41aa84 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_7_X + 0x3f41aab4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_6_Y + 0x3f41aae4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_6_X + 0x3f41ab14 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_5_Y + 0x3f41ab44 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_5_X + 0x3f41ab74 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_4_Y + 0x3f41aba4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_4_X + 0x3f41abd4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_3_Y + 0x3f41ac04 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_3_X + 0x3f41ac34 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_2_Y + 0x3f41ac64 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_2_X + 0x3f41ac94 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_1_Y + 0x3f41acc4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_1_X + 0x3f41acf4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_0_Y + 0x3f41ad24 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_T_0_X + 0x3f41ad54 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_n + 0x3f41ad84 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_gy + 0x3f41adb4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_gx + 0x3f41ade4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_b + 0x3f41ae14 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_a + 0x3f41ae44 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_p + 0x3f41ae74 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T + 0x3f41aea4 0x180 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_15_Y + 0x3f41b024 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_15_X + 0x3f41b044 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_14_Y + 0x3f41b064 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_14_X + 0x3f41b084 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_13_Y + 0x3f41b0a4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_13_X + 0x3f41b0c4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_12_Y + 0x3f41b0e4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_12_X + 0x3f41b104 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_11_Y + 0x3f41b124 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_11_X + 0x3f41b144 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_10_Y + 0x3f41b164 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_10_X + 0x3f41b184 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_9_Y + 0x3f41b1a4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_9_X + 0x3f41b1c4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_8_Y + 0x3f41b1e4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_8_X + 0x3f41b204 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_7_Y + 0x3f41b224 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_7_X + 0x3f41b244 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_6_Y + 0x3f41b264 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_6_X + 0x3f41b284 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_5_Y + 0x3f41b2a4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_5_X + 0x3f41b2c4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_4_Y + 0x3f41b2e4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_4_X + 0x3f41b304 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_3_Y + 0x3f41b324 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_3_X + 0x3f41b344 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_2_Y + 0x3f41b364 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_2_X + 0x3f41b384 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_1_Y + 0x3f41b3a4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_1_X + 0x3f41b3c4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_0_Y + 0x3f41b3e4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_T_0_X + 0x3f41b404 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_n + 0x3f41b424 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_gy + 0x3f41b444 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_gx + 0x3f41b464 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_b + 0x3f41b484 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_a + 0x3f41b4a4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_p + 0x3f41b4c4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T + 0x3f41b4e4 0x180 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_15_Y + 0x3f41b664 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_15_X + 0x3f41b684 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_14_Y + 0x3f41b6a4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_14_X + 0x3f41b6c4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_13_Y + 0x3f41b6e4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_13_X + 0x3f41b704 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_12_Y + 0x3f41b724 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_12_X + 0x3f41b744 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_11_Y + 0x3f41b764 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_11_X + 0x3f41b784 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_10_Y + 0x3f41b7a4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_10_X + 0x3f41b7c4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_9_Y + 0x3f41b7e4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_9_X + 0x3f41b804 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_8_Y + 0x3f41b824 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_8_X + 0x3f41b844 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_7_Y + 0x3f41b864 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_7_X + 0x3f41b884 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_6_Y + 0x3f41b8a4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_6_X + 0x3f41b8c4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_5_Y + 0x3f41b8e4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_5_X + 0x3f41b904 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_4_Y + 0x3f41b924 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_4_X + 0x3f41b944 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_3_Y + 0x3f41b964 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_3_X + 0x3f41b984 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_2_Y + 0x3f41b9a4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_2_X + 0x3f41b9c4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_1_Y + 0x3f41b9e4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_1_X + 0x3f41ba04 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_0_Y + 0x3f41ba24 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_T_0_X + 0x3f41ba44 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_n + 0x3f41ba64 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_gy + 0x3f41ba84 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_gx + 0x3f41baa4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_b + 0x3f41bac4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_a + 0x3f41bac8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_p + 0x3f41bacc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T + 0x3f41baec 0x180 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_15_Y + 0x3f41bc6c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_15_X + 0x3f41bc8c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_14_Y + 0x3f41bcac 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_14_X + 0x3f41bccc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_13_Y + 0x3f41bcec 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_13_X + 0x3f41bd0c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_12_Y + 0x3f41bd2c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_12_X + 0x3f41bd4c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_11_Y + 0x3f41bd6c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_11_X + 0x3f41bd8c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_10_Y + 0x3f41bdac 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_10_X + 0x3f41bdcc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_9_Y + 0x3f41bdec 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_9_X + 0x3f41be0c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_8_Y + 0x3f41be2c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_8_X + 0x3f41be4c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_7_Y + 0x3f41be6c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_7_X + 0x3f41be8c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_6_Y + 0x3f41beac 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_6_X + 0x3f41becc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_5_Y + 0x3f41beec 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_5_X + 0x3f41bf0c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_4_Y + 0x3f41bf2c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_4_X + 0x3f41bf4c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_3_Y + 0x3f41bf6c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_3_X + 0x3f41bf8c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_2_Y + 0x3f41bfac 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_2_X + 0x3f41bfcc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_1_Y + 0x3f41bfec 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_1_X + 0x3f41c00c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_0_Y + 0x3f41c02c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_T_0_X + 0x3f41c04c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_n + 0x3f41c06c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_gy + 0x3f41c08c 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_gx + 0x3f41c0a8 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_b + 0x3f41c0c4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_a + 0x3f41c0c8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_p + 0x3f41c0cc 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T + 0x3f41c0e8 0x180 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_15_Y + 0x3f41c268 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_15_X + 0x3f41c280 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_14_Y + 0x3f41c298 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_14_X + 0x3f41c2b0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_13_Y + 0x3f41c2c8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_13_X + 0x3f41c2e0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_12_Y + 0x3f41c2f8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_12_X + 0x3f41c310 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_11_Y + 0x3f41c328 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_11_X + 0x3f41c340 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_10_Y + 0x3f41c358 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_10_X + 0x3f41c370 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_9_Y + 0x3f41c388 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_9_X + 0x3f41c3a0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_8_Y + 0x3f41c3b8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_8_X + 0x3f41c3d0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_7_Y + 0x3f41c3e8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_7_X + 0x3f41c400 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_6_Y + 0x3f41c418 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_6_X + 0x3f41c430 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_5_Y + 0x3f41c448 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_5_X + 0x3f41c460 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_4_Y + 0x3f41c478 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_4_X + 0x3f41c490 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_3_Y + 0x3f41c4a8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_3_X + 0x3f41c4c0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_2_Y + 0x3f41c4d8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_2_X + 0x3f41c4f0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_1_Y + 0x3f41c508 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_1_X + 0x3f41c520 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_0_Y + 0x3f41c538 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_T_0_X + 0x3f41c550 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_n + 0x3f41c568 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_gy + 0x3f41c580 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_gx + 0x3f41c598 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_b + 0x3f41c5b0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_a + 0x3f41c5b4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_p + 0x3f41c5b8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T + 0x3f41c5d0 0x300 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_31_Y + 0x3f41c8d0 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_31_X + 0x3f41c918 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_30_Y + 0x3f41c960 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_30_X + 0x3f41c9a8 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_29_Y + 0x3f41c9f0 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_29_X + 0x3f41ca38 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_28_Y + 0x3f41ca80 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_28_X + 0x3f41cac8 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_27_Y + 0x3f41cb10 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_27_X + 0x3f41cb58 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_26_Y + 0x3f41cba0 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_26_X + 0x3f41cbe8 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_25_Y + 0x3f41cc30 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_25_X + 0x3f41cc78 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_24_Y + 0x3f41ccc0 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_24_X + 0x3f41cd08 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_23_Y + 0x3f41cd50 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_23_X + 0x3f41cd98 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_22_Y + 0x3f41cde0 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_22_X + 0x3f41ce28 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_21_Y + 0x3f41ce70 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_21_X + 0x3f41ceb8 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_20_Y + 0x3f41cf00 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_20_X + 0x3f41cf48 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_19_Y + 0x3f41cf90 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_19_X + 0x3f41cfd8 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_18_Y + 0x3f41d020 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_18_X + 0x3f41d068 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_17_Y + 0x3f41d0b0 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_17_X + 0x3f41d0f8 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_16_Y + 0x3f41d140 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_16_X + 0x3f41d188 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_15_Y + 0x3f41d1d0 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_15_X + 0x3f41d218 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_14_Y + 0x3f41d260 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_14_X + 0x3f41d2a8 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_13_Y + 0x3f41d2f0 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_13_X + 0x3f41d338 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_12_Y + 0x3f41d380 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_12_X + 0x3f41d3c8 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_11_Y + 0x3f41d410 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_11_X + 0x3f41d458 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_10_Y + 0x3f41d4a0 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_10_X + 0x3f41d4e8 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_9_Y + 0x3f41d530 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_9_X + 0x3f41d578 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_8_Y + 0x3f41d5c0 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_8_X + 0x3f41d608 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_7_Y + 0x3f41d650 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_7_X + 0x3f41d698 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_6_Y + 0x3f41d6e0 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_6_X + 0x3f41d728 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_5_Y + 0x3f41d770 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_5_X + 0x3f41d7b8 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_4_Y + 0x3f41d800 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_4_X + 0x3f41d848 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_3_Y + 0x3f41d890 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_3_X + 0x3f41d8d8 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_2_Y + 0x3f41d920 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_2_X + 0x3f41d968 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_1_Y + 0x3f41d9b0 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_1_X + 0x3f41d9f8 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_0_Y + 0x3f41da40 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_T_0_X + 0x3f41da88 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_n + 0x3f41dad0 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_gy + 0x3f41db14 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_gx + 0x3f41db58 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_b + 0x3f41db9c 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_p + 0x3f41dbe0 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T + 0x3f41dc24 0x300 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_31_Y + 0x3f41df24 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_31_X + 0x3f41df54 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_30_Y + 0x3f41df84 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_30_X + 0x3f41dfb4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_29_Y + 0x3f41dfe4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_29_X + 0x3f41e014 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_28_Y + 0x3f41e044 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_28_X + 0x3f41e074 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_27_Y + 0x3f41e0a4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_27_X + 0x3f41e0d4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_26_Y + 0x3f41e104 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_26_X + 0x3f41e134 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_25_Y + 0x3f41e164 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_25_X + 0x3f41e194 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_24_Y + 0x3f41e1c4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_24_X + 0x3f41e1f4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_23_Y + 0x3f41e224 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_23_X + 0x3f41e254 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_22_Y + 0x3f41e284 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_22_X + 0x3f41e2b4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_21_Y + 0x3f41e2e4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_21_X + 0x3f41e314 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_20_Y + 0x3f41e344 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_20_X + 0x3f41e374 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_19_Y + 0x3f41e3a4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_19_X + 0x3f41e3d4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_18_Y + 0x3f41e404 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_18_X + 0x3f41e434 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_17_Y + 0x3f41e464 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_17_X + 0x3f41e494 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_16_Y + 0x3f41e4c4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_16_X + 0x3f41e4f4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_15_Y + 0x3f41e524 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_15_X + 0x3f41e554 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_14_Y + 0x3f41e584 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_14_X + 0x3f41e5b4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_13_Y + 0x3f41e5e4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_13_X + 0x3f41e614 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_12_Y + 0x3f41e644 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_12_X + 0x3f41e674 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_11_Y + 0x3f41e6a4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_11_X + 0x3f41e6d4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_10_Y + 0x3f41e704 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_10_X + 0x3f41e734 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_9_Y + 0x3f41e764 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_9_X + 0x3f41e794 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_8_Y + 0x3f41e7c4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_8_X + 0x3f41e7f4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_7_Y + 0x3f41e824 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_7_X + 0x3f41e854 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_6_Y + 0x3f41e884 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_6_X + 0x3f41e8b4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_5_Y + 0x3f41e8e4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_5_X + 0x3f41e914 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_4_Y + 0x3f41e944 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_4_X + 0x3f41e974 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_3_Y + 0x3f41e9a4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_3_X + 0x3f41e9d4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_2_Y + 0x3f41ea04 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_2_X + 0x3f41ea34 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_1_Y + 0x3f41ea64 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_1_X + 0x3f41ea94 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_0_Y + 0x3f41eac4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_T_0_X + 0x3f41eaf4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_n + 0x3f41eb24 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_gy + 0x3f41eb54 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_gx + 0x3f41eb84 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_b + 0x3f41ebb4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_p + 0x3f41ebe4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T + 0x3f41ec14 0x180 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_15_Y + 0x3f41ed94 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_15_X + 0x3f41edb4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_14_Y + 0x3f41edd4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_14_X + 0x3f41edf4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_13_Y + 0x3f41ee14 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_13_X + 0x3f41ee34 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_12_Y + 0x3f41ee54 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_12_X + 0x3f41ee74 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_11_Y + 0x3f41ee94 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_11_X + 0x3f41eeb4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_10_Y + 0x3f41eed4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_10_X + 0x3f41eef4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_9_Y + 0x3f41ef14 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_9_X + 0x3f41ef34 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_8_Y + 0x3f41ef54 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_8_X + 0x3f41ef74 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_7_Y + 0x3f41ef94 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_7_X + 0x3f41efb4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_6_Y + 0x3f41efd4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_6_X + 0x3f41eff4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_5_Y + 0x3f41f014 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_5_X + 0x3f41f034 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_4_Y + 0x3f41f054 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_4_X + 0x3f41f074 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_3_Y + 0x3f41f094 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_3_X + 0x3f41f0b4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_2_Y + 0x3f41f0d4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_2_X + 0x3f41f0f4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_1_Y + 0x3f41f114 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_1_X + 0x3f41f134 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_0_Y + 0x3f41f154 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_T_0_X + 0x3f41f174 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_n + 0x3f41f194 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_gy + 0x3f41f1b4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_gx + 0x3f41f1d4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_b + 0x3f41f1f4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_p + 0x3f41f214 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T + 0x3f41f234 0x180 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_15_Y + 0x3f41f3b4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_15_X + 0x3f41f3d4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_14_Y + 0x3f41f3f4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_14_X + 0x3f41f414 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_13_Y + 0x3f41f434 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_13_X + 0x3f41f454 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_12_Y + 0x3f41f474 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_12_X + 0x3f41f494 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_11_Y + 0x3f41f4b4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_11_X + 0x3f41f4d4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_10_Y + 0x3f41f4f4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_10_X + 0x3f41f514 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_9_Y + 0x3f41f534 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_9_X + 0x3f41f554 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_8_Y + 0x3f41f574 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_8_X + 0x3f41f594 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_7_Y + 0x3f41f5b4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_7_X + 0x3f41f5d4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_6_Y + 0x3f41f5f4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_6_X + 0x3f41f614 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_5_Y + 0x3f41f634 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_5_X + 0x3f41f654 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_4_Y + 0x3f41f674 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_4_X + 0x3f41f694 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_3_Y + 0x3f41f6b4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_3_X + 0x3f41f6d4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_2_Y + 0x3f41f6f4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_2_X + 0x3f41f714 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_1_Y + 0x3f41f734 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_1_X + 0x3f41f754 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_0_Y + 0x3f41f774 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_T_0_X + 0x3f41f794 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_n + 0x3f41f7b4 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_gy + 0x3f41f7d0 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_gx + 0x3f41f7ec 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_b + 0x3f41f808 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_p + 0x3f41f824 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T + 0x3f41f844 0x180 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_15_Y + 0x3f41f9c4 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_15_X + 0x3f41f9dc 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_14_Y + 0x3f41f9f4 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_14_X + 0x3f41fa0c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_13_Y + 0x3f41fa24 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_13_X + 0x3f41fa3c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_12_Y + 0x3f41fa54 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_12_X + 0x3f41fa6c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_11_Y + 0x3f41fa84 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_11_X + 0x3f41fa9c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_10_Y + 0x3f41fab4 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_10_X + 0x3f41facc 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_9_Y + 0x3f41fae4 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_9_X + 0x3f41fafc 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_8_Y + 0x3f41fb14 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_8_X + 0x3f41fb2c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_7_Y + 0x3f41fb44 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_7_X + 0x3f41fb5c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_6_Y + 0x3f41fb74 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_6_X + 0x3f41fb8c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_5_Y + 0x3f41fba4 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_5_X + 0x3f41fbbc 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_4_Y + 0x3f41fbd4 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_4_X + 0x3f41fbec 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_3_Y + 0x3f41fc04 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_3_X + 0x3f41fc1c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_2_Y + 0x3f41fc34 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_2_X + 0x3f41fc4c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_1_Y + 0x3f41fc64 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_1_X + 0x3f41fc7c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_0_Y + 0x3f41fc94 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_T_0_X + 0x3f41fcac 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_n + 0x3f41fcc4 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_gy + 0x3f41fcdc 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_gx + 0x3f41fcf4 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_b + 0x3f41fd0c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_p + 0x3f41fd24 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.mpi_one + 0x3f41fd3c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.str1.1 + 0x3f41fd40 0xd15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_md_alg + 0x3f41fd40 0xdc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_ecp_grp_algid + 0x3f41fe1c 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata 0x3f41fe44 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + *fill* 0x3f41fe6d 0x3 + .rodata.oid_ecp_grp + 0x3f41fe70 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_pk_alg + 0x3f41ff60 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.str1.1 + 0x3f41ffb0 0xaa0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.mesh_parse_option + 0x3f41ffb0 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.esp_mesh_send + 0x3f41ffd0 0x44 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata 0x3f420014 0x6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$9815 + 0x3f42001a 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$9756 + 0x3f42002e 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$9746 + 0x3f420049 0x1d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$9737 + 0x3f420066 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$9661 + 0x3f420084 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$9629 + 0x3f420098 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$9561 + 0x3f4200a2 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$9542 + 0x3f4200b0 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$9463 + 0x3f4200c3 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$9453 + 0x3f4200d1 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.str1.1 + 0x3f4200e0 0xf5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .rodata.esp_mesh_nvs_operate + 0x3f4200e0 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .rodata.CSWTCH$12 + 0x3f4200f8 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .rodata.str1.1 + 0x3f420114 0x20c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .rodata.mesh_nwk_io_process + 0x3f420114 0x34 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .rodata.__func__$9433 + 0x3f420148 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .rodata.__func__$9379 + 0x3f420160 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .rodata.str1.1 + 0x3f420174 0x8bc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .rodata.__func__$9479 + 0x3f420174 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .rodata.__func__$9465 + 0x3f42018b 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .rodata.__func__$9447 + 0x3f4201a2 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .rodata.__func__$9415 + 0x3f4201c0 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .rodata.__func__$9381 + 0x3f4201da 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .rodata.str1.1 + 0x3f4201f2 0x69c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + *fill* 0x3f4201f2 0x2 + .rodata 0x3f4201f4 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .rodata.__func__$9448 + 0x3f420200 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .rodata.__func__$9437 + 0x3f42021a 0x22 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .rodata.__func__$9418 + 0x3f42023c 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .rodata.str1.1 + 0x3f42025b 0x2b64 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + *fill* 0x3f42025b 0x1 + .rodata.mesh_wifi_event_cb + 0x3f42025c 0xec /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.mesh_nwk_task_main + 0x3f420348 0xb0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10891 + 0x3f4203f8 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10796 + 0x3f420411 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10788 + 0x3f42042a 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10757 + 0x3f420440 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10744 + 0x3f42045c 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10728 + 0x3f420470 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10455 + 0x3f420487 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10451 + 0x3f42049c 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10439 + 0x3f4204af 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10414 + 0x3f4204c2 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10395 + 0x3f4204d4 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10373 + 0x3f4204ec 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10366 + 0x3f4204fa 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10297 + 0x3f420515 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10161 + 0x3f420528 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10156 + 0x3f420540 0x1d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10142 + 0x3f42055d 0x1d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10119 + 0x3f42057a 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10108 + 0x3f420592 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10094 + 0x3f4205b1 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$10033 + 0x3f4205cf 0x21 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$9894 + 0x3f4205f0 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$9862 + 0x3f420608 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$9854 + 0x3f420627 0x22 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$9849 + 0x3f420649 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$9837 + 0x3f420663 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$9828 + 0x3f42067b 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$9803 + 0x3f420693 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$9797 + 0x3f4206af 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$9775 + 0x3f4206c7 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$9723 + 0x3f4206de 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$9711 + 0x3f4206f8 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$9667 + 0x3f420714 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$9647 + 0x3f42072b 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.ieee80211_mesh_quick_set + 0x3f420744 0x64 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.ieee80211_mesh_quick_get + 0x3f4207a8 0x64 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.str1.1 + 0x3f42080c 0x342 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata 0x3f42080c 0x6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + *fill* 0x3f420812 0x2 + .rodata.CSWTCH$377 + 0x3f420814 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.__func__$10752 + 0x3f420830 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.__func__$10329 + 0x3f42084b 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.__func__$9957 + 0x3f420866 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.__func__$9951 + 0x3f420886 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.__func__$9778 + 0x3f4208a4 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.str1.1 + 0x3f4208b3 0xd03 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$9711 + 0x3f4208b3 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$9698 + 0x3f4208ce 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$9669 + 0x3f4208ed 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$9664 + 0x3f420910 0x25 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$9639 + 0x3f420935 0x27 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$9624 + 0x3f42095c 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$9535 + 0x3f420978 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$9517 + 0x3f420993 0x1d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$9477 + 0x3f4209b0 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$9404 + 0x3f4209c8 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$9387 + 0x3f4209e8 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$9379 + 0x3f4209ff 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.str1.1 + 0x3f420a15 0x141a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + *fill* 0x3f420a15 0x3 + .rodata.mesh_check_tid_mbox_full + 0x3f420a18 0x38 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.esp_mesh_tx_task_init + 0x3f420a50 0x38 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9924 + 0x3f420a88 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9916 + 0x3f420a9f 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9879 + 0x3f420aba 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9821 + 0x3f420ace 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9768 + 0x3f420ae1 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9750 + 0x3f420aff 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9742 + 0x3f420b16 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9734 + 0x3f420b2e 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9716 + 0x3f420b47 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9698 + 0x3f420b59 0xd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9650 + 0x3f420b66 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9643 + 0x3f420b75 0x1d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9632 + 0x3f420b92 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9619 + 0x3f420ba9 0x1d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9609 + 0x3f420bc6 0x24 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9571 + 0x3f420bea 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9555 + 0x3f420c05 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9522 + 0x3f420c17 0xb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9510 + 0x3f420c22 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9487 + 0x3f420c3c 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9450 + 0x3f420c55 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$9419 + 0x3f420c6a 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.str1.1 + 0x3f420c89 0x5a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .rodata.__func__$9410 + 0x3f420c89 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .rodata.str1.1 + 0x3f420c9f 0xdd3 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + *fill* 0x3f420c9f 0x1 + .rodata.wifi_event_id2str + 0x3f420ca0 0xf0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$57 + 0x3f420d90 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$55 + 0x3f420d9c 0x28 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$53 + 0x3f420dc4 0x38 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$49 + 0x3f420dfc 0x10 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$47 + 0x3f420e0c 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$45 + 0x3f420e18 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$40 + 0x3f420e34 0x28 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$38 + 0x3f420e5c 0x44 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$36 + 0x3f420ea0 0xc0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.__func__$9378 + 0x3f420f60 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.__func__$9372 + 0x3f420f76 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.str1.1 + 0x3f420f8e 0x2f7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .rodata.__func__$9436 + 0x3f420f8e 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .rodata.__func__$9423 + 0x3f420fa2 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .rodata.__func__$9395 + 0x3f420fb8 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .rodata.str1.1 + 0x3f420fca 0x2f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .rodata.__func__$9443 + 0x3f420fca 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .rodata.__func__$9371 + 0x3f420fde 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .rodata.str1.1 + 0x3f420ff5 0x25a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.str1.1 + 0x3f420ff5 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + *fill* 0x3f420ff5 0x3 + .rodata.wifi_mode_set + 0x3f420ff8 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .rodata.ieee80211_ethbroadcast + 0x3f42100c 0x6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x3f42100c ieee80211_ethbroadcast + .rodata.str1.1 + 0x3f421012 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .rodata.str1.1 + 0x3f421012 0x92 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .rodata.str1.1 + 0x3f421012 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata.str1.1 + 0x3f421012 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata 0x3f421012 0x10 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata.str1.1 + 0x3f421022 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .rodata.str1.1 + 0x3f421022 0xac /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + *fill* 0x3f421022 0x2 + .rodata 0x3f421024 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata.CSWTCH$55 + 0x3f421040 0x60 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata.str1.1 + 0x3f4210a0 0x2b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata.wifi_set_mode_process + 0x3f4210a0 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata.CSWTCH$142 + 0x3f4210b4 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata.__FUNCTION__$12598 + 0x3f4210b8 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata.str1.1 + 0x3f4210ce 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .rodata 0x3f4210ce 0x6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .rodata.str1.1 + 0x3f4210d4 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata.str1.1 + 0x3f4210d4 0x2ba /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata.wifi_nvs_set + 0x3f4210d4 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata.wifi_nvs_compare_cfg_diff + 0x3f4210f4 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata.wifi_nvs_load + 0x3f421114 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata.str1.1 + 0x3f421134 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata 0x3f421134 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata.info$12962 + 0x3f421142 0x9 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata.s_ac_param$12967 + 0x3f42114b 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata.param$12968 + 0x3f421167 0x9 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata.str1.1 + 0x3f421170 0x2b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .rodata.ieee80211_11g_table + 0x3f421170 0xd4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .rodata.ieee80211_11b_table + 0x3f421244 0xd4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .rodata.ieee80211_get_chan_info + 0x3f421318 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + .rodata.ieee80211_is_40mhz_valid_bw + 0x3f421334 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + .rodata.str1.1 + 0x3f421350 0x3 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .rodata.str1.1 + 0x3f421350 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata 0x3f421350 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata.str1.1 + 0x3f421354 0x59 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata.ieee80211_sta_new_state + 0x3f421354 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata.state_desc$11881 + 0x3f42136c 0x24 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata.str1.1 + 0x3f421390 0x4e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .rodata.wifi_set_rx_policy + 0x3f421390 0x38 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .rodata.CSWTCH$163 + 0x3f4213c8 0x6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .rodata.__FUNCTION__$10905 + 0x3f4213ce 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10926 + 0x3f4213e4 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10853 + 0x3f4213fc 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10859 + 0x3f421414 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10865 + 0x3f42142e 0x1d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10871 + 0x3f42144b 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10877 + 0x3f421459 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10885 + 0x3f42146e 0x11 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10893 + 0x3f42147f 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10899 + 0x3f421493 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10914 + 0x3f4214a7 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10920 + 0x3f4214b6 0x10 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10932 + 0x3f4214c6 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10938 + 0x3f4214e1 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10944 + 0x3f421500 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10956 + 0x3f42151a 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$10950 + 0x3f421538 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.str1.1 + 0x3f421552 0x9 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .rodata.str1.1 + 0x3f421552 0xbd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata.CSWTCH$155 + 0x3f421552 0xb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + *fill* 0x3f42155d 0x3 + .rodata.CSWTCH$127 + 0x3f421560 0x40 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata.str1.1 + 0x3f4215a0 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .rodata.str1.1 + 0x3f4215a0 0x9 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + .rodata 0x3f4215a0 0x48 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata.str1.1 + 0x3f4215e8 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata 0x3f4215e8 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$10654 + 0x3f421600 0xb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$10628 + 0x3f42160b 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$10581 + 0x3f421617 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$10554 + 0x3f42162a 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$10535 + 0x3f421640 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$10524 + 0x3f421656 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$10505 + 0x3f42166c 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$10473 + 0x3f421685 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$10453 + 0x3f42169f 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$10408 + 0x3f4216b5 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$10377 + 0x3f4216ca 0x1d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$10341 + 0x3f4216e7 0x21 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$10308 + 0x3f421708 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.str1.1 + 0x3f42171d 0x5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata.str1.1 + 0x3f42171d 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + *fill* 0x3f42171d 0x3 + .rodata 0x3f421720 0x6c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata.CSWTCH$295 + 0x3f42178c 0x4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata.our_controls + 0x3f421790 0x158 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .rodata.rcUpdateAMPDUParam + 0x3f4218e8 0x40 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata.rcUpdatePhyMode + 0x3f421928 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata.str1.1 + 0x3f421944 0x6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata.rssi_margin + 0x3f421944 0x80 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata.TRC_AMPDU_PER_DOWN_THRESHOLD + 0x3f4219c4 0x34 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata.TRC_AMPDU_PER_UP_THRESHOLD + 0x3f4219f8 0x34 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata.CSWTCH$94 + 0x3f421a2c 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata.CSWTCH$86 + 0x3f421a4c 0x2b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata.CSWTCH$84 + 0x3f421a77 0x2b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata.__FUNCTION__$12110 + 0x3f421aa2 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata.__FUNCTION__$12022 + 0x3f421ab4 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata.__FUNCTION__$12009 + 0x3f421abe 0x10 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata.str1.1 + 0x3f421ace 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata.__FUNCTION__$10906 + 0x3f421ace 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata.__FUNCTION__$10859 + 0x3f421ae2 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata.__FUNCTION__$10715 + 0x3f421af6 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata.__FUNCTION__$10703 + 0x3f421b0e 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata 0x3f421b24 0x6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .rodata.prvGetItemByteBuf.str1.1 + 0x3f421b2a 0x14c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvCheckItemFitsByteBuffer.str1.1 + 0x3f421b2a 0x66 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvAcquireItemNoSplit.str1.1 + 0x3f421b2a 0x63 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvReceiveGeneric.str1.1 + 0x3f421b2a 0x35 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferSendAcquire.str1.1 + 0x3f421b2a 0x7d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferSendComplete.str1.1 + 0x3f421b2a 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferSend.str1.1 + 0x3f421b2a 0x28 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferReceive.str1.1 + 0x3f421b2a 0x1b esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$11 + 0x3f421b2a 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$18 + 0x3f421b40 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$19 + 0x3f421b52 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$21 + 0x3f421b65 0x10 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$28 + 0x3f421b75 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x3f421b8b 0x1 + .rodata.g_spi_lock_main_flash_dev + 0x3f421b8c 0x4 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + 0x3f421b8c g_spi_lock_main_flash_dev + .rodata.ensure_partitions_loaded$part$0.str1.1 + 0x3f421b90 0xad esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.esp_partition_unload_all.str1.1 + 0x3f421b90 0x4a esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.esp_partition_next.str1.1 + 0x3f421b90 0x3 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.esp_partition_get.str1.1 + 0x3f421b90 0x11 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.__func__$2 + 0x3f421b90 0x12 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.__func__$3 + 0x3f421ba2 0x13 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.esp_partition_write.str1.1 + 0x3f421bb5 0x44 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .rodata.__func__$0 + 0x3f421bb5 0x13 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .rodata.__func__$1 + 0x3f421bc8 0x1a esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .rodata.__func__$2 + 0x3f421be2 0x18 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .rodata.__func__$3 + 0x3f421bfa 0x17 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .rodata.__func__$4 + 0x3f421c11 0x14 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .rodata.__func__$5 + 0x3f421c25 0x13 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .rodata.esp_ota_get_running_partition.str1.1 + 0x3f421c38 0x5c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.__func__$1 + 0x3f421c38 0x1e esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.clk_hal_lp_slow_get_freq_hz.str1.1 + 0x3f421c56 0x2f esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .rodata.clk_hal_cpu_get_freq_hz.str1.1 + 0x3f421c56 0x33 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .rodata.__func__$0 + 0x3f421c56 0x1c esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .rodata.__func__$1 + 0x3f421c72 0x1e esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .rodata.mpi_hal_read_result_hw_op.str1.1 + 0x3f421c90 0x3e esp-idf/hal/libhal.a(mpi_hal.c.obj) + .rodata.__func__$0 + 0x3f421c90 0x1b esp-idf/hal/libhal.a(mpi_hal.c.obj) + *fill* 0x3f421cab 0x1 + .rodata.MPI_LL_OPERATIONS + 0x3f421cac 0x4 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + 0x3f421cac MPI_LL_OPERATIONS + .rodata.MPI_LL_BLOCK_BASES + 0x3f421cb0 0x10 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + 0x3f421cb0 MPI_LL_BLOCK_BASES + .rodata.esp_fill_random.str1.1 + 0x3f421cc0 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .rodata.__func__$0 + 0x3f421cc0 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .rodata.get_idx.str1.1 + 0x3f421cd0 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .rodata.get_efuse_mac_custom.str1.1 + 0x3f421cd0 0xb2 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .rodata.get_efuse_factory_mac.str1.1 + 0x3f421cd0 0xad esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .rodata.get_mac_addr_from_mac_table.str1.1 + 0x3f421cd0 0x46 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .rodata.esp_iface_mac_addr_set.str1.1 + 0x3f421cd0 0xa9 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .rodata.esp_read_mac.str1.1 + 0x3f421cd0 0x99 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .rodata.__func__$0 + 0x3f421cd0 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .rodata.xEventGroupCreateStatic.str1.1 + 0x3f421ce6 0x6c esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.xEventGroupWaitBits.str1.1 + 0x3f421ce6 0x9c esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.xEventGroupClearBits.str1.1 + 0x3f421ce6 0x26 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.xEventGroupSetBits.str1.1 + 0x3f421ce6 0x24 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.vEventGroupDelete.str1.1 + 0x3f421ce6 0x72 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.__func__$1 + 0x3f421ce6 0x12 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.__func__$2 + 0x3f421cf8 0x13 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.__func__$3 + 0x3f421d0b 0x15 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.__func__$4 + 0x3f421d20 0x14 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.ets_timer_setfn.str1.1 + 0x3f421d34 0x84 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .rodata.str1.1 + 0x3f421d34 0xb2 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .rodata.__func__$2 + 0x3f421d34 0xe esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .rodata.__func__$1 + 0x3f421d42 0x11 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .rodata.__func__$0 + 0x3f421d53 0x10 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .rodata.lib_printf.str1.1 + 0x3f421d63 0x1b esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.phy_printf.str1.1 + 0x3f421d63 0x4 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.net80211_printf.str1.1 + 0x3f421d63 0x9 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.mesh_printf.str1.1 + 0x3f421d63 0x5 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .rodata.esp_phy_load_cal_data_from_nvs.str1.1 + 0x3f421d63 0x19f esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .rodata.esp_phy_store_cal_data_to_nvs.str1.1 + 0x3f421d63 0x108 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .rodata.esp_phy_load_cal_and_init.str1.1 + 0x3f421d63 0x15f esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .rodata.__func__$8 + 0x3f421d63 0x1a esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .rodata.__func__$6 + 0x3f421d7d 0x1d esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .rodata.__func__$4 + 0x3f421d9a 0x1e esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .rodata.__func__$3 + 0x3f421db8 0x1f esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .rodata.phy_init_data + 0x3f421dd7 0x80 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .rodata.alloc_socket.str1.1 + 0x3f421e57 0x4b esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_unlink_select_cb.str1.1 + 0x3f421e57 0x30 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_recv_tcp.str1.1 + 0x3f421e57 0x71 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_sock_make_addr$isra$0.str1.1 + 0x3f421e57 0x1d esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_recvfrom_udp_raw$constprop$0.str1.1 + 0x3f421e57 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.free_socket.str1.1 + 0x3f421e57 0x12 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.done_socket.str1.1 + 0x3f421e57 0xd esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.tryget_socket_unconn.str1.1 + 0x3f421e57 0x13 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_selscan.str1.1 + 0x3f421e57 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_pollscan.str1.1 + 0x3f421e57 0x19 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_close.str1.1 + 0x3f421e57 0x17 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$7 + 0x3f421e57 0xd esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$8 + 0x3f421e64 0x16 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$9 + 0x3f421e7a 0x15 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$10 + 0x3f421e8f 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$12 + 0x3f421e9b 0x16 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$13 + 0x3f421eb1 0x14 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$14 + 0x3f421ec5 0xe esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$15 + 0x3f421ed3 0xb esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$16 + 0x3f421ede 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$17 + 0x3f421eea 0x13 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$19 + 0x3f421efd 0xe esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.tcpip_thread.str1.1 + 0x3f421f0b 0x48 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.tcpip_inpkt.str1.1 + 0x3f421f0b 0xd esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.tcpip_send_msg_wait_sem.str1.1 + 0x3f421f0b 0x1a esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.tcpip_init.str1.1 + 0x3f421f0b 0x27 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.__func__$0 + 0x3f421f0b 0x18 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.__func__$1 + 0x3f421f23 0xd esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.__func__$2 + 0x3f421f30 0xb esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.__func__$5 + 0x3f421f3b 0xf esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.__func__$6 + 0x3f421f4a 0x18 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.__func__$7 + 0x3f421f62 0x13 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.__func__$9 + 0x3f421f75 0xc esp-idf/lwip/liblwip.a(tcpip.c.obj) + *fill* 0x3f421f81 0x3 + .rodata.ip_addr_any_type + 0x3f421f84 0x18 esp-idf/lwip/liblwip.a(ip.c.obj) + 0x3f421f84 ip_addr_any_type + .rodata.mem_malloc.str1.1 + 0x3f421f9c 0x4d esp-idf/lwip/liblwip.a(mem.c.obj) + .rodata.mem_free.str1.1 + 0x3f421f9c 0x25 esp-idf/lwip/liblwip.a(mem.c.obj) + .rodata.__func__$0 + 0x3f421f9c 0x9 esp-idf/lwip/liblwip.a(mem.c.obj) + .rodata.__func__$1 + 0x3f421fa5 0xb esp-idf/lwip/liblwip.a(mem.c.obj) + .rodata.do_memp_free_pool$isra$0.str1.1 + 0x3f421fb0 0x4a esp-idf/lwip/liblwip.a(memp.c.obj) + .rodata.do_memp_malloc_pool$isra$0.str1.1 + 0x3f421fb0 0x23 esp-idf/lwip/liblwip.a(memp.c.obj) + .rodata.__func__$0 + 0x3f421fb0 0x12 esp-idf/lwip/liblwip.a(memp.c.obj) + .rodata.__func__$2 + 0x3f421fc2 0x14 esp-idf/lwip/liblwip.a(memp.c.obj) + *fill* 0x3f421fd6 0x2 + .rodata.memp_pools + 0x3f421fd8 0x48 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3f421fd8 memp_pools + .rodata.memp_PBUF_POOL + 0x3f422020 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3f422020 memp_PBUF_POOL + .rodata.memp_PBUF + 0x3f422022 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3f422022 memp_PBUF + .rodata.memp_MLD6_GROUP + 0x3f422024 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3f422024 memp_MLD6_GROUP + .rodata.memp_ND6_QUEUE + 0x3f422026 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3f422026 memp_ND6_QUEUE + .rodata.memp_NETDB + 0x3f422028 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3f422028 memp_NETDB + .rodata.memp_SYS_TIMEOUT + 0x3f42202a 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3f42202a memp_SYS_TIMEOUT + .rodata.memp_IGMP_GROUP + 0x3f42202c 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3f42202c memp_IGMP_GROUP + .rodata.memp_ARP_QUEUE + 0x3f42202e 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3f42202e memp_ARP_QUEUE + .rodata.memp_TCPIP_MSG_INPKT + 0x3f422030 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3f422030 memp_TCPIP_MSG_INPKT + .rodata.memp_TCPIP_MSG_API + 0x3f422032 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3f422032 memp_TCPIP_MSG_API + .rodata.memp_NETCONN + 0x3f422034 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3f422034 memp_NETCONN + .rodata.memp_NETBUF + 0x3f422036 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3f422036 memp_NETBUF + .rodata.memp_FRAG_PBUF + 0x3f422038 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3f422038 memp_FRAG_PBUF + .rodata.memp_TCP_SEG + 0x3f42203a 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3f42203a memp_TCP_SEG + .rodata.memp_TCP_PCB_LISTEN + 0x3f42203c 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3f42203c memp_TCP_PCB_LISTEN + .rodata.memp_TCP_PCB + 0x3f42203e 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3f42203e memp_TCP_PCB + .rodata.memp_UDP_PCB + 0x3f422040 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3f422040 memp_UDP_PCB + .rodata.memp_RAW_PCB + 0x3f422042 0x2 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x3f422042 memp_RAW_PCB + .rodata.netif_issue_reports.str1.1 + 0x3f422044 0x4e esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_poll.str1.1 + 0x3f422044 0x91 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_loopif_init.str1.1 + 0x3f422044 0x21 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_loop_output.str1.1 + 0x3f422044 0x6d esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_get_ip6_addr_match.str1.1 + 0x3f422044 0x52 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_add_ext_callback.str1.1 + 0x3f422044 0x2c esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_invoke_ext_callback.str1.1 + 0x3f422044 0x16 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_add.str1.1 + 0x3f422044 0x42 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_ip6_addr_set_parts.str1.1 + 0x3f422044 0x1c esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_ip6_addr_set.str1.1 + 0x3f422044 0x44 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$0 + 0x3f422044 0x1a esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$1 + 0x3f42205e 0x1a esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$2 + 0x3f422078 0x17 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$5 + 0x3f42208f 0x19 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$6 + 0x3f4220a8 0x19 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$7 + 0x3f4220c1 0x19 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$8 + 0x3f4220da 0x13 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$9 + 0x3f4220ed 0xb esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$10 + 0x3f4220f8 0x12 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$13 + 0x3f42210a 0x14 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$15 + 0x3f42211e 0xa esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$17 + 0x3f422128 0x12 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.pbuf_add_header_impl.str1.1 + 0x3f42213a 0x34 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.pbuf_alloc_reference.str1.1 + 0x3f42213a 0x12 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.pbuf_free.str1.1 + 0x3f42213a 0x49 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.pbuf_alloc.str1.1 + 0x3f42213a 0x4f esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.pbuf_realloc.str1.1 + 0x3f42213a 0x4c esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.pbuf_ref.str1.1 + 0x3f42213a 0x12 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.pbuf_cat.str1.1 + 0x3f42213a 0x2d esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.pbuf_copy_partial_pbuf.str1.1 + 0x3f42213a 0x32 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.pbuf_take.str1.1 + 0x3f42213a 0x2e esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.pbuf_take_at.str1.1 + 0x3f42213a 0x17 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.pbuf_clone.str1.1 + 0x3f42213a 0x11 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.__func__$0 + 0x3f42213a 0xb esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.__func__$1 + 0x3f422145 0xd esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.__func__$2 + 0x3f422152 0xa esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.__func__$3 + 0x3f42215c 0x17 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.__func__$5 + 0x3f422173 0x9 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.__func__$6 + 0x3f42217c 0x9 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.__func__$7 + 0x3f422185 0xa esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.__func__$8 + 0x3f42218f 0x13 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.__func__$9 + 0x3f4221a2 0x15 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.__func__$10 + 0x3f4221b7 0xd esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.__func__$11 + 0x3f4221c4 0x15 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.__func__$12 + 0x3f4221d9 0xb esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.raw_input.str1.1 + 0x3f4221e4 0x72 esp-idf/lwip/liblwip.a(raw.c.obj) + .rodata.raw_sendto_if_src.str1.1 + 0x3f4221e4 0x48 esp-idf/lwip/liblwip.a(raw.c.obj) + .rodata.__func__$0 + 0x3f4221e4 0x12 esp-idf/lwip/liblwip.a(raw.c.obj) + .rodata.__func__$1 + 0x3f4221f6 0xa esp-idf/lwip/liblwip.a(raw.c.obj) + .rodata.tcp_free.str1.1 + 0x3f422200 0x3a esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_backlog_delayed.str1.1 + 0x3f422200 0x21 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_update_rcv_ann_wnd.str1.1 + 0x3f422200 0x3e esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_recved.str1.1 + 0x3f422200 0x26 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_seg_copy.str1.1 + 0x3f422200 0x1a esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_recv.str1.1 + 0x3f422200 0x27 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_sent.str1.1 + 0x3f422200 0x27 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_err.str1.1 + 0x3f422200 0x26 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_poll.str1.1 + 0x3f422200 0x1e esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_next_iss.str1.1 + 0x3f422200 0x1a esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_eff_send_mss_netif.str1.1 + 0x3f422200 0x27 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_pcb_remove.str1.1 + 0x3f422200 0x84 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_abandon.str1.1 + 0x3f422200 0x31 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_netif_ip_addr_changed_pcblist.str1.1 + 0x3f422200 0x34 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_close_shutdown.str1.1 + 0x3f422200 0x52 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_slowtmr.str1.1 + 0x3f422200 0x1b9 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$0 + 0x3f422200 0x22 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$1 + 0x3f422222 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$2 + 0x3f422239 0xd esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$3 + 0x3f422246 0xf esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$4 + 0x3f422255 0x9 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$5 + 0x3f42225e 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$6 + 0x3f422266 0x9 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$7 + 0x3f42226f 0x9 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$9 + 0x3f422278 0xd esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$10 + 0x3f422285 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$11 + 0x3f422291 0xb esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$12 + 0x3f42229c 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$15 + 0x3f4222b3 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$16 + 0x3f4222bf 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$17 + 0x3f4222d6 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$20 + 0x3f4222e6 0x13 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$21 + 0x3f4222f9 0x15 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$23 + 0x3f42230e 0x9 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x3f422317 0x1 + .rodata.tcp_pcb_lists + 0x3f422318 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x3f422318 tcp_pcb_lists + .rodata.tcp_persist_backoff + 0x3f422328 0x7 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_backoff + 0x3f42232f 0xd esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_oos_insert_segment.str1.1 + 0x3f42233c 0x51 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.tcp_parseopt.str1.1 + 0x3f42233c 0x1a esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.tcp_free_acked_segments$isra$0.str1.1 + 0x3f42233c 0x48 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.tcp_receive.str1.1 + 0x3f42233c 0xfe esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.tcp_input.str1.1 + 0x3f42233c 0x1ce esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.__func__$1 + 0x3f42233c 0x17 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.__func__$2 + 0x3f422353 0x18 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.__func__$3 + 0x3f42236b 0xc esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.__func__$4 + 0x3f422377 0xc esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.__func__$5 + 0x3f422383 0xd esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.__func__$8 + 0x3f422390 0xa esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.tcp_create_segment.str1.1 + 0x3f42239a 0x83 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_output_alloc_header_common.str1.1 + 0x3f42239a 0x2e esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_output_control_segment.str1.1 + 0x3f42239a 0x29 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_output_segment_busy.str1.1 + 0x3f42239a 0x25 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_output_alloc_header$constprop$0.str1.1 + 0x3f42239a 0x25 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_output_fill_options$constprop$0.str1.1 + 0x3f42239a 0x26 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_write.str1.1 + 0x3f42239a 0x133 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_split_unsent_seg.str1.1 + 0x3f42239a 0x51 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_enqueue_flags.str1.1 + 0x3f42239a 0x117 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_send_fin.str1.1 + 0x3f42239a 0x1a esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_rexmit_rto_prepare.str1.1 + 0x3f42239a 0x24 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_rexmit.str1.1 + 0x3f42239a 0x18 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_rexmit_fast.str1.1 + 0x3f42239a 0x1d esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_rst.str1.1 + 0x3f42239a 0x35 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_send_empty_ack.str1.1 + 0x3f42239a 0x20 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_output.str1.1 + 0x3f42239a 0x68 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_rexmit_rto_commit.str1.1 + 0x3f42239a 0x23 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_rexmit_rto.str1.1 + 0x3f42239a 0x1c esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_keepalive.str1.1 + 0x3f42239a 0x1b esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_zero_window_probe.str1.1 + 0x3f42239a 0x23 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$0 + 0x3f42239a 0x16 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$1 + 0x3f4223b0 0xe esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$2 + 0x3f4223be 0x18 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$3 + 0x3f4223d6 0x13 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$4 + 0x3f4223e9 0x1b esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$5 + 0x3f422404 0x18 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$6 + 0x3f42241c 0x1f esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$7 + 0x3f42243b 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$8 + 0x3f422443 0x10 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$9 + 0x3f422453 0xb esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$10 + 0x3f42245e 0xf esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$11 + 0x3f42246d 0x16 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$12 + 0x3f422483 0x17 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$13 + 0x3f42249a 0x18 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$14 + 0x3f4224b2 0x13 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$15 + 0x3f4224c5 0xb esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$16 + 0x3f4224d0 0x12 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$17 + 0x3f4224e2 0xd esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$18 + 0x3f4224ef 0x15 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$19 + 0x3f422504 0x13 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$20 + 0x3f422517 0x12 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$21 + 0x3f422529 0x11 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$22 + 0x3f42253a 0xa esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.sys_timeout_abs.str1.1 + 0x3f422544 0x6b esp-idf/lwip/liblwip.a(timeouts.c.obj) + .rodata.sys_timeout.str1.1 + 0x3f422544 0x36 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .rodata.__func__$1 + 0x3f422544 0xc esp-idf/lwip/liblwip.a(timeouts.c.obj) + .rodata.__func__$2 + 0x3f422550 0x10 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .rodata.lwip_cyclic_timers + 0x3f422560 0x20 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x3f422560 lwip_cyclic_timers + .rodata.udp_input_local_match.str1.1 + 0x3f422580 0x71 esp-idf/lwip/liblwip.a(udp.c.obj) + .rodata.udp_input.str1.1 + 0x3f422580 0x4c esp-idf/lwip/liblwip.a(udp.c.obj) + .rodata.udp_sendto_if_src.str1.1 + 0x3f422580 0x2e esp-idf/lwip/liblwip.a(udp.c.obj) + .rodata.__func__$0 + 0x3f422580 0x12 esp-idf/lwip/liblwip.a(udp.c.obj) + .rodata.__func__$1 + 0x3f422592 0x16 esp-idf/lwip/liblwip.a(udp.c.obj) + .rodata.__func__$2 + 0x3f4225a8 0xa esp-idf/lwip/liblwip.a(udp.c.obj) + .rodata.dhcp_inc_pcb_refcount.str1.1 + 0x3f4225b2 0x54 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_option_short.str1.1 + 0x3f4225b2 0x3b esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_option.str1.1 + 0x3f4225b2 0x42 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_option_byte$part$0.str1.1 + 0x3f4225b2 0x35 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_option_long.str1.1 + 0x3f4225b2 0x3a esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_dec_pcb_refcount.str1.1 + 0x3f4225b2 0x24 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_create_msg.str1.1 + 0x3f4225b2 0x40 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_option_hostname$isra$0.str1.1 + 0x3f4225b2 0x1c esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_recv.str1.1 + 0x3f4225b2 0x2d esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_set_struct.str1.1 + 0x3f4225b2 0x3f esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_network_changed.str1.1 + 0x3f4225b2 0x14 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.__func__$0 + 0x3f4225b2 0x15 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.__func__$1 + 0x3f4225c7 0x11 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.__func__$2 + 0x3f4225d8 0xa esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.__func__$3 + 0x3f4225e2 0x16 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.__func__$4 + 0x3f4225f8 0x16 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.__func__$5 + 0x3f42260e 0xd esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.__func__$6 + 0x3f42261b 0x10 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.__func__$7 + 0x3f42262b 0x11 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.__func__$8 + 0x3f42263c 0x15 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.__func__$9 + 0x3f422651 0x11 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.__func__$10 + 0x3f422662 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.__func__$11 + 0x3f42266e 0x12 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.__func__$13 + 0x3f422680 0x10 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_discover_request_options + 0x3f422690 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.etharp_free_entry.str1.1 + 0x3f422694 0x3e esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.etharp_find_entry.str1.1 + 0x3f422694 0x40 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.etharp_update_arp_entry.str1.1 + 0x3f422694 0x24 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.etharp_raw.str1.1 + 0x3f422694 0x80 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.etharp_get_entry.str1.1 + 0x3f422694 0x1f esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.etharp_output_to_arp_index.str1.1 + 0x3f422694 0x30 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.etharp_query.str1.1 + 0x3f422694 0x28 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.etharp_output.str1.1 + 0x3f422694 0xa esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.__func__$0 + 0x3f422694 0xd esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.__func__$1 + 0x3f4226a1 0x1b esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.__func__$2 + 0x3f4226bc 0xe esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.__func__$3 + 0x3f4226ca 0xb esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.__func__$6 + 0x3f4226d5 0x12 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.__func__$7 + 0x3f4226e7 0x18 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.__func__$8 + 0x3f4226ff 0xe esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.icmp_input.str1.1 + 0x3f42270d 0x96 esp-idf/lwip/liblwip.a(icmp.c.obj) + .rodata.icmp_dest_unreach.str1.1 + 0x3f42270d 0x2c esp-idf/lwip/liblwip.a(icmp.c.obj) + .rodata.__func__$0 + 0x3f42270d 0x13 esp-idf/lwip/liblwip.a(icmp.c.obj) + .rodata.__func__$1 + 0x3f422720 0xb esp-idf/lwip/liblwip.a(icmp.c.obj) + .rodata.igmp_send.str1.1 + 0x3f42272b 0x69 esp-idf/lwip/liblwip.a(igmp.c.obj) + .rodata.igmp_lookup_group.str1.1 + 0x3f42272b 0x73 esp-idf/lwip/liblwip.a(igmp.c.obj) + .rodata.__func__$0 + 0x3f42272b 0xa esp-idf/lwip/liblwip.a(igmp.c.obj) + .rodata.__func__$1 + 0x3f422735 0x12 esp-idf/lwip/liblwip.a(igmp.c.obj) + .rodata.ip4_output_if_opt_src.str1.1 + 0x3f422747 0x67 esp-idf/lwip/liblwip.a(ip4.c.obj) + .rodata.__func__$1 + 0x3f422747 0x16 esp-idf/lwip/liblwip.a(ip4.c.obj) + *fill* 0x3f42275d 0x3 + .rodata.ip_addr_broadcast + 0x3f422760 0x18 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + 0x3f422760 ip_addr_broadcast + .rodata.ip_addr_any + 0x3f422778 0x18 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + 0x3f422778 ip_addr_any + .rodata.ip4_frag.str1.1 + 0x3f422790 0x53 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .rodata.__func__$0 + 0x3f422790 0x9 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .rodata.icmp6_send_response_with_addrs_and_netif.str1.1 + 0x3f422799 0x69 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .rodata.icmp6_send_response.str1.1 + 0x3f422799 0x24 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .rodata.__func__$1 + 0x3f422799 0x29 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .rodata.__func__$2 + 0x3f4227c2 0x14 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .rodata.ip6_output_if_src.str1.1 + 0x3f4227d6 0x68 esp-idf/lwip/liblwip.a(ip6.c.obj) + .rodata.__func__$1 + 0x3f4227d6 0x12 esp-idf/lwip/liblwip.a(ip6.c.obj) + .rodata.ip6_addr_any + 0x3f4227e8 0x18 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + 0x3f4227e8 ip6_addr_any + .rodata.ip6_frag.str1.1 + 0x3f422800 0x6a esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .rodata.__func__$0 + 0x3f422800 0x9 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .rodata.nd6_free_q.str1.1 + 0x3f422809 0x52 esp-idf/lwip/liblwip.a(nd6.c.obj) + .rodata.nd6_find_route.str1.1 + 0x3f422809 0x2b esp-idf/lwip/liblwip.a(nd6.c.obj) + .rodata.nd6_get_next_hop_addr_or_queue.str1.1 + 0x3f422809 0xe esp-idf/lwip/liblwip.a(nd6.c.obj) + .rodata.__func__$0 + 0x3f422809 0x17 esp-idf/lwip/liblwip.a(nd6.c.obj) + .rodata.__func__$2 + 0x3f422820 0xf esp-idf/lwip/liblwip.a(nd6.c.obj) + .rodata.__func__$4 + 0x3f42282f 0xb esp-idf/lwip/liblwip.a(nd6.c.obj) + .rodata.ethernet_output.str1.1 + 0x3f42283a 0x60 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .rodata.__func__$0 + 0x3f42283a 0x10 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .rodata.ethzero + 0x3f42284a 0x6 esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0x3f42284a ethzero + .rodata.ethbroadcast + 0x3f422850 0x6 esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0x3f422850 ethbroadcast + .rodata.sys_mutex_lock.str1.1 + 0x3f422856 0x47 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.sys_mutex_unlock.str1.1 + 0x3f422856 0x19 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.sys_sem_new.str1.1 + 0x3f422856 0x49 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.sys_sem_signal.str1.1 + 0x3f422856 0x22 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.sys_arch_sem_wait.str1.1 + 0x3f422856 0x18 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.sys_mbox_post.str1.1 + 0x3f422856 0x11 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.sys_arch_mbox_fetch.str1.1 + 0x3f422856 0x12 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.sys_mbox_free.str1.1 + 0x3f422856 0x16 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.sys_init.str1.1 + 0x3f422856 0x4e esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.sys_thread_sem_init.str1.1 + 0x3f422856 0x37 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.sys_thread_tcpip.str1.1 + 0x3f422856 0x2d esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.__func__$0 + 0x3f422856 0x11 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.__func__$2 + 0x3f422867 0xe esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.__func__$3 + 0x3f422875 0x17 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.__func__$4 + 0x3f42288c 0x14 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.__func__$6 + 0x3f4228a0 0xe esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.__func__$7 + 0x3f4228ae 0x12 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.__func__$8 + 0x3f4228c0 0xf esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.__func__$9 + 0x3f4228cf 0xc esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.__func__$10 + 0x3f4228db 0x11 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.__func__$11 + 0x3f4228ec 0xf esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.esp_vfs_lwip_sockets_register.str1.1 + 0x3f4228fb 0x70 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .rodata.__func__$0 + 0x3f4228fb 0x1e esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .rodata.dhcps_tmr.str1.1 + 0x3f422919 0x55 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .rodata.dhcps_start.str1.1 + 0x3f422919 0x70 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .rodata.__func__$0 + 0x3f422919 0x17 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .rodata.magic_cookie + 0x3f422930 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .rodata.netconn_new_with_proto_and_callback.str1.1 + 0x3f422934 0x83 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.netconn_write_vectors_partly.str1.1 + 0x3f422934 0x23 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.netconn_recv_data.str1.1 + 0x3f422934 0xc esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.__func__$1 + 0x3f422934 0x1d esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.__func__$3 + 0x3f422951 0x12 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.recv_udp.str1.1 + 0x3f422963 0x8b esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.err_tcp.str1.1 + 0x3f422963 0x6a esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.lwip_netconn_do_writemore$isra$0.str1.1 + 0x3f422963 0xc5 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.lwip_netconn_do_close_internal$isra$0.str1.1 + 0x3f422963 0x85 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.lwip_netconn_is_err_msg.str1.1 + 0x3f422963 0xc esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.netconn_free.str1.1 + 0x3f422963 0xa4 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.netconn_drain.str1.1 + 0x3f422963 0x16 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.lwip_netconn_do_delconn.str1.1 + 0x3f422963 0x4e esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.lwip_netconn_do_write.str1.1 + 0x3f422963 0x14 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.lwip_netconn_do_getaddr.str1.1 + 0x3f422963 0x15 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.lwip_netconn_do_close.str1.1 + 0x3f422963 0x24 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$0 + 0x3f422963 0x16 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$1 + 0x3f422979 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$2 + 0x3f422991 0x16 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$6 + 0x3f4229a7 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$7 + 0x3f4229bf 0xe esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$8 + 0x3f4229cd 0xd esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$11 + 0x3f4229da 0x9 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$12 + 0x3f4229e3 0x1f esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$13 + 0x3f422a02 0x1a esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$14 + 0x3f422a1c 0x9 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$15 + 0x3f422a25 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$16 + 0x3f422a3d 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$19 + 0x3f422a45 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.netconn_closed + 0x3f422a5d 0x1 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x3f422a5d netconn_closed + .rodata.netconn_reset + 0x3f422a5e 0x1 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x3f422a5e netconn_reset + .rodata.netconn_aborted + 0x3f422a5f 0x1 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x3f422a5f netconn_aborted + .rodata.netconn_deleted + 0x3f422a60 0x1 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x3f422a60 netconn_deleted + *fill* 0x3f422a61 0x3 + .rodata.err_to_errno_table + 0x3f422a64 0x44 esp-idf/lwip/liblwip.a(err.c.obj) + .rodata.netbuf_alloc.str1.1 + 0x3f422aa8 0x4f esp-idf/lwip/liblwip.a(netbuf.c.obj) + .rodata.__func__$0 + 0x3f422aa8 0xd esp-idf/lwip/liblwip.a(netbuf.c.obj) + .rodata.esp_netif_action_connected.str1.1 + 0x3f422ab5 0xb3 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .rodata.esp_netif_action_got_ip.str1.1 + 0x3f422ab5 0x4f esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .rodata.__FUNCTION__$0 + 0x3f422ab5 0x1b esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .rodata.str1.1 + 0x3f422ad0 0x2c esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .rodata._g_esp_netif_inherent_ap_config + 0x3f422ad0 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + 0x3f422ad0 _g_esp_netif_inherent_ap_config + .rodata._g_esp_netif_soft_ap_ip + 0x3f422af8 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + 0x3f422af8 _g_esp_netif_soft_ap_ip + .rodata._g_esp_netif_inherent_sta_config + 0x3f422b04 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + 0x3f422b04 _g_esp_netif_inherent_sta_config + .rodata.s_wifi_netif_config_sta + 0x3f422b2c 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .rodata.s_wifi_netif_config_ap + 0x3f422b34 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .rodata.wlanif_init.str1.1 + 0x3f422b3c 0x46 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .rodata.__func__$0 + 0x3f422b3c 0xc esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .rodata.wpa3_hostap_auth_init.str1.1 + 0x3f422b48 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .rodata.wpa_group_init_gmk_and_counter.str1.1 + 0x3f422b48 0xd esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .rodata.wpa_gtk_update$isra$0.str1.1 + 0x3f422b48 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .rodata.wpa_group_config_group_keys.str1.1 + 0x3f422b48 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .rodata.sm_WPA_PTK_PTKCALCNEGOTIATING_Enter$constprop$0.str1.1 + 0x3f422b48 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .rodata.handle_auth_sae.str1.1 + 0x3f422b48 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .rodata 0x3f422b48 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .rodata.sae_derive_pwe_ecc.str1.1 + 0x3f422b68 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .rodata.sae_derive_pt_ffc$isra$0.str1.1 + 0x3f422b68 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .rodata.sae_derive_pt.str1.1 + 0x3f422b68 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .rodata.sae_process_commit.str1.1 + 0x3f422b68 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .rodata.dragonfly_is_quadratic_residue_blind.str1.1 + 0x3f422b68 0x2 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .rodata.rsn_pmkid.str1.1 + 0x3f422b68 0x9 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .rodata 0x3f422b68 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .rodata.hmac_sha256_kdf.str1.1 + 0x3f422b74 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .rodata.dh_groups + 0x3f422b74 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .rodata.dh_group5_order + 0x3f422b94 0xc0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .rodata.dh_group5_prime + 0x3f422c54 0xc0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .rodata.dh_group5_generator + 0x3f422d14 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .rodata.wpa_supplicant_process_1_of_4.str1.1 + 0x3f422d15 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .rodata.owe_process_assoc_resp.str1.1 + 0x3f422d15 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .rodata.wpa_gen_wpa_ie.str1.1 + 0x3f422d15 0x5c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .rodata.__func__$1 + 0x3f422d15 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .rodata.d_check_char.str1.1 + 0x3f422d28 0x21 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .rodata.d_perm_table + 0x3f422d28 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .rodata.d_mult_table + 0x3f422d48 0x400 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .rodata.zero 0x3f423148 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .rodata.rsa_debug.str1.1 + 0x3f423158 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .rodata.eckey_debug.str1.1 + 0x3f423158 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .rodata.str1.1 + 0x3f423158 0x1b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .rodata.mbedtls_ecdsa_info + 0x3f423158 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x3f423158 mbedtls_ecdsa_info + .rodata.mbedtls_eckeydh_info + 0x3f423188 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x3f423188 mbedtls_eckeydh_info + .rodata.mbedtls_eckey_info + 0x3f4231b8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x3f4231b8 mbedtls_eckey_info + .rodata.mbedtls_rsa_info + 0x3f4231e8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x3f4231e8 mbedtls_rsa_info + .rodata.pk_use_ecparams.str1.1 + 0x3f423218 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .rodata.mbedtls_pk_parse_public_key.str1.1 + 0x3f423218 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .rodata.mbedtls_pem_read_buffer.str1.1 + 0x3f423218 0x6b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .rodata.str1.1 + 0x3f423218 0xd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .rodata 0x3f423218 0x20 /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + 0x3f423218 Xthal_intlevel + .rodata._ZSt7nothrow + 0x3f423238 0x1 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_handler.o) + 0x3f423238 _ZSt7nothrow + .rodata._ZTSSt9exception + 0x3f423239 0xd /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_op.o) + 0x3f423239 _ZTSSt9exception + *fill* 0x3f423246 0x2 + .rodata._ZTISt9exception + 0x3f423248 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_op.o) + 0x3f423248 _ZTISt9exception + .rodata._ZTSSt9bad_alloc + 0x3f423250 0xd /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_op.o) + 0x3f423250 _ZTSSt9bad_alloc + *fill* 0x3f42325d 0x3 + .rodata._ZTISt9bad_alloc + 0x3f423260 0xc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_op.o) + 0x3f423260 _ZTISt9bad_alloc + .rodata._ZTVN10__cxxabiv120__si_class_type_infoE + 0x3f42326c 0x2c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) + 0x3f42326c _ZTVN10__cxxabiv120__si_class_type_infoE + .rodata._ZNKSt9bad_alloc4whatEv.str1.1 + 0x3f423298 0xf /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(bad_alloc.o) + .rodata._ZTVSt9bad_alloc + 0x3f423298 0x14 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(bad_alloc.o) + 0x3f423298 _ZTVSt9bad_alloc + .rodata._ZTVN10__cxxabiv117__class_type_infoE + 0x3f4232ac 0x2c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) + 0x3f4232ac _ZTVN10__cxxabiv117__class_type_infoE + .rodata.str1.1 + 0x3f4232d8 0x2 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-puts.o) + .rodata 0x3f4232d8 0x240 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) + .rodata.str1.1 + 0x3f423518 0x34 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) + .rodata 0x3f423518 0x240 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + .rodata.str1.1 + 0x3f423758 0x34 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + .rodata 0x3f423758 0x240 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfiprintf.o) + .rodata.str1.1 + 0x3f423998 0x22 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfiprintf.o) + .rodata.str1.1 + 0x3f423998 0xb /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-locale.o) + .rodata 0x3f423998 0x16c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-locale.o) + 0x3f423998 __default_global_locale + .rodata.str1.1 + 0x3f423b04 0x8b /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) + .rodata.str1.1 + 0x3f423b04 0x7d /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) + *fill* 0x3f423b04 0x4 + .rodata 0x3f423b08 0x128 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) + 0x3f423b18 __mprec_tinytens + 0x3f423b40 __mprec_bigtens + 0x3f423b68 __mprec_tens + .rodata 0x3f423c30 0x418 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiprintf.o) + 0x3f423e70 __action_table + 0x3f423edc __state_table + 0x3f423f48 __chclass + .rodata.str1.1 + 0x3f424048 0x22 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiprintf.o) + *(.rodata_wlog_error .rodata_wlog_error.*) + .rodata_wlog_error.5 + 0x3f424048 0x34 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_error.2 + 0x3f42407c 0x24 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_error.41 + 0x3f4240a0 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.38 + 0x3f4240c3 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.37 + 0x3f4240e2 0x24 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.21 + 0x3f424106 0x21 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.18 + 0x3f424127 0x21 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.16 + 0x3f424148 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.11 + 0x3f424162 0x24 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.8 + 0x3f424186 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_error.9 + 0x3f4241a1 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .rodata_wlog_error.12 + 0x3f4241bd 0x2e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.11 + 0x3f4241eb 0x27 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.10 + 0x3f424212 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.9 + 0x3f424226 0xd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.8 + 0x3f424233 0x2e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.7 + 0x3f424261 0x27 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.6 + 0x3f424288 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.5 + 0x3f42429c 0xd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.4 + 0x3f4242a9 0x27 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.3 + 0x3f4242d0 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.2 + 0x3f4242d7 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .rodata_wlog_error.42 + 0x3f4242de 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.32 + 0x3f4242e5 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.28 + 0x3f4242fd 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.26 + 0x3f424304 0x1d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.25 + 0x3f424321 0x1d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.21 + 0x3f42433e 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.19 + 0x3f424345 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.17 + 0x3f42434c 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.13 + 0x3f424353 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.11 + 0x3f42435a 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.10 + 0x3f424361 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.9 + 0x3f424368 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_error.67 + 0x3f42436f 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.65 + 0x3f424376 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.63 + 0x3f42437d 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.62 + 0x3f424384 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.61 + 0x3f42438b 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.60 + 0x3f424392 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.59 + 0x3f424399 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.58 + 0x3f4243a0 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.57 + 0x3f4243a7 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.55 + 0x3f4243ae 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.54 + 0x3f4243b5 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.51 + 0x3f4243bc 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.46 + 0x3f4243c3 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.44 + 0x3f4243ca 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.43 + 0x3f4243d1 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.42 + 0x3f4243d8 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.41 + 0x3f4243df 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.38 + 0x3f4243e6 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.36 + 0x3f4243ed 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.35 + 0x3f4243f4 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.34 + 0x3f42440a 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.32 + 0x3f424411 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.30 + 0x3f424418 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.28 + 0x3f42441f 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.26 + 0x3f424426 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.25 + 0x3f42443d 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.24 + 0x3f424451 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.22 + 0x3f424458 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.17 + 0x3f42445f 0x48 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.16 + 0x3f4244a7 0x2b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.15 + 0x3f4244d2 0x28 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.14 + 0x3f4244fa 0x24 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.13 + 0x3f42451e 0x22 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.12 + 0x3f424540 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.11 + 0x3f424563 0x64 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.10 + 0x3f4245c7 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.9 + 0x3f4245ea 0x24 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.8 + 0x3f42460e 0x1d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.6 + 0x3f42462b 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.5 + 0x3f424632 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.3 + 0x3f424639 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_error.8 + 0x3f424640 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_error.7 + 0x3f424647 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_error.3 + 0x3f424667 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_error.125 + 0x3f42466e 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.112 + 0x3f424689 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.111 + 0x3f4246a0 0x2a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.110 + 0x3f4246ca 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.105 + 0x3f4246e8 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.104 + 0x3f424700 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.96 + 0x3f424707 0x10 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.66 + 0x3f424717 0x21 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.59 + 0x3f424738 0x2d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.58 + 0x3f424765 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.57 + 0x3f424778 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.56 + 0x3f42478e 0x2f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.55 + 0x3f4247bd 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.54 + 0x3f4247d2 0x29 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.53 + 0x3f4247fb 0x28 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.52 + 0x3f424823 0x29 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.51 + 0x3f42484c 0x28 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.50 + 0x3f424874 0x48 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.49 + 0x3f4248bc 0x46 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.48 + 0x3f424902 0x24 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.46 + 0x3f424926 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.45 + 0x3f42492d 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.43 + 0x3f424934 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.42 + 0x3f42493b 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.41 + 0x3f424942 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.39 + 0x3f424949 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.32 + 0x3f424950 0x4b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.29 + 0x3f42499b 0x2b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.28 + 0x3f4249c6 0x3e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.21 + 0x3f424a04 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.16 + 0x3f424a24 0x29 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.8 + 0x3f424a4d 0x10 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.7 + 0x3f424a5d 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.6 + 0x3f424a6c 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_error.19 + 0x3f424a7a 0x27 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .rodata_wlog_error.13 + 0x3f424aa1 0x35 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.9 + 0x3f424ad6 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_error.16 + 0x3f424add 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_error.5 + 0x3f424af6 0x21 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_error.3 + 0x3f424b17 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_error.2 + 0x3f424b31 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_error.57 + 0x3f424b4f 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.55 + 0x3f424b56 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.42 + 0x3f424b5d 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.40 + 0x3f424b64 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.39 + 0x3f424b6b 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.38 + 0x3f424b72 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.36 + 0x3f424b79 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.32 + 0x3f424b80 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.30 + 0x3f424b87 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.29 + 0x3f424b8e 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.27 + 0x3f424b95 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.26 + 0x3f424b9c 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.24 + 0x3f424ba3 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.23 + 0x3f424baa 0x40 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.21 + 0x3f424bea 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.17 + 0x3f424bf1 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.15 + 0x3f424bf8 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.14 + 0x3f424bff 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.13 + 0x3f424c06 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_error.4 + 0x3f424c0d 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .rodata_wlog_error.3 + 0x3f424c14 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .rodata_wlog_error.2 + 0x3f424c2f 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .rodata_wlog_error.85 + 0x3f424c36 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.63 + 0x3f424c3d 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.62 + 0x3f424c53 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.59 + 0x3f424c69 0x46 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.55 + 0x3f424caf 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.53 + 0x3f424cc5 0x32 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.51 + 0x3f424cf7 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.42 + 0x3f424d17 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.10 + 0x3f424d1e 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_error.88 + 0x3f424d25 0x27 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_error.86 + 0x3f424d4c 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_error.85 + 0x3f424d5f 0x62 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_error.83 + 0x3f424dc1 0x32 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_error.82 + 0x3f424df3 0x5a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_error.81 + 0x3f424e4d 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_error.61 + 0x3f424e54 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_error.52 + 0x3f424e62 0x21 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_error.46 + 0x3f424e83 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_error.11 + 0x3f424e8a 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .rodata_wlog_error.10 + 0x3f424e91 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .rodata_wlog_error.4 + 0x3f424e98 0x2e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .rodata_wlog_error.28 + 0x3f424ec6 0x1d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_error.27 + 0x3f424ee3 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_error.26 + 0x3f424eff 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_error.25 + 0x3f424f22 0x26 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_error.13 + 0x3f424f48 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .rodata_wlog_error.8 + 0x3f424f4f 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .rodata_wlog_error.7 + 0x3f424f64 0x10 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .rodata_wlog_error.100 + 0x3f424f74 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.97 + 0x3f424f7b 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.96 + 0x3f424f82 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.94 + 0x3f424f89 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.63 + 0x3f424f90 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.56 + 0x3f424fa7 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.46 + 0x3f424fae 0x3a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.18 + 0x3f424fe8 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.12 + 0x3f425001 0x1d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_error.2 + 0x3f42501e 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .rodata_wlog_error.5 + 0x3f425025 0x1d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .rodata_wlog_error.4 + 0x3f425042 0x71 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .rodata_wlog_error.3 + 0x3f4250b3 0x4e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .rodata_wlog_error.2 + 0x3f425101 0x57 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .rodata_wlog_error.8 + 0x3f425158 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata_wlog_error.6 + 0x3f425173 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata_wlog_error.4 + 0x3f425192 0x27 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata_wlog_error.10 + 0x3f4251b9 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .rodata_wlog_error.60 + 0x3f4251d3 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.58 + 0x3f4251dd 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.57 + 0x3f4251e7 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.56 + 0x3f4251f1 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.52 + 0x3f4251fb 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.51 + 0x3f425205 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.49 + 0x3f42520f 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.48 + 0x3f425219 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.47 + 0x3f425223 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.46 + 0x3f42522d 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.45 + 0x3f425237 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.44 + 0x3f425241 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.43 + 0x3f42524b 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.41 + 0x3f425255 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.40 + 0x3f42525f 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.39 + 0x3f425269 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.37 + 0x3f425273 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.31 + 0x3f42527d 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.30 + 0x3f425287 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.29 + 0x3f425291 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.27 + 0x3f42529b 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.26 + 0x3f4252a5 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.25 + 0x3f4252af 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.24 + 0x3f4252b9 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.23 + 0x3f4252c3 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.21 + 0x3f4252cd 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.16 + 0x3f4252d7 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_error.35 + 0x3f4252e1 0x6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_error.75 + 0x3f4252e7 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_error.69 + 0x3f4252ee 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_error.57 + 0x3f4252f5 0x28 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_error.56 + 0x3f42531d 0x27 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_error.55 + 0x3f425344 0x29 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_error.54 + 0x3f42536d 0x29 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_error.48 + 0x3f425396 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_error.45 + 0x3f42539d 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_error.42 + 0x3f4253a4 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_error.39 + 0x3f4253ab 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_error.30 + 0x3f4253b2 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_error.18 + 0x3f4253d1 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_error.15 + 0x3f4253d8 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_error.11 + 0x3f4253df 0x10 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_error.9 + 0x3f4253ef 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_error.28 + 0x3f4253f6 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_error.26 + 0x3f425416 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_error.22 + 0x3f42542c 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_error.18 + 0x3f425447 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_error.17 + 0x3f425451 0x25 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_error.16 + 0x3f425476 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_error.15 + 0x3f425480 0xd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_error.14 + 0x3f42548d 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_error.12 + 0x3f425497 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_error.5 + 0x3f4254a1 0x2c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_error.4 + 0x3f4254cd 0x2c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_error.3 + 0x3f4254f9 0x2c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_error.57 + 0x3f425525 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_error.56 + 0x3f42552f 0x22 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_error.55 + 0x3f425551 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_error.40 + 0x3f42555b 0x2c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_error.36 + 0x3f425587 0x2f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_error.33 + 0x3f4255b6 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_error.32 + 0x3f4255c0 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_error.30 + 0x3f4255ca 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_error.20 + 0x3f4255d4 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + *(.rodata_wlog_info .rodata_wlog_info.*) + .rodata_wlog_info.34 + 0x3f4255ee 0x50 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_info.32 + 0x3f42563e 0x99 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_info.27 + 0x3f4256d7 0x25 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_info.26 + 0x3f4256fc 0x2a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_info.20 + 0x3f425726 0x85 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_info.4 + 0x3f4257ab 0x2e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .rodata_wlog_info.2 + 0x3f4257d9 0x25 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .rodata_wlog_info.45 + 0x3f4257fe 0x41 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_info.11 + 0x3f42583f 0x32 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .rodata_wlog_info.10 + 0x3f425871 0x28 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .rodata_wlog_info.8 + 0x3f425899 0x2b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .rodata_wlog_info.7 + 0x3f4258c4 0x54 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .rodata_wlog_info.6 + 0x3f425918 0x2e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .rodata_wlog_info.5 + 0x3f425946 0x2b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .rodata_wlog_info.4 + 0x3f425971 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .rodata_wlog_info.50 + 0x3f42597d 0x44 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_info.48 + 0x3f4259c1 0x4d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_info.27 + 0x3f425a0e 0x33 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_info.24 + 0x3f425a41 0x3e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_info.23 + 0x3f425a7f 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_info.20 + 0x3f425a97 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_info.50 + 0x3f425aaf 0x2c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_info.49 + 0x3f425adb 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_info.47 + 0x3f425b16 0x22 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_info.28 + 0x3f425b38 0x35 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_info.85 + 0x3f425b6d 0x34 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.84 + 0x3f425ba1 0x22 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.83 + 0x3f425bc3 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.82 + 0x3f425bd6 0x27 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.64 + 0x3f425bfd 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.63 + 0x3f425c17 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.62 + 0x3f425c2c 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.61 + 0x3f425c4f 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.44 + 0x3f425c69 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_info.2 + 0x3f425c73 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .rodata_wlog_info.74 + 0x3f425c96 0x1d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_info.73 + 0x3f425cb3 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_info.58 + 0x3f425cc8 0x38 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_info.57 + 0x3f425d00 0x3f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_info.56 + 0x3f425d3f 0x33 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_info.13 + 0x3f425d72 0xd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_info.96 + 0x3f425d7f 0x43 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.94 + 0x3f425dc2 0x40 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.90 + 0x3f425e02 0xb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.84 + 0x3f425e0d 0x42 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.68 + 0x3f425e4f 0x31 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.66 + 0x3f425e80 0x3c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.65 + 0x3f425ebc 0x3c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.64 + 0x3f425ef8 0x51 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.63 + 0x3f425f49 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.33 + 0x3f425f68 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.2 + 0x3f425f88 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_info.22 + 0x3f425f9d 0x22 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.21 + 0x3f425fbf 0x22 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.20 + 0x3f425fe1 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.19 + 0x3f426004 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.18 + 0x3f426027 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.17 + 0x3f42604a 0x22 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.16 + 0x3f42606c 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.15 + 0x3f42608f 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.14 + 0x3f4260b2 0x22 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.13 + 0x3f4260d4 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.12 + 0x3f4260f7 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.11 + 0x3f42611a 0x1d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.10 + 0x3f426137 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.9 + 0x3f42615a 0x1d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.8 + 0x3f426177 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.7 + 0x3f42619a 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.6 + 0x3f4261bd 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.5 + 0x3f4261e0 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.4 + 0x3f426203 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_info.114 + 0x3f426226 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.113 + 0x3f426246 0x53 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.110 + 0x3f426299 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.108 + 0x3f4262b7 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.103 + 0x3f4262d5 0x3c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.102 + 0x3f426311 0x10 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.99 + 0x3f426321 0x59 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.98 + 0x3f42637a 0x50 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.86 + 0x3f4263ca 0x33 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.85 + 0x3f4263fd 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.55 + 0x3f42641d 0x2f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.53 + 0x3f42644c 0x35 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.48 + 0x3f426481 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.41 + 0x3f426496 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.40 + 0x3f4264a5 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.13 + 0x3f4264c5 0x30 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_info.2 + 0x3f4264f5 0x21 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + .rodata_wlog_info.17 + 0x3f426516 0x1d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata_wlog_info.16 + 0x3f426533 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata_wlog_info.15 + 0x3f426552 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata_wlog_info.14 + 0x3f426570 0x25 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata_wlog_info.13 + 0x3f426595 0x24 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata_wlog_info.12 + 0x3f4265b9 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata_wlog_info.11 + 0x3f4265dc 0x2a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata_wlog_info.12 + 0x3f426606 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .rodata_wlog_info.61 + 0x3f426612 0x11 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_info.42 + 0x3f426623 0xd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_info.36 + 0x3f426630 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_info.57 + 0x3f426643 0x3f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.56 + 0x3f426682 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.55 + 0x3f4266a0 0x56 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.54 + 0x3f4266f6 0x2e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.53 + 0x3f426724 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.49 + 0x3f426738 0x3f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.17 + 0x3f426777 0x2f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.16 + 0x3f4267a6 0x2e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.15 + 0x3f4267d4 0x48 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.14 + 0x3f42681c 0x3a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.13 + 0x3f426856 0x24 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.12 + 0x3f42687a 0x2e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.11 + 0x3f4268a8 0x48 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.10 + 0x3f4268f0 0x3a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.9 + 0x3f42692a 0x29 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.7 + 0x3f426953 0x42 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_info.3 + 0x3f426995 0x3a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_coex.o) + .rodata_wlog_info.58 + 0x3f4269cf 0x31 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_info.26 + 0x3f426a00 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_info.22 + 0x3f426a12 0x11 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_info.53 + 0x3f426a23 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_info.52 + 0x3f426a38 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_info.51 + 0x3f426a50 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_info.41 + 0x3f426a5f 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_info.39 + 0x3f426a7a 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_info.38 + 0x3f426a99 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_info.37 + 0x3f426ab7 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_info.22 + 0x3f426ad6 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_info.21 + 0x3f426ae9 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_info.4 + 0x3f426afb 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + .rodata_wlog_info.3 + 0x3f426b12 0x2b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + .rodata_wlog_info.2 + 0x3f426b3d 0x53 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + *(.rodata_wlog_warning .rodata_wlog_warning.*) + .rodata_wlog_warning.36 + 0x3f426b90 0x11 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.35 + 0x3f426ba1 0x77 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.33 + 0x3f426c18 0x76 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.31 + 0x3f426c8e 0xa0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.30 + 0x3f426d2e 0xa3 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.29 + 0x3f426dd1 0xa2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.28 + 0x3f426e73 0x89 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.25 + 0x3f426efc 0x3d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.24 + 0x3f426f39 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.23 + 0x3f426f5c 0x27 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.22 + 0x3f426f83 0x51 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.21 + 0x3f426fd4 0x6e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.19 + 0x3f427042 0x61 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.18 + 0x3f4270a3 0x2a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.17 + 0x3f4270cd 0x37 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.11 + 0x3f427104 0x3c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.10 + 0x3f427140 0x3d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.9 + 0x3f42717d 0x46 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.8 + 0x3f4271c3 0x75 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.7 + 0x3f427238 0x46 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.6 + 0x3f42727e 0x76 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.4 + 0x3f4272f4 0x26 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.3 + 0x3f42731a 0x2b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata_wlog_warning.3 + 0x3f427345 0x2c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .rodata_wlog_warning.44 + 0x3f427371 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.43 + 0x3f42737b 0x11 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.22 + 0x3f42738c 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.20 + 0x3f42739b 0x10 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.19 + 0x3f4273ab 0x21 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.13 + 0x3f4273cc 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.12 + 0x3f4273ea 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.10 + 0x3f427406 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.9 + 0x3f427422 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.7 + 0x3f42743c 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_warning.12 + 0x3f42745c 0x5a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .rodata_wlog_warning.49 + 0x3f4274b6 0x25 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.47 + 0x3f4274db 0x25 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.45 + 0x3f427500 0x3d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.44 + 0x3f42753d 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.43 + 0x3f427558 0x3c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.38 + 0x3f427594 0x21 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.37 + 0x3f4275b5 0x21 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.36 + 0x3f4275d6 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.15 + 0x3f4275f4 0x5b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.14 + 0x3f42764f 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.12 + 0x3f427672 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.8 + 0x3f427679 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.7 + 0x3f427699 0x24 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.6 + 0x3f4276bd 0x9 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.4 + 0x3f4276c6 0x9 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.3 + 0x3f4276cf 0x2a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_warning.68 + 0x3f4276f9 0x28 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.66 + 0x3f427721 0x9 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.64 + 0x3f42772a 0x9 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.56 + 0x3f427733 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.48 + 0x3f427745 0x29 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.40 + 0x3f42776e 0x36 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.39 + 0x3f4277a4 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.23 + 0x3f4277bc 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.20 + 0x3f4277cb 0x2c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.19 + 0x3f4277f7 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.18 + 0x3f427810 0xd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.7 + 0x3f42781d 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.4 + 0x3f42782c 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_warning.44 + 0x3f427845 0x29 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_warning.30 + 0x3f42786e 0x52 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_warning.29 + 0x3f4278c0 0x45 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_warning.27 + 0x3f427905 0x21 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_warning.2 + 0x3f427926 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_warning.128 + 0x3f427949 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.127 + 0x3f42796c 0x25 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.126 + 0x3f427991 0x3c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.107 + 0x3f4279cd 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.98 + 0x3f4279e7 0xb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.97 + 0x3f4279f2 0xb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.65 + 0x3f4279fd 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.60 + 0x3f427a17 0x30 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.35 + 0x3f427a47 0x50 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.34 + 0x3f427a97 0x54 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.33 + 0x3f427aeb 0x46 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.31 + 0x3f427b31 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.30 + 0x3f427b48 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.27 + 0x3f427b5e 0x60 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.19 + 0x3f427bbe 0x82 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.18 + 0x3f427c40 0x73 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.17 + 0x3f427cb3 0x55 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.12 + 0x3f427d08 0x60 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.11 + 0x3f427d68 0x39 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_warning.15 + 0x3f427da1 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.14 + 0x3f427dc0 0x2e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.13 + 0x3f427dee 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.12 + 0x3f427e04 0x24 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.11 + 0x3f427e28 0x27 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.10 + 0x3f427e4f 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.9 + 0x3f427e6a 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.8 + 0x3f427e85 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.4 + 0x3f427ea0 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata_wlog_warning.59 + 0x3f427eba 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.58 + 0x3f427ec4 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.56 + 0x3f427ed9 0x11 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.44 + 0x3f427eea 0xb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.43 + 0x3f427ef5 0x11 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.41 + 0x3f427f06 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.35 + 0x3f427f1c 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.34 + 0x3f427f2a 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.33 + 0x3f427f40 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.31 + 0x3f427f4a 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.28 + 0x3f427f5e 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.25 + 0x3f427f72 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.18 + 0x3f427f86 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.9 + 0x3f427f90 0x47 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.8 + 0x3f427fd7 0xd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_warning.3 + 0x3f427fe4 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + .rodata_wlog_warning.2 + 0x3f427ff9 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + .rodata_wlog_warning.50 + 0x3f42800e 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_warning.7 + 0x3f428028 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_warning.6 + 0x3f42803a 0x1d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_warning.3 + 0x3f428057 0x2e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_warning.95 + 0x3f428085 0x25 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_warning.93 + 0x3f4280aa 0x25 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_warning.87 + 0x3f4280cf 0x1d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_warning.62 + 0x3f4280ec 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_warning.24 + 0x3f428108 0x11 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_warning.23 + 0x3f428119 0x9 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata_wlog_warning.112 + 0x3f428122 0x26 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_warning.74 + 0x3f428148 0x21 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_warning.25 + 0x3f428169 0xd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_warning.24 + 0x3f428176 0x65 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_warning.23 + 0x3f4281db 0x64 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_warning.17 + 0x3f42823f 0x33 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_warning.2 + 0x3f428272 0x3d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + .rodata_wlog_warning.3 + 0x3f4282af 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + .rodata_wlog_warning.10 + 0x3f4282cd 0x28 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .rodata_wlog_warning.62 + 0x3f4282f5 0x21 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_warning.50 + 0x3f428316 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata_wlog_warning.37 + 0x3f428329 0x8e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_warning.33 + 0x3f4283b7 0x50 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .rodata_wlog_warning.67 + 0x3f428407 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_warning.53 + 0x3f428422 0x21 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_warning.52 + 0x3f428443 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_warning.31 + 0x3f428463 0xd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_warning.28 + 0x3f428470 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_warning.16 + 0x3f42848a 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_warning.14 + 0x3f428494 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata_wlog_warning.6 + 0x3f4284b3 0x11 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .rodata_wlog_warning.5 + 0x3f4284c4 0x9 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .rodata_wlog_warning.24 + 0x3f4284cd 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_warning.23 + 0x3f4284d4 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_warning.7 + 0x3f4284e2 0x2e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_warning.6 + 0x3f428510 0x32 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata_wlog_warning.35 + 0x3f428542 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_warning.24 + 0x3f428555 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_warning.17 + 0x3f42856a 0x11 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata_wlog_warning.4 + 0x3f42857b 0x9 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .rodata_wlog_warning.3 + 0x3f428584 0x9 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .rodata_wlog_warning.2 + 0x3f42858d 0x9 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .rodata_wlog_warning.4 + 0x3f428596 0x9 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .rodata_wlog_warning.3 + 0x3f42859f 0x2f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .rodata_wlog_warning.3 + 0x3f4285ce 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .rodata_wlog_warning.2 + 0x3f4285ed 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + *(.irom1.text) + *(.gnu.linkonce.r.*) + *(.rodata1) + 0x3f4285f9 __XT_EXCEPTION_TABLE_ = ABSOLUTE (.) + *(.xt_except_table) + *(.gcc_except_table .gcc_except_table.*) + *fill* 0x3f4285f9 0x3 + .gcc_except_table._ZnajRKSt9nothrow_t + 0x3f4285fc 0x10 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opvnt.o) + .gcc_except_table.__cxa_get_globals_fast + 0x3f42860c 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) + .gcc_except_table.__cxa_get_globals + 0x3f428610 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) + .gcc_except_table._GLOBAL__sub_D__ZN17__eh_globals_init7_S_initE + 0x3f428614 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) + .gcc_except_table._ZN10__cxxabiv111__terminateEPFvvE + 0x3f428618 0x10 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) + *(.gnu.linkonce.e.*) + *(.gnu.version_r) + 0x3f428628 . = ((. + 0x3) & 0xfffffffffffffffc) + 0x3f428628 __init_array_start = ABSOLUTE (.) + *(EXCLUDE_FILE(*crtbegin.* *crtend.*) .ctors SORT_BY_NAME(.ctors.*)) + .ctors 0x3f428628 0x4 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .ctors 0x3f42862c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .ctors 0x3f428630 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .ctors 0x3f428634 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .ctors 0x3f428638 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) + 0x3f42863c __init_array_end = ABSOLUTE (.) + *crtbegin.*(.dtors) + .dtors 0x3f42863c 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + *(EXCLUDE_FILE(*crtend.*) .dtors) + .dtors 0x3f428640 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) + *(SORT_BY_NAME(.dtors.*)) + *(.dtors) + .dtors 0x3f428644 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + 0x3f428644 __DTOR_END__ + 0x3f428648 __XT_EXCEPTION_DESCS_ = ABSOLUTE (.) + *(.xt_except_desc) + *(.gnu.linkonce.h.*) + 0x3f428648 __XT_EXCEPTION_DESCS_END__ = ABSOLUTE (.) + *(.xt_except_desc_end) + *(.dynamic) + *(.gnu.version_d) + 0x3f428648 soc_reserved_memory_region_start = ABSOLUTE (.) + *(.reserved_memory_address) + .reserved_memory_address + 0x3f428648 0x48 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x3f428690 soc_reserved_memory_region_end = ABSOLUTE (.) + 0x3f428690 _esp_system_init_fn_array_start = ABSOLUTE (.) + *(SORT_BY_INIT_PRIORITY(.esp_system_init_fn.*)) + .esp_system_init_fn.100 + 0x3f428690 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .esp_system_init_fn.200 + 0x3f428698 0x8 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x3f4286a0 _esp_system_init_fn_array_end = ABSOLUTE (.) + 0x3f4286a0 _rodata_end = ABSOLUTE (.) + 0x3f4286a0 _lit4_start = ABSOLUTE (.) + *(*.lit4) + *(.lit4.*) + *(.gnu.linkonce.lit4.*) + 0x3f4286a0 _lit4_end = ABSOLUTE (.) + 0x3f4286a0 . = ALIGN (0x4) + 0x3f4286a0 _thread_local_start = ABSOLUTE (.) + *(.tdata) + *(.tdata.*) + *(.tbss) + *(.tbss.*) + 0x3f4286a0 _thread_local_end = ABSOLUTE (.) + 0x3f4286a0 . = ALIGN (0x4) + 0x00000010 _flash_rodata_align = ALIGNOF (.flash.rodata) + +.flash.rodata_noload + 0x3f4286a0 0x2bf3 + 0x3f4286a0 _rodata_reserved_end = ABSOLUTE (.) + 0x3f4286a0 . = ALIGN (0x4) + *(.rodata_wlog_debug .rodata_wlog_debug.*) + .rodata_wlog_debug.40 + 0x3f4286a0 0x4a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.39 + 0x3f4286ea 0x52 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.35 + 0x3f42873c 0x3c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.34 + 0x3f428778 0x4e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.33 + 0x3f4287c6 0x5b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.31 + 0x3f428821 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.30 + 0x3f42883f 0x26 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.29 + 0x3f428865 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.22 + 0x3f428885 0x2e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.16 + 0x3f4288b3 0x31 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .rodata_wlog_debug.43 + 0x3f4288e4 0x56 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.42 + 0x3f42893a 0x58 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.41 + 0x3f428992 0x26 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.40 + 0x3f4289b8 0x2b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.39 + 0x3f4289e3 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.38 + 0x3f4289ef 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.37 + 0x3f428a0e 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.36 + 0x3f428a31 0x2f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.35 + 0x3f428a60 0x46 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.34 + 0x3f428aa6 0x3f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.33 + 0x3f428ae5 0x40 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.32 + 0x3f428b25 0x47 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.31 + 0x3f428b6c 0x36 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.26 + 0x3f428ba2 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.25 + 0x3f428bb4 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.24 + 0x3f428bc6 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.23 + 0x3f428bd8 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.22 + 0x3f428bea 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.21 + 0x3f428bfc 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.20 + 0x3f428c15 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.19 + 0x3f428c27 0x11 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.18 + 0x3f428c38 0x10 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.17 + 0x3f428c48 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.16 + 0x3f428c5a 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.15 + 0x3f428c73 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.14 + 0x3f428c85 0x11 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.13 + 0x3f428c96 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.12 + 0x3f428ca8 0x11 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.11 + 0x3f428cb9 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.10 + 0x3f428cce 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.9 + 0x3f428ce0 0x36 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.6 + 0x3f428d16 0xb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.5 + 0x3f428d21 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.4 + 0x3f428d5c 0x49 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata_wlog_debug.124 + 0x3f428da5 0x30 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.123 + 0x3f428dd5 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.122 + 0x3f428e10 0x30 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.121 + 0x3f428e40 0x38 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.106 + 0x3f428e78 0x2c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.73 + 0x3f428ea4 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.72 + 0x3f428eae 0x10 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.70 + 0x3f428ebe 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.69 + 0x3f428ed4 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.68 + 0x3f428eef 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.67 + 0x3f428f02 0x28 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.37 + 0x3f428f2a 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.36 + 0x3f428f43 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.25 + 0x3f428f5c 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.24 + 0x3f428f75 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.23 + 0x3f428f8d 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.22 + 0x3f428fa7 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.20 + 0x3f428fbf 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_debug.14 + 0x3f428fcb 0x3f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_debug.12 + 0x3f42900a 0x34 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .rodata_wlog_debug.22 + 0x3f42903e 0x2b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_debug.16 + 0x3f429069 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_debug.4 + 0x3f429081 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .rodata_wlog_debug.3 + 0x3f429095 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .rodata_wlog_debug.101 + 0x3f4290b8 0x1d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.100 + 0x3f4290d5 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.99 + 0x3f4290f0 0x30 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.97 + 0x3f429120 0x37 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.96 + 0x3f429157 0x36 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.95 + 0x3f42918d 0x29 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.94 + 0x3f4291b6 0x2d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.86 + 0x3f4291e3 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.84 + 0x3f429206 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.83 + 0x3f429224 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.82 + 0x3f42923c 0x36 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.81 + 0x3f429272 0x2c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.80 + 0x3f42929e 0x26 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.79 + 0x3f4292c4 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.78 + 0x3f4292d2 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.77 + 0x3f4292e1 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.76 + 0x3f4292f0 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.75 + 0x3f4292ff 0x2a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.70 + 0x3f429329 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.69 + 0x3f429364 0x4a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.68 + 0x3f4293ae 0x6d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.67 + 0x3f42941b 0x71 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.66 + 0x3f42948c 0x38 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.65 + 0x3f4294c4 0x6d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.64 + 0x3f429531 0x6d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.61 + 0x3f42959e 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.60 + 0x3f4295b1 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.54 + 0x3f4295bd 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.52 + 0x3f4295d2 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.49 + 0x3f4295e5 0x42 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.48 + 0x3f429627 0x4a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.47 + 0x3f429671 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.41 + 0x3f4296ac 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.40 + 0x3f4296ba 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.25 + 0x3f4296c8 0x2a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.21 + 0x3f4296f2 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.20 + 0x3f42970b 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.19 + 0x3f429717 0x32 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.16 + 0x3f429749 0x28 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.15 + 0x3f429771 0x24 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.14 + 0x3f429795 0x2b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.8 + 0x3f4297c0 0x35 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.5 + 0x3f4297f5 0x54 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.4 + 0x3f429849 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_debug.92 + 0x3f429862 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.91 + 0x3f42987a 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.89 + 0x3f429892 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.80 + 0x3f4298ab 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.79 + 0x3f4298c2 0x2a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.78 + 0x3f4298ec 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.77 + 0x3f429905 0x2d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.76 + 0x3f429932 0x25 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.75 + 0x3f429957 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.74 + 0x3f429970 0x25 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.73 + 0x3f429995 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.72 + 0x3f4299ab 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.71 + 0x3f4299cb 0x36 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.70 + 0x3f429a01 0x26 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.69 + 0x3f429a27 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.67 + 0x3f429a3e 0x33 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.60 + 0x3f429a71 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.59 + 0x3f429a94 0x3e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.58 + 0x3f429ad2 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.57 + 0x3f429af5 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.56 + 0x3f429b18 0x37 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.55 + 0x3f429b4f 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.54 + 0x3f429b5e 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.53 + 0x3f429b81 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.41 + 0x3f429b9d 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.40 + 0x3f429bb3 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.38 + 0x3f429bcc 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.37 + 0x3f429be4 0x21 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.36 + 0x3f429c05 0x3c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.35 + 0x3f429c41 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.34 + 0x3f429c59 0x2f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.32 + 0x3f429c88 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.31 + 0x3f429c9e 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.30 + 0x3f429cb9 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.29 + 0x3f429cd1 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.28 + 0x3f429ce9 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.27 + 0x3f429d05 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.26 + 0x3f429d19 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.25 + 0x3f429d34 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.24 + 0x3f429d4d 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.23 + 0x3f429d6d 0x29 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.22 + 0x3f429d96 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.21 + 0x3f429db0 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.20 + 0x3f429dcb 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.19 + 0x3f429de3 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.18 + 0x3f429ded 0x11 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.17 + 0x3f429dfe 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.16 + 0x3f429e16 0x2d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.15 + 0x3f429e43 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.14 + 0x3f429e5b 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.13 + 0x3f429e73 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.12 + 0x3f429e8b 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.11 + 0x3f429ea3 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.10 + 0x3f429ebb 0x24 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.9 + 0x3f429edf 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.8 + 0x3f429ef7 0x2c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.7 + 0x3f429f23 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.6 + 0x3f429f3b 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.5 + 0x3f429f53 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.4 + 0x3f429f6b 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.3 + 0x3f429f80 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_debug.12 + 0x3f429f9f 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .rodata_wlog_debug.9 + 0x3f429fb1 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .rodata_wlog_debug.8 + 0x3f429fd4 0x42 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .rodata_wlog_debug.7 + 0x3f42a016 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .rodata_wlog_debug.6 + 0x3f42a039 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .rodata_wlog_debug.5 + 0x3f42a05c 0x4c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .rodata_wlog_debug.117 + 0x3f42a0a8 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.116 + 0x3f42a0c0 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.115 + 0x3f42a0d9 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.111 + 0x3f42a0f2 0x26 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.109 + 0x3f42a118 0x36 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.107 + 0x3f42a14e 0x26 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.106 + 0x3f42a174 0x25 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.105 + 0x3f42a199 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.104 + 0x3f42a1b7 0x25 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.101 + 0x3f42a1dc 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.92 + 0x3f42a1f1 0x2c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.91 + 0x3f42a21d 0x2c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.90 + 0x3f42a249 0x2b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.89 + 0x3f42a274 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.88 + 0x3f42a28c 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.87 + 0x3f42a2a4 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.84 + 0x3f42a2bc 0x27 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.83 + 0x3f42a2e3 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.81 + 0x3f42a2fc 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.80 + 0x3f42a314 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.79 + 0x3f42a323 0x3d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.78 + 0x3f42a360 0x32 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.77 + 0x3f42a392 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.76 + 0x3f42a3a0 0x10 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.75 + 0x3f42a3b0 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.73 + 0x3f42a3c5 0x3d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.72 + 0x3f42a402 0x42 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.71 + 0x3f42a444 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.70 + 0x3f42a463 0x2d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.69 + 0x3f42a490 0x40 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.68 + 0x3f42a4d0 0x2c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.67 + 0x3f42a4fc 0x2c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.66 + 0x3f42a528 0x36 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.65 + 0x3f42a55e 0x10 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.60 + 0x3f42a56e 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.59 + 0x3f42a584 0x2b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.58 + 0x3f42a5af 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.57 + 0x3f42a5c5 0x35 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.54 + 0x3f42a5fa 0x35 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.52 + 0x3f42a62f 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.51 + 0x3f42a648 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.50 + 0x3f42a660 0x36 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.49 + 0x3f42a696 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.47 + 0x3f42a6b1 0x3e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.44 + 0x3f42a6ef 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.43 + 0x3f42a707 0x2c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.42 + 0x3f42a733 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.39 + 0x3f42a749 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.38 + 0x3f42a761 0x1d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.37 + 0x3f42a77e 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.36 + 0x3f42a791 0x21 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.35 + 0x3f42a7b2 0x21 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.34 + 0x3f42a7d3 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.33 + 0x3f42a7e9 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.32 + 0x3f42a800 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.31 + 0x3f42a80e 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.30 + 0x3f42a818 0xd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.29 + 0x3f42a825 0x11 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.28 + 0x3f42a836 0x10 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.27 + 0x3f42a846 0x24 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.26 + 0x3f42a86a 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.22 + 0x3f42a882 0x32 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.21 + 0x3f42a8b4 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.20 + 0x3f42a8cf 0x44 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.19 + 0x3f42a913 0x40 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.16 + 0x3f42a953 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.15 + 0x3f42a971 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.14 + 0x3f42a994 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.11 + 0x3f42a9b4 0x36 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.10 + 0x3f42a9ea 0x2a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.9 + 0x3f42aa14 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.8 + 0x3f42aa33 0x26 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.7 + 0x3f42aa59 0x25 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.6 + 0x3f42aa7e 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.5 + 0x3f42aa9c 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.4 + 0x3f42aab2 0x10 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.3 + 0x3f42aac2 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_debug.9 + 0x3f42aada 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .rodata_wlog_debug.8 + 0x3f42aaf3 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .rodata_wlog_debug.7 + 0x3f42ab0c 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .rodata_wlog_debug.6 + 0x3f42ab25 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .rodata_wlog_debug.5 + 0x3f42ab3e 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .rodata_wlog_debug.4 + 0x3f42ab57 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + *(.rodata_wlog_verbose .rodata_wlog_verbose.*) + .rodata_wlog_verbose.24 + 0x3f42ab70 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_verbose.23 + 0x3f42ab7e 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata_wlog_verbose.53 + 0x3f42ab94 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_verbose.52 + 0x3f42abb4 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata_wlog_verbose.71 + 0x3f42abc3 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata_wlog_verbose.12 + 0x3f42abe1 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata_wlog_verbose.98 + 0x3f42ac1c 0x3c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.93 + 0x3f42ac58 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.92 + 0x3f42ac6b 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.91 + 0x3f42ac7e 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.90 + 0x3f42ac91 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.89 + 0x3f42aca4 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.88 + 0x3f42acbc 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.87 + 0x3f42accf 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.72 + 0x3f42aced 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.71 + 0x3f42acfc 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.46 + 0x3f42ad0b 0xd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.45 + 0x3f42ad18 0x2d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.43 + 0x3f42ad45 0x1d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.39 + 0x3f42ad62 0x25 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.38 + 0x3f42ad87 0x28 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.37 + 0x3f42adaf 0x28 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.36 + 0x3f42add7 0x30 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.35 + 0x3f42ae07 0x22 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.34 + 0x3f42ae29 0x21 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.33 + 0x3f42ae4a 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.32 + 0x3f42ae66 0x25 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.31 + 0x3f42ae8b 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.30 + 0x3f42aeab 0x2c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.29 + 0x3f42aed7 0x10 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.28 + 0x3f42aee7 0x1d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.27 + 0x3f42af04 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.26 + 0x3f42af1a 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.24 + 0x3f42af28 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.23 + 0x3f42af42 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.22 + 0x3f42af5c 0x45 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.18 + 0x3f42afa1 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.17 + 0x3f42afb6 0x11 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.12 + 0x3f42afc7 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.11 + 0x3f42afda 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.9 + 0x3f42aff4 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.2 + 0x3f42b02f 0x3f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .rodata_wlog_verbose.49 + 0x3f42b06e 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_verbose.48 + 0x3f42b083 0x24 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_verbose.47 + 0x3f42b0a7 0x3e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_verbose.44 + 0x3f42b0e5 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_verbose.43 + 0x3f42b0fc 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_verbose.42 + 0x3f42b110 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata_wlog_verbose.11 + 0x3f42b11e 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .rodata_wlog_verbose.10 + 0x3f42b134 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .rodata_wlog_verbose.9 + 0x3f42b14b 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .rodata_wlog_verbose.6 + 0x3f42b162 0x2d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .rodata_wlog_verbose.5 + 0x3f42b18f 0x10 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .rodata_wlog_verbose.4 + 0x3f42b19f 0x10 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .rodata_wlog_verbose.3 + 0x3f42b1af 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .rodata_wlog_verbose.2 + 0x3f42b1c6 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .rodata_wlog_verbose.82 + 0x3f42b1e6 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_verbose.64 + 0x3f42b202 0x21 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_verbose.62 + 0x3f42b223 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_verbose.61 + 0x3f42b235 0x33 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .rodata_wlog_verbose.45 + 0x3f42b268 0x2b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + +.flash.text 0x400d0020 0xa2f8f + 0x400d0020 _stext = . + 0x400d0020 _instruction_reserved_start = ABSOLUTE (.) + 0x400d0020 _text_start = ABSOLUTE (.) + *(EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *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:wdt_hal_iram.* *libhal.a:timer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *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_esp32.* *libgcc.a:lib2funcs.* *libesp_wifi.a:wifi_netif.* *libesp_wifi.a:esp_adapter.* *libesp_system.a:ubsan.* *libesp_system.a:esp_system_chip.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_spiflash.* *libesp_mm.a:esp_cache.* *libesp_mm.a:cache_esp32.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:rtc_wdt.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:esp_gpio_reserve.* *libesp_hw_support.a:cpu.* *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libdriver.a:gptimer.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libxtensa.a *libxt_hal.a *librtc.a *libgcov.a *libfreertos.a *libesp_ringbuf.a) .literal EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *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:wdt_hal_iram.* *libhal.a:timer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *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_esp32.* *libgcc.a:lib2funcs.* *libesp_wifi.a:wifi_netif.* *libesp_wifi.a:esp_adapter.* *libesp_system.a:ubsan.* *libesp_system.a:esp_system_chip.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_spiflash.* *libesp_mm.a:esp_cache.* *libesp_mm.a:cache_esp32.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:rtc_wdt.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:esp_gpio_reserve.* *libesp_hw_support.a:cpu.* *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libdriver.a:gptimer.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libxtensa.a *libxt_hal.a *librtc.a *libgcov.a *libfreertos.a *libesp_ringbuf.a) .literal.* EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *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:wdt_hal_iram.* *libhal.a:timer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *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_esp32.* *libgcc.a:lib2funcs.* *libesp_wifi.a:wifi_netif.* *libesp_wifi.a:esp_adapter.* *libesp_system.a:ubsan.* *libesp_system.a:esp_system_chip.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_spiflash.* *libesp_mm.a:esp_cache.* *libesp_mm.a:cache_esp32.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:rtc_wdt.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:esp_gpio_reserve.* *libesp_hw_support.a:cpu.* *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libdriver.a:gptimer.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libxtensa.a *libxt_hal.a *librtc.a *libgcov.a *libfreertos.a *libesp_ringbuf.a) .text EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *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:wdt_hal_iram.* *libhal.a:timer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *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_esp32.* *libgcc.a:lib2funcs.* *libesp_wifi.a:wifi_netif.* *libesp_wifi.a:esp_adapter.* *libesp_system.a:ubsan.* *libesp_system.a:esp_system_chip.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_spiflash.* *libesp_mm.a:esp_cache.* *libesp_mm.a:cache_esp32.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:rtc_wdt.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:mspi_timing_config.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:esp_gpio_reserve.* *libesp_hw_support.a:cpu.* *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libdriver.a:gptimer.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libxtensa.a *libxt_hal.a *librtc.a *libgcov.a *libfreertos.a *libesp_ringbuf.a) .text.*) + .literal.esp_app_get_description + 0x400d0020 0x4 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .literal.startup.esp_app_format_init_elf_sha256 + 0x400d0024 0x8 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .literal.esp_app_get_elf_sha256 + 0x400d002c 0x4 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0xc (size before relaxing) + .literal.esp_pthread_cfg_key_destructor + 0x400d0030 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x4 (size before relaxing) + .literal.esp_pthread_init + 0x400d0030 0xc esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x18 (size before relaxing) + .literal.find_key + 0x400d003c 0x8 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x10 (size before relaxing) + .literal.pthread_cleanup_thread_specific_data_callback + 0x400d0044 0xc esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x1c (size before relaxing) + .literal.pthread_key_create + 0x400d0050 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x14 (size before relaxing) + .literal.pthread_key_delete + 0x400d0050 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x18 (size before relaxing) + .literal.pthread_getspecific + 0x400d0050 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x4 (size before relaxing) + .literal.pthread_setspecific + 0x400d0050 0x4 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x1c (size before relaxing) + .literal.core_intr_matrix_clear + 0x400d0054 0x4 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .literal.startup_resume_other_cores + 0x400d0058 0x4 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .literal.esp_ipc_isr_init + 0x400d005c 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x8 (size before relaxing) + .literal.esp_ipc_isr_port_init + 0x400d0060 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + 0xc (size before relaxing) + .literal.select_rtc_slow_clk + 0x400d0060 0x10 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x28 (size before relaxing) + .literal.esp_rtc_init + 0x400d0070 0x8 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .literal.esp_clk_init + 0x400d0078 0x18 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x70 (size before relaxing) + .literal.esp_perip_clk_init + 0x400d0090 0x30 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x5c (size before relaxing) + .literal.esp_cache_err_int_init + 0x400d00c0 0x4 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x18 (size before relaxing) + .literal.esp_cache_err_get_cpuid + 0x400d00c4 0x8 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x10 (size before relaxing) + .literal.esp_int_wdt_init + 0x400d00cc 0x10 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x34 (size before relaxing) + .literal.esp_int_wdt_cpu_init + 0x400d00dc 0x4 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x14 (size before relaxing) + .literal.panic_print_char_uart + 0x400d00e0 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x8 (size before relaxing) + .literal.panic_print_str + 0x400d00e4 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x4 (size before relaxing) + .literal.print_abort_details + 0x400d00e4 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x8 (size before relaxing) + .literal.panic_print_hex + 0x400d00e8 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x4 (size before relaxing) + .literal.panic_print_dec + 0x400d00e8 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0xc (size before relaxing) + .literal.esp_panic_handler_reconfigure_wdts + 0x400d00ec 0xc esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x2c (size before relaxing) + .literal.esp_panic_handler + 0x400d00f8 0x38 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0xe4 (size before relaxing) + .literal.esp_register_shutdown_handler + 0x400d0130 0x4 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .literal.esp_unregister_shutdown_handler + 0x400d0134 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x4 (size before relaxing) + .literal.esp_restart + 0x400d0134 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0xc (size before relaxing) + .literal.do_system_init_fn + 0x400d0134 0x14 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x20 (size before relaxing) + .literal.start_cpu0_default + 0x400d0148 0x64 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x124 (size before relaxing) + .literal.panic_handler + 0x400d01ac 0x38 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x84 (size before relaxing) + .literal.print_state_for_core + 0x400d01e4 0x4 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x14 (size before relaxing) + .literal.print_state + 0x400d01e8 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x18 (size before relaxing) + .literal.panic_restart + 0x400d01e8 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0xc (size before relaxing) + .literal.esp_brownout_init + 0x400d01e8 0x8 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + 0x18 (size before relaxing) + .literal.print_debug_exception_details + 0x400d01f0 0x20 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x3c (size before relaxing) + .literal.print_illegal_instruction_details + 0x400d0210 0x10 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x30 (size before relaxing) + .literal.panic_print_registers + 0x400d0220 0x2c esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x84 (size before relaxing) + .literal.panic_arch_fill_info + 0x400d024c 0x10 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .literal.panic_soc_fill_info + 0x400d025c 0xc esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x10 (size before relaxing) + .literal.panic_print_backtrace + 0x400d0268 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x4 (size before relaxing) + .literal.esp_vApplicationIdleHook + 0x400d0268 0x4 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x8 (size before relaxing) + .literal.esp_register_freertos_idle_hook_for_cpu + 0x400d026c 0x4 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x14 (size before relaxing) + .literal.esp_register_freertos_tick_hook_for_cpu + 0x400d0270 0x4 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x14 (size before relaxing) + .literal.esp_deregister_freertos_idle_hook_for_cpu + 0x400d0274 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x10 (size before relaxing) + .literal.uart_hal_rxfifo_rst + 0x400d0274 0x14 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .literal.uart_hal_write_txfifo + 0x400d0288 0x8 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + 0x10 (size before relaxing) + .literal.brownout_hal_config + 0x400d0290 0xc esp-idf/hal/libhal.a(brownout_hal.c.obj) + 0x10 (size before relaxing) + .literal.heap_caps_get_free_size + 0x400d029c 0xc esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_get_minimum_free_size + 0x400d02a8 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0xc (size before relaxing) + .literal.heap_caps_get_info + 0x400d02ac 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x10 (size before relaxing) + .literal.heap_caps_get_largest_free_block + 0x400d02b4 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x4 (size before relaxing) + .literal.register_heap + 0x400d02b4 0x10 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x14 (size before relaxing) + .literal.heap_caps_enable_nonos_stack_heaps + 0x400d02c4 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0xc (size before relaxing) + .literal.heap_caps_init + 0x400d02c4 0x28 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x6c (size before relaxing) + .literal.soc_get_available_memory_region_max_count + 0x400d02ec 0xc esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .literal.soc_get_available_memory_regions + 0x400d02f8 0x28 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x58 (size before relaxing) + .literal.calc_checksum + 0x400d0320 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .literal.esp_rtc_get_time_us + 0x400d0324 0xc esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x30 (size before relaxing) + .literal.esp_clk_slowclk_cal_set + 0x400d0330 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x8 (size before relaxing) + .literal.esp_clk_slowclk_cal_get + 0x400d0330 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x4 (size before relaxing) + .literal.find_desc_for_int + 0x400d0330 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .literal.is_vect_desc_usable + 0x400d0334 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x18 (size before relaxing) + .literal.get_desc_for_int + 0x400d0344 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x18 (size before relaxing) + .literal.esp_intr_alloc_intrstatus + 0x400d034c 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0xb4 (size before relaxing) + .literal.esp_intr_alloc + 0x400d0384 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x4 (size before relaxing) + .literal.rtc_isr_register + 0x400d0384 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x3c (size before relaxing) + .literal.esp_deep_sleep_wakeup_io_reset + 0x400d03a8 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + 0x24 (size before relaxing) + .literal.esp_chip_info + 0x400d03c8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + 0xc (size before relaxing) + .literal.esp_cpu_intr_get_desc + 0x400d03cc 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + 0x14 (size before relaxing) + .literal.esp_newlib_locks_init + 0x400d03dc 0x28 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x34 (size before relaxing) + .literal.esp_cleanup_r + 0x400d0404 0x8 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + 0x10 (size before relaxing) + .literal.raise_r_stub + 0x400d040c 0x0 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + 0x4 (size before relaxing) + .literal.esp_newlib_init + 0x400d040c 0x1c esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + 0x30 (size before relaxing) + .literal.esp_newlib_init_global_stdio + 0x400d0428 0x14 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + 0x2c (size before relaxing) + .literal.unlikely.syscall_not_implemented_aborts + 0x400d043c 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x4 (size before relaxing) + .literal.adjust_boot_time + 0x400d043c 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x18 (size before relaxing) + .literal.settimeofday$part$0 + 0x400d0444 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x20 (size before relaxing) + .literal.settimeofday + 0x400d044c 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x4 (size before relaxing) + .literal.usleep + 0x400d044c 0x4 esp-idf/newlib/libnewlib.a(time.c.obj) + 0xc (size before relaxing) + .literal.sleep + 0x400d0450 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x8 (size before relaxing) + .literal.esp_newlib_time_init + 0x400d0450 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x4 (size before relaxing) + .literal.esp_time_impl_get_time_since_boot + 0x400d0450 0x4 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x8 (size before relaxing) + .literal.esp_time_impl_set_boot_time + 0x400d0454 0xc esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x14 (size before relaxing) + .literal.esp_time_impl_get_boot_time + 0x400d0460 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x14 (size before relaxing) + .literal.esp_set_time_from_rtc + 0x400d0460 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0xc (size before relaxing) + .literal.esp_sync_timekeeping_timers + 0x400d0460 0x4 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x1c (size before relaxing) + .literal.esp_time_impl_init + 0x400d0464 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x4 (size before relaxing) + .literal.deinit_timer_task + 0x400d0464 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x8 (size before relaxing) + .literal.timer_task + 0x400d0468 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x30 (size before relaxing) + .literal.esp_timer_create + 0x400d0470 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x8 (size before relaxing) + .literal.esp_timer_delete + 0x400d0470 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x14 (size before relaxing) + .literal.esp_timer_early_init + 0x400d0470 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x8 (size before relaxing) + .literal.esp_timer_init + 0x400d0470 0x18 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x44 (size before relaxing) + .literal.__esp_system_init_fn_esp_timer_startup_init + 0x400d0488 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x4 (size before relaxing) + .literal.esp_timer_impl_init_system_time + 0x400d0488 0x14 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x28 (size before relaxing) + .literal.esp_timer_impl_early_init + 0x400d049c 0x28 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x3c (size before relaxing) + .literal.esp_timer_impl_init + 0x400d04c4 0x28 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x54 (size before relaxing) + .literal.set_xpd_sar + 0x400d04ec 0xc esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .literal.get_local_fd + 0x400d04f8 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.translate_path + 0x400d04fc 0x14 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x1c (size before relaxing) + .literal.esp_vfs_register_common + 0x400d0510 0x10 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x1c (size before relaxing) + .literal.esp_vfs_register + 0x400d0520 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_register_fd_range + 0x400d0520 0x8 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x24 (size before relaxing) + .literal.get_vfs_for_index + 0x400d0528 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.get_vfs_for_fd + 0x400d0528 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.get_vfs_for_path + 0x400d0528 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x10 (size before relaxing) + .literal.esp_vfs_open + 0x400d052c 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x20 (size before relaxing) + .literal.esp_vfs_write + 0x400d0530 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_lseek + 0x400d0530 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_read + 0x400d0530 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_close + 0x400d0530 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x18 (size before relaxing) + .literal.esp_vfs_fstat + 0x400d0530 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_stat + 0x400d0530 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_link + 0x400d0530 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x10 (size before relaxing) + .literal.esp_vfs_unlink + 0x400d0530 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_rename + 0x400d0530 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x10 (size before relaxing) + .literal.esp_vfs_select_triggered + 0x400d0530 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0xc (size before relaxing) + .literal.esp_vfs_select_triggered_isr + 0x400d0530 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0xc (size before relaxing) + .literal.console_open + 0x400d0530 0xc esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x10 (size before relaxing) + .literal.console_write + 0x400d053c 0x4 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.console_fstat + 0x400d0540 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x8 (size before relaxing) + .literal.console_close + 0x400d0540 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.console_read + 0x400d0540 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.console_fcntl + 0x400d0540 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.console_fsync + 0x400d0540 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.console_access + 0x400d0540 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.console_end_select + 0x400d0540 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x8 (size before relaxing) + .literal.console_tcsetattr + 0x400d0540 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.console_tcgetattr + 0x400d0540 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.console_tcdrain + 0x400d0540 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.console_tcflush + 0x400d0540 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.console_start_select + 0x400d0540 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_dev_console_register + 0x400d0540 0x8 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0xc (size before relaxing) + .literal.esp_vfs_console_register + 0x400d0548 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x14 (size before relaxing) + .literal.uart_tx_char + 0x400d0548 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x14 (size before relaxing) + .literal.uart_rx_char + 0x400d054c 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x18 (size before relaxing) + .literal.uart_read_char + 0x400d054c 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x4 (size before relaxing) + .literal.uart_end_select + 0x400d054c 0x10 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x34 (size before relaxing) + .literal.uart_start_select + 0x400d055c 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x50 (size before relaxing) + .literal.select_notif_callback_isr + 0x400d0560 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x18 (size before relaxing) + .literal.uart_tcflush + 0x400d0560 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0xc (size before relaxing) + .literal.uart_tcdrain + 0x400d0560 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0xc (size before relaxing) + .literal.uart_tcgetattr + 0x400d0560 0x1c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x44 (size before relaxing) + .literal.uart_tcsetattr + 0x400d057c 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x44 (size before relaxing) + .literal.uart_access + 0x400d057c 0x10 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x20 (size before relaxing) + .literal.uart_fcntl + 0x400d058c 0xc esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x18 (size before relaxing) + .literal.uart_fstat + 0x400d0598 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x14 (size before relaxing) + .literal.uart_close + 0x400d059c 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x10 (size before relaxing) + .literal.uart_return_char + 0x400d05a0 0x8 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x14 (size before relaxing) + .literal.uart_open + 0x400d05a8 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x20 (size before relaxing) + .literal.uart_fsync + 0x400d05a8 0x8 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x20 (size before relaxing) + .literal.uart_read + 0x400d05b0 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x30 (size before relaxing) + .literal.uart_write + 0x400d05b4 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x1c (size before relaxing) + .literal.esp_vfs_uart_get_vfs + 0x400d05b8 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .literal.ip_event_handler + 0x400d05bc 0x8 esp-idf/main/libmain.a(mesh_main.c.obj) + 0x10 (size before relaxing) + .literal.esp_mesh_p2p_tx_main + 0x400d05c4 0x48 esp-idf/main/libmain.a(mesh_main.c.obj) + 0x9c (size before relaxing) + .literal.esp_mesh_p2p_rx_main + 0x400d060c 0xc esp-idf/main/libmain.a(mesh_main.c.obj) + 0x3c (size before relaxing) + .literal.esp_mesh_comm_p2p_start + 0x400d0618 0x14 esp-idf/main/libmain.a(mesh_main.c.obj) + 0x1c (size before relaxing) + .literal.mesh_event_handler + 0x400d062c 0x88 esp-idf/main/libmain.a(mesh_main.c.obj) + 0x16c (size before relaxing) + .literal.app_main + 0x400d06b4 0xb0 esp-idf/main/libmain.a(mesh_main.c.obj) + 0x140 (size before relaxing) + .literal.mesh_light_set + 0x400d0764 0x0 esp-idf/main/libmain.a(mesh_light.c.obj) + 0x28 (size before relaxing) + .literal.mesh_light_init + 0x400d0764 0x4 esp-idf/main/libmain.a(mesh_light.c.obj) + 0x20 (size before relaxing) + .literal.mesh_connected_indicator + 0x400d0768 0x0 esp-idf/main/libmain.a(mesh_light.c.obj) + 0x4 (size before relaxing) + .literal.mesh_disconnected_indicator + 0x400d0768 0x0 esp-idf/main/libmain.a(mesh_light.c.obj) + 0x4 (size before relaxing) + .literal.mesh_light_process + 0x400d0768 0x4 esp-idf/main/libmain.a(mesh_light.c.obj) + 0x10 (size before relaxing) + .literal.esp_efuse_read_field_blob + 0x400d076c 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x14 (size before relaxing) + .literal.esp_efuse_check_errors + 0x400d0774 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_utility_process + 0x400d0778 0x20 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x38 (size before relaxing) + .literal.esp_efuse_utility_read_reg + 0x400d0798 0x14 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x20 (size before relaxing) + .literal.esp_efuse_utility_fill_buff + 0x400d07ac 0xc esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x10 (size before relaxing) + .literal.esp_efuse_utility_count_once + 0x400d07b8 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x8 (size before relaxing) + .literal.esp_efuse_get_coding_scheme$part$0 + 0x400d07bc 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + 0x4 (size before relaxing) + .literal.esp_efuse_get_coding_scheme + 0x400d07bc 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + 0x4 (size before relaxing) + .literal.s_get_bus_mask + 0x400d07bc 0x30 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x34 (size before relaxing) + .literal.esp_mmu_map_init + 0x400d07ec 0x40 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x54 (size before relaxing) + .literal.esp_mmu_map + 0x400d082c 0x30 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0xa0 (size before relaxing) + .literal.esp_mmu_unmap + 0x400d085c 0x10 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x38 (size before relaxing) + .literal.esp_mmu_vaddr_to_paddr + 0x400d086c 0xc esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x30 (size before relaxing) + .literal.gpio_od_enable$isra$0 + 0x400d0878 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x24 (size before relaxing) + .literal.gpio_od_disable$isra$0 + 0x400d0890 0x4 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x24 (size before relaxing) + .literal.gpio_output_enable$isra$0 + 0x400d0894 0xc esp-idf/driver/libdriver.a(gpio.c.obj) + 0x28 (size before relaxing) + .literal.gpio_output_disable$isra$0 + 0x400d08a0 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x40 (size before relaxing) + .literal.gpio_input_disable$isra$0 + 0x400d08b8 0xc esp-idf/driver/libdriver.a(gpio.c.obj) + 0x28 (size before relaxing) + .literal.gpio_input_enable$isra$0 + 0x400d08c4 0x10 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x38 (size before relaxing) + .literal.gpio_set_level + 0x400d08d4 0x4 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x24 (size before relaxing) + .literal.gpio_set_direction + 0x400d08d8 0x8 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x48 (size before relaxing) + .literal._ledc_update_duty + 0x400d08e0 0x4 esp-idf/driver/libdriver.a(ledc.c.obj) + 0xc (size before relaxing) + .literal._ledc_fade_hw_release + 0x400d08e4 0x4 esp-idf/driver/libdriver.a(ledc.c.obj) + 0x8 (size before relaxing) + .literal.ledc_slow_clk_calibrate + 0x400d08e8 0xc esp-idf/driver/libdriver.a(ledc.c.obj) + 0x1c (size before relaxing) + .literal.ledc_speed_mode_ctx_create + 0x400d08f4 0x4 esp-idf/driver/libdriver.a(ledc.c.obj) + 0x34 (size before relaxing) + .literal.ledc_enable_intr_type$part$0 + 0x400d08f8 0x0 esp-idf/driver/libdriver.a(ledc.c.obj) + 0x4 (size before relaxing) + .literal.ledc_enable_intr_type$isra$0 + 0x400d08f8 0x0 esp-idf/driver/libdriver.a(ledc.c.obj) + 0x8 (size before relaxing) + .literal._ledc_fade_hw_acquire + 0x400d08f8 0x4 esp-idf/driver/libdriver.a(ledc.c.obj) + 0x18 (size before relaxing) + .literal.ledc_timer_set + 0x400d08fc 0x1c esp-idf/driver/libdriver.a(ledc.c.obj) + 0x44 (size before relaxing) + .literal.ledc_set_timer_div + 0x400d0918 0x20 esp-idf/driver/libdriver.a(ledc.c.obj) + 0x94 (size before relaxing) + .literal.ledc_bind_channel_timer + 0x400d0938 0x4 esp-idf/driver/libdriver.a(ledc.c.obj) + 0x40 (size before relaxing) + .literal.ledc_timer_rst + 0x400d093c 0x8 esp-idf/driver/libdriver.a(ledc.c.obj) + 0x40 (size before relaxing) + .literal.ledc_timer_resume + 0x400d0944 0x8 esp-idf/driver/libdriver.a(ledc.c.obj) + 0x40 (size before relaxing) + .literal.ledc_isr_register + 0x400d094c 0x8 esp-idf/driver/libdriver.a(ledc.c.obj) + 0x24 (size before relaxing) + .literal.ledc_timer_config + 0x400d0954 0x1c esp-idf/driver/libdriver.a(ledc.c.obj) + 0x74 (size before relaxing) + .literal.ledc_update_duty + 0x400d0970 0x8 esp-idf/driver/libdriver.a(ledc.c.obj) + 0x4c (size before relaxing) + .literal.ledc_set_duty_with_hpoint + 0x400d0978 0x8 esp-idf/driver/libdriver.a(ledc.c.obj) + 0x50 (size before relaxing) + .literal.ledc_channel_config + 0x400d0980 0x24 esp-idf/driver/libdriver.a(ledc.c.obj) + 0x90 (size before relaxing) + .literal.ledc_set_duty + 0x400d09a4 0x4 esp-idf/driver/libdriver.a(ledc.c.obj) + 0x48 (size before relaxing) + .literal.ledc_fade_func_install + 0x400d09a8 0x10 esp-idf/driver/libdriver.a(ledc.c.obj) + 0x24 (size before relaxing) + .literal.uart_reenable_intr_mask$constprop$0$isra$0 + 0x400d09b8 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + 0x24 (size before relaxing) + .literal.uart_pattern_queue_update$isra$0 + 0x400d09cc 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + 0x4 (size before relaxing) + .literal.uart_set_word_length + 0x400d09cc 0xc esp-idf/driver/libdriver.a(uart.c.obj) + 0x2c (size before relaxing) + .literal.uart_get_word_length + 0x400d09d8 0xc esp-idf/driver/libdriver.a(uart.c.obj) + 0x1c (size before relaxing) + .literal.uart_set_stop_bits + 0x400d09e4 0xc esp-idf/driver/libdriver.a(uart.c.obj) + 0x2c (size before relaxing) + .literal.uart_get_stop_bits + 0x400d09f0 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x24 (size before relaxing) + .literal.uart_set_parity + 0x400d09f8 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x24 (size before relaxing) + .literal.uart_get_parity + 0x400d0a00 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x24 (size before relaxing) + .literal.uart_set_baudrate + 0x400d0a08 0x10 esp-idf/driver/libdriver.a(uart.c.obj) + 0x38 (size before relaxing) + .literal.uart_get_baudrate + 0x400d0a18 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x38 (size before relaxing) + .literal.uart_wait_tx_done + 0x400d0a20 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + 0x64 (size before relaxing) + .literal.uart_get_buffered_data_len + 0x400d0a34 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x2c (size before relaxing) + .literal.uart_flush_input + 0x400d0a3c 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x6c (size before relaxing) + .literal.uart_is_driver_installed + 0x400d0a44 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + 0x4 (size before relaxing) + .literal.uart_set_select_notif_callback + 0x400d0a44 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + 0x4 (size before relaxing) + .literal.uart_get_selectlock + 0x400d0a44 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.bootloader_init_mem + 0x400d0a48 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x4 (size before relaxing) + .literal.bootloader_flash_update_id + 0x400d0a48 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x8 (size before relaxing) + .literal.bootloader_flash_get_wp_pin + 0x400d0a4c 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_init_lock + 0x400d0a4c 0x10 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x18 (size before relaxing) + .literal.spi_flash_op_lock + 0x400d0a5c 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_op_unlock + 0x400d0a5c 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_mmap + 0x400d0a5c 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_munmap + 0x400d0a5c 0xc esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x1c (size before relaxing) + .literal.spi_flash_cache2phys + 0x400d0a68 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x4 (size before relaxing) + .literal.esp_mspi_get_io + 0x400d0a68 0x14 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x1c (size before relaxing) + .literal.esp_flash_read_chip_id + 0x400d0a7c 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x4 (size before relaxing) + .literal.esp_flash_init_default_chip + 0x400d0a7c 0x18 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x38 (size before relaxing) + .literal.esp_flash_app_init + 0x400d0a94 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x14 (size before relaxing) + .literal.esp_flash_app_enable_os_functions + 0x400d0a98 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .literal.esp_crosscore_int_init + 0x400d0aa4 0x1c esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x2c (size before relaxing) + .literal.startup.esp_ipc_init + 0x400d0ac0 0x28 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x38 (size before relaxing) + .literal.esp_ipc_call_nonblocking + 0x400d0ae8 0xc esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x28 (size before relaxing) + .literal.find_entry_and_check_all_reset + 0x400d0af4 0x4 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.find_entry_from_task_handle_and_check_all_reset + 0x400d0af8 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x4 (size before relaxing) + .literal.task_wdt_timer_feed + 0x400d0af8 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x8 (size before relaxing) + .literal.add_entry + 0x400d0af8 0x18 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x58 (size before relaxing) + .literal.task_wdt_timeout_abort + 0x400d0b10 0x1c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x50 (size before relaxing) + .literal.esp_task_wdt_add + 0x400d0b2c 0x8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x20 (size before relaxing) + .literal.subscribe_idle + 0x400d0b34 0x18 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x30 (size before relaxing) + .literal.esp_task_wdt_init + 0x400d0b4c 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x48 (size before relaxing) + .literal.esp_task_wdt_reset + 0x400d0b60 0x8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x40 (size before relaxing) + .literal.idle_hook_cb + 0x400d0b68 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x4 (size before relaxing) + .literal.esp_task_wdt_print_triggered_tasks + 0x400d0b68 0x1c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x40 (size before relaxing) + .literal.task_wdt_isr + 0x400d0b84 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x98 (size before relaxing) + .literal.esp_task_wdt_impl_timer_allocate + 0x400d0b98 0x8 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x38 (size before relaxing) + .literal.esp_task_wdt_impl_timer_feed + 0x400d0ba0 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 + 0x400d0ba0 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 + 0x400d0ba0 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x10 (size before relaxing) + .literal.get_flash_clock_divider + 0x400d0ba0 0x10 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x24 (size before relaxing) + .literal.spi_flash_hal_init + 0x400d0bb0 0x10 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x20 (size before relaxing) + .literal.spi_flash_hal_supports_direct_write + 0x400d0bc0 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_hal_supports_direct_read + 0x400d0bc0 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x4 (size before relaxing) + .literal.ledc_hal_init + 0x400d0bc0 0x4 esp-idf/hal/libhal.a(ledc_hal.c.obj) + .literal.esp_cpu_configure_region_protection + 0x400d0bc4 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + 0x10 (size before relaxing) + .literal.periph_rtc_dig_clk8m_enable + 0x400d0bcc 0xc esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + 0x24 (size before relaxing) + .literal.periph_rtc_dig_clk8m_get_freq + 0x400d0bd8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + 0x4 (size before relaxing) + .literal.s_sleep_hook_register + 0x400d0bd8 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x20 (size before relaxing) + .literal.esp_sleep_periph_use_8m + 0x400d0be4 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_deep_sleep_register_phy_hook + 0x400d0be8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x8 (size before relaxing) + .literal.esp_clk_tree_src_get_freq_hz + 0x400d0bec 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + 0x64 (size before relaxing) + .literal.esp_clk_tree_rc_fast_d256_get_freq_hz + 0x400d0c0c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x14 (size before relaxing) + .literal.esp_clk_tree_xtal32k_get_freq_hz + 0x400d0c10 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x14 (size before relaxing) + .literal.esp_clk_tree_lp_slow_get_freq_hz + 0x400d0c10 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x14 (size before relaxing) + .literal.esp_clk_tree_rc_fast_get_freq_hz + 0x400d0c10 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x8 (size before relaxing) + .literal.esp_clk_tree_lp_fast_get_freq_hz + 0x400d0c14 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x10 (size before relaxing) + .literal.esp_err_to_name + 0x400d0c18 0x8 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .literal._ZL18nvs_find_ns_handlemPPN3nvs15NVSHandleSimpleE + 0x400d0c20 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._ZL19nvs_get_str_or_blobmN3nvs8ItemTypeEPKcPvPj + 0x400d0c24 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0xc (size before relaxing) + .literal.nvs_flash_init_partition + 0x400d0c24 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .literal.nvs_flash_init + 0x400d0c28 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x8 (size before relaxing) + .literal.nvs_open_from_partition + 0x400d0c2c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x20 (size before relaxing) + .literal.nvs_open + 0x400d0c30 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x8 (size before relaxing) + .literal.nvs_erase_key + 0x400d0c30 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0xc (size before relaxing) + .literal.nvs_set_i8 + 0x400d0c30 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0xc (size before relaxing) + .literal.nvs_set_u8 + 0x400d0c30 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0xc (size before relaxing) + .literal.nvs_set_u16 + 0x400d0c30 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0xc (size before relaxing) + .literal.nvs_set_u32 + 0x400d0c30 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0xc (size before relaxing) + .literal.nvs_commit + 0x400d0c30 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0xc (size before relaxing) + .literal.nvs_set_blob + 0x400d0c30 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0xc (size before relaxing) + .literal.nvs_get_i8 + 0x400d0c30 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0xc (size before relaxing) + .literal.nvs_get_u8 + 0x400d0c30 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0xc (size before relaxing) + .literal.nvs_get_u16 + 0x400d0c30 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0xc (size before relaxing) + .literal.nvs_get_u32 + 0x400d0c30 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0xc (size before relaxing) + .literal.nvs_get_blob + 0x400d0c30 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal.nvs_close + 0x400d0c30 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .literal._ZN3nvs7Storage19populateBlobIndicesER14intrusive_listINS0_13BlobIndexNodeEE + 0x400d0c34 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs7Storage20eraseOrphanDataBlobsER14intrusive_listINS0_13BlobIndexNodeEE + 0x400d0c38 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x28 (size before relaxing) + .literal._ZN3nvs7Storage8findItemEhNS_8ItemTypeEPKcRPNS_4PageERNS_4ItemEhNS_9VerOffsetE + 0x400d0c38 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs7Storage18writeMultiPageBlobEhPKcPKvjNS_9VerOffsetE + 0x400d0c38 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x2c (size before relaxing) + .literal._ZN3nvs7Storage16cmpMultiPageBlobEhPKcPKvj + 0x400d0c3c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs7Storage18eraseMultiPageBlobEhPKcNS_9VerOffsetE + 0x400d0c3c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x18 (size before relaxing) + .literal._ZN3nvs7Storage17readMultiPageBlobEhPKcPvj + 0x400d0c3c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x10 (size before relaxing) + .literal._ZN3nvs7Storage8readItemEhNS_8ItemTypeEPKcPvj + 0x400d0c3c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs7Storage9writeItemEhNS_8ItemTypeEPKcPKvj + 0x400d0c3c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x38 (size before relaxing) + .literal._ZN3nvs7Storage9eraseItemEhNS_8ItemTypeEPKc + 0x400d0c3c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs7Storage14eraseNamespaceEh + 0x400d0c3c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs7Storage7findKeyEhPKcPNS_8ItemTypeE + 0x400d0c3c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs7Storage15getItemDataSizeEhNS_8ItemTypeEPKcRj + 0x400d0c3c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs7Storage22calcEntriesInNamespaceEhRj + 0x400d0c3c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE17clearAndFreeNodesEv + 0x400d0c3c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs7StorageD2Ev + 0x400d0c3c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs7Storage26eraseMismatchedBlobIndexesER14intrusive_listINS0_13BlobIndexNodeEE + 0x400d0c40 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x30 (size before relaxing) + .literal._ZN3nvs7Storage21createOrOpenNamespaceEPKcbRh + 0x400d0c44 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x18 (size before relaxing) + .literal._ZN3nvs7Storage4initEmm + 0x400d0c4c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x34 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimpleD2Ev + 0x400d0c4c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs15NVSHandleSimpleD0Ev + 0x400d0c50 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple14set_typed_itemENS_8ItemTypeEPKcPKvj + 0x400d0c50 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple8set_blobEPKcPKvj + 0x400d0c50 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple14get_typed_itemENS_8ItemTypeEPKcPvj + 0x400d0c50 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple10get_stringEPKcPcj + 0x400d0c50 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple8get_blobEPKcPvj + 0x400d0c50 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple10set_stringEPKcS2_ + 0x400d0c50 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple13get_item_sizeENS_8ItemTypeEPKcRj + 0x400d0c50 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple8find_keyEPKcR10nvs_type_t + 0x400d0c50 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple9erase_allEv + 0x400d0c50 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple10erase_itemEPKc + 0x400d0c50 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple20get_used_entry_countERj + 0x400d0c50 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs12NVSPartition8read_rawEjPvj + 0x400d0c50 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs12NVSPartition9write_rawEjPKvj + 0x400d0c50 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs12NVSPartition11erase_rangeEjj + 0x400d0c50 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs12NVSPartitionD5Ev + 0x400d0c50 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs12NVSPartition5writeEjPKvj + 0x400d0c50 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs12NVSPartition4readEjPvj + 0x400d0c50 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs12NVSPartitionC2EPK15esp_partition_t + 0x400d0c50 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs19NVSPartitionManagerD5Ev + 0x400d0c54 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs19NVSPartitionManager12get_instanceEv + 0x400d0c54 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs19NVSPartitionManager24lookup_storage_from_nameEPKc + 0x400d0c5c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs19NVSPartitionManager11open_handleEPKcS2_15nvs_open_mode_tPPNS_15NVSHandleSimpleE + 0x400d0c5c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x10 (size before relaxing) + .literal._ZN3nvs19NVSPartitionManager11init_customEPNS_9PartitionEmm + 0x400d0c5c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x18 (size before relaxing) + .literal._ZN3nvs19NVSPartitionManager14init_partitionEPKc + 0x400d0c60 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x10 (size before relaxing) + .literal._ZN3nvs19NVSPartitionManager12close_handleEPNS_15NVSHandleSimpleE + 0x400d0c60 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .literal._ZN3nvs4LockC2Ev + 0x400d0c64 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs4LockD2Ev + 0x400d0c68 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs8HashList6insertERKNS_4ItemEj + 0x400d0c68 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs8HashList4findEjRKNS_4ItemE + 0x400d0c6c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs8HashList5clearEv + 0x400d0c6c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs8HashListD2Ev + 0x400d0c70 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs8HashList5eraseEj + 0x400d0c70 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs4ItemC5EhNS_8ItemTypeEhPKch + 0x400d0c70 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs4PageC2Ev + 0x400d0c70 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page6Header14calculateCrc32Ev + 0x400d0c74 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page10initializeEv + 0x400d0c78 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs4Page5eraseEv + 0x400d0c78 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs4Page11markFreeingEv + 0x400d0c78 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page8markFullEv + 0x400d0c7c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs4Page20updateFirstUsedEntryEjj + 0x400d0c7c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page15alterEntryStateEjNS0_10EntryStateE + 0x400d0c80 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page10writeEntryERKNS_4ItemE + 0x400d0c84 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs4Page9copyItemsERS0_ + 0x400d0c84 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x1c (size before relaxing) + .literal._ZN3nvs4Page20alterEntryRangeStateEjjNS0_10EntryStateE + 0x400d0c88 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs4Page14writeEntryDataEPKhj + 0x400d0c88 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs4Page9writeItemEhNS_8ItemTypeEPKcPKvjh + 0x400d0c88 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x38 (size before relaxing) + .literal._ZN3nvs4Page17eraseEntryAndSpanEj + 0x400d0c8c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x30 (size before relaxing) + .literal._ZN3nvs4Page8findItemEhNS_8ItemTypeEPKcRjRNS_4ItemEhNS_9VerOffsetE + 0x400d0c90 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x20 (size before relaxing) + .literal._ZN3nvs4Page7cmpItemEhNS_8ItemTypeEPKcPKvjhNS_9VerOffsetE + 0x400d0c90 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x18 (size before relaxing) + .literal._ZN3nvs4Page8readItemEhNS_8ItemTypeEPKcPvjhNS_9VerOffsetE + 0x400d0c90 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x1c (size before relaxing) + .literal._ZN3nvs4Page9eraseItemEhNS_8ItemTypeEPKchNS_9VerOffsetE + 0x400d0c90 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs4Page15mLoadEntryTableEv + 0x400d0c90 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x64 (size before relaxing) + .literal._ZN3nvs4Page4loadEPNS_9PartitionEm + 0x400d0c90 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x18 (size before relaxing) + .literal._ZN14intrusive_listIN3nvs4PageEE5clearEv + 0x400d0c9c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .literal._ZN3nvs11PageManager12activatePageEv + 0x400d0ca0 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x10 (size before relaxing) + .literal._ZN3nvs11PageManager14requestNewPageEv + 0x400d0ca8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x1c (size before relaxing) + .literal._ZN3nvs11PageManager4loadEPNS_9PartitionEmm + 0x400d0ca8 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x64 (size before relaxing) + .literal._ZN3nvs16partition_lookup20lookup_nvs_partitionEPKcPPNS_12NVSPartitionE + 0x400d0cac 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + 0xc (size before relaxing) + .literal._ZNK3nvs4Item14calculateCrc32Ev + 0x400d0cac 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0xc (size before relaxing) + .literal._ZNK3nvs4Item26calculateCrc32WithoutValueEv + 0x400d0cac 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs4Item14calculateCrc32EPKhj + 0x400d0cac 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x4 (size before relaxing) + .literal.esp_netif_add_to_list_unsafe + 0x400d0cac 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0xc (size before relaxing) + .literal.esp_netif_remove_from_list_unsafe + 0x400d0cb4 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x1c (size before relaxing) + .literal.esp_netif_get_nr_of_ifs + 0x400d0cc0 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_next_unsafe + 0x400d0cc0 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_is_netif_listed + 0x400d0cc0 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_get_handle_from_ifkey_unsafe + 0x400d0cc0 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0xc (size before relaxing) + .literal.esp_netif_api_cb + 0x400d0cc4 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.tcpip_init_done + 0x400d0cc8 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_set_mac_api + 0x400d0cc8 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 + 0x400d0cc8 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_dhcps_cb + 0x400d0cc8 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x2c (size before relaxing) + .literal.netif_send_mldv6 + 0x400d0cd8 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xc (size before relaxing) + .literal.netif_send_garp + 0x400d0cdc 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x10 (size before relaxing) + .literal.esp_netif_dhcps_stop_api + 0x400d0ce4 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_lwip_ipc_call_msg + 0x400d0ce8 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x1c (size before relaxing) + .literal.esp_netif_lwip_ipc_call + 0x400d0cf0 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.dns_clear_servers$constprop$0 + 0x400d0cf0 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_start_ip_lost_timer$isra$0 + 0x400d0cf0 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_dhcpc_start_api + 0x400d0cf4 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x20 (size before relaxing) + .literal.esp_netif_dhcpc_stop_api + 0x400d0cfc 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x1c (size before relaxing) + .literal.esp_netif_lwip_remove + 0x400d0d00 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x1c (size before relaxing) + .literal.esp_netif_update_default_netif + 0x400d0d00 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_ip_lost_timer + 0x400d0d04 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x28 (size before relaxing) + .literal.esp_netif_destroy_api + 0x400d0d08 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x38 (size before relaxing) + .literal.esp_netif_new_api + 0x400d0d0c 0x2c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xc0 (size before relaxing) + .literal.esp_netif_start_api + 0x400d0d38 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x9c (size before relaxing) + .literal.esp_netif_stop_api + 0x400d0d68 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x24 (size before relaxing) + .literal.esp_netif_up_api + 0x400d0d68 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x10 (size before relaxing) + .literal.esp_netif_down_api + 0x400d0d68 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x34 (size before relaxing) + .literal.netif_callback_fn + 0x400d0d6c 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x54 (size before relaxing) + .literal.esp_netif_init + 0x400d0d74 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x54 (size before relaxing) + .literal.esp_netif_new + 0x400d0d84 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_attach + 0x400d0d88 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x10 (size before relaxing) + .literal.esp_netif_set_mac + 0x400d0d8c 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_start + 0x400d0d90 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_stop + 0x400d0d94 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_netstack_buf_ref + 0x400d0d98 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_netstack_buf_free + 0x400d0d98 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_dhcpc_stop + 0x400d0d98 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_dhcpc_start + 0x400d0d9c 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_dhcps_stop + 0x400d0da0 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_up + 0x400d0da4 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_down + 0x400d0da8 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_update_default_netif_lwip + 0x400d0dac 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x2c (size before relaxing) + .literal.esp_netif_get_old_ip_info + 0x400d0db8 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_get_ip_info + 0x400d0db8 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_set_old_ip_info + 0x400d0db8 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_supp_crc32 + 0x400d0dbc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_gmac + 0x400d0dbc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_decrypt + 0x400d0dbc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_encrypt + 0x400d0dbc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_unwrap + 0x400d0dbc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_wrap + 0x400d0dbc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x4 (size before relaxing) + .literal.sha256_prf_bits + 0x400d0dbc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + 0x14 (size before relaxing) + .literal.sha256_prf + 0x400d0dbc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + 0x4 (size before relaxing) + .literal.sha1_prf + 0x400d0dbc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + 0x14 (size before relaxing) + .literal.digest_vector + 0x400d0dbc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x1c (size before relaxing) + .literal.hmac_vector + 0x400d0dbc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x1c (size before relaxing) + .literal.sha256_vector + 0x400d0dbc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.sha1_vector + 0x400d0dbc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.md5_vector + 0x400d0dbc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.hmac_sha256_vector + 0x400d0dbc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.hmac_sha256 + 0x400d0dbc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.hmac_md5_vector + 0x400d0dbc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.hmac_md5 + 0x400d0dbc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.hmac_sha1_vector + 0x400d0dbc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.hmac_sha1 + 0x400d0dbc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.aes_encrypt_init + 0x400d0dbc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x14 (size before relaxing) + .literal.aes_encrypt + 0x400d0dbc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.aes_encrypt_deinit + 0x400d0dbc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x8 (size before relaxing) + .literal.aes_decrypt_init + 0x400d0dbc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x14 (size before relaxing) + .literal.aes_decrypt + 0x400d0dbc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.aes_decrypt_deinit + 0x400d0dbc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x8 (size before relaxing) + .literal.aes_128_cbc_encrypt + 0x400d0dbc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x14 (size before relaxing) + .literal.aes_128_cbc_decrypt + 0x400d0dbc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x14 (size before relaxing) + .literal.aes_ctr_encrypt + 0x400d0dbc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x10 (size before relaxing) + .literal.pbkdf2_sha1 + 0x400d0dbc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x8 (size before relaxing) + .literal.omac1_aes_vector + 0x400d0dbc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x1c (size before relaxing) + .literal.omac1_aes_128_vector + 0x400d0dbc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.omac1_aes_128 + 0x400d0dbc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.aes_wrap + 0x400d0dbc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + 0x24 (size before relaxing) + .literal.aes_unwrap + 0x400d0dbc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + 0x24 (size before relaxing) + .literal.os_get_time + 0x400d0dbc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x4 (size before relaxing) + .literal.os_random + 0x400d0dbc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x4 (size before relaxing) + .literal.os_get_random + 0x400d0dbc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x4 (size before relaxing) + .literal.os_sleep + 0x400d0dbc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x8 (size before relaxing) + .literal.forced_memzero + 0x400d0dbc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x4 (size before relaxing) + .literal.ccmp_aad_nonce + 0x400d0dbc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + 0xc (size before relaxing) + .literal.ccmp_decrypt + 0x400d0dbc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + 0x14 (size before relaxing) + .literal.ccmp_encrypt + 0x400d0dbc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + 0x18 (size before relaxing) + .literal.WPA_GET_BE32 + 0x400d0dbc 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + .literal.inc32 + 0x400d0dc0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + 0x4 (size before relaxing) + .literal.aes_gcm_init_hash_subkey + 0x400d0dc0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + 0xc (size before relaxing) + .literal.aes_gctr$part$0 + 0x400d0dc0 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + 0x14 (size before relaxing) + .literal.shift_right_block + 0x400d0dc4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + 0x10 (size before relaxing) + .literal.gf_mult + 0x400d0dc4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + 0x14 (size before relaxing) + .literal.ghash + 0x400d0dc4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + 0x20 (size before relaxing) + .literal.aes_gcm_ghash + 0x400d0dc4 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + 0x18 (size before relaxing) + .literal.aes_gcm_prepare_j0 + 0x400d0dc8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + 0x18 (size before relaxing) + .literal.aes_gcm_ae + 0x400d0dc8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + 0x20 (size before relaxing) + .literal.aes_gmac + 0x400d0dc8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + 0x4 (size before relaxing) + .literal.hex2byte + 0x400d0dc8 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x8 (size before relaxing) + .literal.hexstr2bin + 0x400d0dcc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x4 (size before relaxing) + .literal.wpa_get_ntp_timestamp + 0x400d0dcc 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x18 (size before relaxing) + .literal.printf_decode + 0x400d0dd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x8 (size before relaxing) + .literal.dup_binstr + 0x400d0dd0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x8 (size before relaxing) + .literal.wpa_config_parse_string + 0x400d0dd0 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x34 (size before relaxing) + .literal.bin_clear_free + 0x400d0dd4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x8 (size before relaxing) + .literal.os_memdup + 0x400d0dd4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x8 (size before relaxing) + .literal.os_reltime_expired + 0x400d0dd4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x4 (size before relaxing) + .literal.sha1_extract + 0x400d0dd4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + 0x14 (size before relaxing) + .literal.fastpbkdf2_hmac_sha1 + 0x400d0dd4 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + 0x88 (size before relaxing) + .literal.aes_ccm_auth + 0x400d0de8 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0xc (size before relaxing) + .literal.aes_ccm_encr$constprop$0 + 0x400d0dec 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0xc (size before relaxing) + .literal.aes_ccm_auth_start$constprop$0 + 0x400d0dec 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x20 (size before relaxing) + .literal.aes_ccm_ae + 0x400d0dec 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x1c (size before relaxing) + .literal.aes_ccm_ad + 0x400d0dec 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x20 (size before relaxing) + .literal.esp_mesh_send_event_internal + 0x400d0dec 0x4 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + 0x8 (size before relaxing) + .literal.wifi_deinit_internal + 0x400d0df0 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x48 (size before relaxing) + .literal.startup.s_set_default_wifi_log_level + 0x400d0e08 0x14 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x20 (size before relaxing) + .literal.esp_wifi_init + 0x400d0e1c 0x40 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0xc0 (size before relaxing) + .literal.wifi_default_action_ap_stop + 0x400d0e5c 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x8 (size before relaxing) + .literal.wifi_default_action_sta_stop + 0x400d0e60 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x8 (size before relaxing) + .literal.wifi_start + 0x400d0e60 0x2c esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x4c (size before relaxing) + .literal.wifi_default_action_ap_start + 0x400d0e8c 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x8 (size before relaxing) + .literal.wifi_default_action_sta_start + 0x400d0e8c 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x8 (size before relaxing) + .literal.wifi_default_action_sta_disconnected + 0x400d0e8c 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x8 (size before relaxing) + .literal.wifi_default_action_sta_connected + 0x400d0e8c 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x28 (size before relaxing) + .literal.wifi_default_action_sta_got_ip + 0x400d0e8c 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x1c (size before relaxing) + .literal.esp_netif_attach_wifi + 0x400d0e90 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x1c (size before relaxing) + .literal.clear_default_wifi_handlers$isra$0 + 0x400d0e98 0x2c esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x4c (size before relaxing) + .literal.set_default_wifi_handlers + 0x400d0ec4 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x50 (size before relaxing) + .literal.esp_netif_attach_wifi_station + 0x400d0ec4 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_attach_wifi_ap + 0x400d0ec4 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_create_default_wifi_mesh_netifs + 0x400d0ec4 0x3c esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x6c (size before relaxing) + .literal.mbedtls_mpi_free + 0x400d0f00 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_grow + 0x400d0f00 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_safe_cond_assign + 0x400d0f00 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_safe_cond_swap + 0x400d0f08 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_mpi_resize_clear + 0x400d0f0c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_mpi_shrink + 0x400d0f0c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_mpi_copy + 0x400d0f0c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_mpi_lset + 0x400d0f0c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_mpi_set_bit + 0x400d0f0c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_bitlen + 0x400d0f0c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_size + 0x400d0f10 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_read_binary_le + 0x400d0f10 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_mpi_read_binary + 0x400d0f10 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_mpi_write_binary_le + 0x400d0f10 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_write_binary + 0x400d0f10 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_shift_l + 0x400d0f10 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_shift_r + 0x400d0f10 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_cmp_int + 0x400d0f10 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_add_abs + 0x400d0f14 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_mpi_sub_abs + 0x400d0f18 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x14 (size before relaxing) + .literal.add_sub_mpi + 0x400d0f20 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_mpi_add_mpi + 0x400d0f24 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_sub_mpi + 0x400d0f24 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_add_int + 0x400d0f24 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_sub_int + 0x400d0f24 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_div_mpi + 0x400d0f24 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x94 (size before relaxing) + .literal.mbedtls_mpi_div_int + 0x400d0f28 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_mod_mpi + 0x400d0f28 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x18 (size before relaxing) + .literal.mpi_check_small_factors + 0x400d0f28 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_gcd + 0x400d0f30 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x48 (size before relaxing) + .literal.mbedtls_mpi_fill_random + 0x400d0f38 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x8 (size before relaxing) + .literal.mpi_miller_rabin + 0x400d0f38 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x5c (size before relaxing) + .literal.mbedtls_mpi_random + 0x400d0f38 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_inv_mod + 0x400d0f38 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xa8 (size before relaxing) + .literal.mbedtls_mpi_is_prime_ext + 0x400d0f38 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_ct_uint_lt + 0x400d0f38 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_mpi_core_bigendian_to_host + 0x400d0f3c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_mpi_core_uint_le_mpi + 0x400d0f3c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_mpi_core_lt_ct + 0x400d0f3c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_mpi_core_read_le + 0x400d0f3c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_core_read_be + 0x400d0f3c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_core_write_le + 0x400d0f3c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_core_write_be + 0x400d0f3c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_core_shift_r + 0x400d0f3c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_mpi_core_shift_l + 0x400d0f3c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_core_montmul + 0x400d0f3c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_mpi_core_get_mont_r2_unsafe + 0x400d0f44 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_mpi_core_fill_random + 0x400d0f44 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_core_random + 0x400d0f44 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_mpi_core_to_mont_rep + 0x400d0f44 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_cipher_info_from_type + 0x400d0f44 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_info_from_values + 0x400d0f48 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_cipher_init + 0x400d0f4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_cipher_free + 0x400d0f4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_cipher_setup + 0x400d0f4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_cipher_setkey + 0x400d0f4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_cipher_update + 0x400d0f4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x18 (size before relaxing) + .literal.xts_aes_ctx_alloc + 0x400d0f4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.xts_aes_setkey_dec_wrap + 0x400d0f4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.xts_aes_setkey_enc_wrap + 0x400d0f4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_crypt_xts_wrap + 0x400d0f4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.gcm_ctx_free + 0x400d0f4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.gcm_ctx_alloc + 0x400d0f4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.gcm_aria_setkey_wrap + 0x400d0f4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.gcm_aes_setkey_wrap + 0x400d0f4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.ccm_ctx_free + 0x400d0f4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.ccm_ctx_alloc + 0x400d0f4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.ccm_aria_setkey_wrap + 0x400d0f4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.ccm_aes_setkey_wrap + 0x400d0f4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aria_ctx_free + 0x400d0f4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.aria_ctx_alloc + 0x400d0f4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.aria_setkey_dec_wrap + 0x400d0f4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aria_setkey_enc_wrap + 0x400d0f4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aria_crypt_ctr_wrap + 0x400d0f4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aria_crypt_cfb128_wrap + 0x400d0f4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aria_crypt_cbc_wrap + 0x400d0f4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aria_crypt_ecb_wrap + 0x400d0f4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_ctx_free + 0x400d0f4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.aes_ctx_alloc + 0x400d0f4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.aes_setkey_dec_wrap + 0x400d0f4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_crypt_ctr_wrap + 0x400d0f4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_crypt_ofb_wrap + 0x400d0f4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_crypt_cfb128_wrap + 0x400d0f4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_crypt_cbc_wrap + 0x400d0f4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_crypt_ecb_wrap + 0x400d0f4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.xts_aes_ctx_free + 0x400d0f4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.aes_setkey_enc_wrap + 0x400d0f4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.cmac_multiply_by_u$part$0 + 0x400d0f4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x8 (size before relaxing) + .literal.cmac_generate_subkeys + 0x400d0f4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_cipher_cmac_starts + 0x400d0f4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_cipher_cmac_update + 0x400d0f4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_cipher_cmac_finish + 0x400d0f4c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_md_info_from_type + 0x400d0f4c 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .literal.mbedtls_md_init + 0x400d0f74 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_md_free + 0x400d0f74 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_md_setup + 0x400d0f74 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x30 (size before relaxing) + .literal.mbedtls_md_starts + 0x400d0f74 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_md_update + 0x400d0f74 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_md_finish + 0x400d0f74 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_md + 0x400d0f74 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_md_hmac_starts + 0x400d0f74 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_md_hmac_update + 0x400d0f74 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_md_hmac_finish + 0x400d0f74 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_md_hmac_reset + 0x400d0f74 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_md5 + 0x400d0f74 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_calloc + 0x400d0f74 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .literal.mbedtls_free + 0x400d0f78 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .literal.mbedtls_platform_zeroize + 0x400d0f7c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .literal.mbedtls_zeroize_and_free + 0x400d0f80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_sha1 + 0x400d0f80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_sha256 + 0x400d0f80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_sha512 + 0x400d0f80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + 0x14 (size before relaxing) + .literal.keccak_f1600 + 0x400d0f80 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + 0x30 (size before relaxing) + .literal.mbedtls_sha3_init + 0x400d0f8c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha3_free + 0x400d0f8c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha3_starts + 0x400d0f8c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha3_update + 0x400d0f8c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_sha3_finish + 0x400d0f8c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_sha3 + 0x400d0f8c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + 0x14 (size before relaxing) + .literal.esp_mbedtls_mem_calloc + 0x400d0f8c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + 0x4 (size before relaxing) + .literal.esp_mbedtls_mem_free + 0x400d0f8c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_xts_init + 0x400d0f8c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x8 (size before relaxing) + .literal.esp_aes_xts_free + 0x400d0f8c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x8 (size before relaxing) + .literal.esp_aes_xts_setkey_enc + 0x400d0f8c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x8 (size before relaxing) + .literal.esp_aes_xts_setkey_dec + 0x400d0f8c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_crypt_xts + 0x400d0f8c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x1c (size before relaxing) + .literal.esp_aes_init + 0x400d0f94 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_free + 0x400d0f94 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_setkey + 0x400d0f94 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_block + 0x400d0f94 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x14 (size before relaxing) + .literal.esp_aes_acquire_hardware + 0x400d0f94 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0xc (size before relaxing) + .literal.esp_aes_release_hardware + 0x400d0f98 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0xc (size before relaxing) + .literal.esp_aes_crypt_ecb + 0x400d0f9c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x14 (size before relaxing) + .literal.esp_aes_crypt_cbc + 0x400d0fa0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x24 (size before relaxing) + .literal.esp_aes_crypt_cfb128 + 0x400d0fa0 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x30 (size before relaxing) + .literal.esp_aes_crypt_ctr + 0x400d0fac 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x34 (size before relaxing) + .literal.esp_aes_crypt_ofb + 0x400d0fb8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x2c (size before relaxing) + .literal.calculate_rinv + 0x400d0fb8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x10 (size before relaxing) + .literal.modular_inverse$isra$0 + 0x400d0fbc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .literal.mbedtls_mpi_exp_mod + 0x400d0fc0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x6c (size before relaxing) + .literal.mbedtls_mpi_mul_mpi + 0x400d0fc8 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x5c (size before relaxing) + .literal.mpi_mult_mpi_overlong$isra$0 + 0x400d0fd4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_mpi_mul_int + 0x400d0fd4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x8 (size before relaxing) + .literal.esp_mpi_enable_hardware_hw_op + 0x400d0fd8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0x28 (size before relaxing) + .literal.esp_mpi_disable_hardware_hw_op + 0x400d0fd8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0x18 (size before relaxing) + .literal.esp_mpi_mul_mpi_hw_op + 0x400d0fd8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0x14 (size before relaxing) + .literal.esp_mpi_mult_mpi_failover_mod_mult_hw_op + 0x400d0fd8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0x28 (size before relaxing) + .literal.esp_mont_hw_op + 0x400d0fd8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0x28 (size before relaxing) + .literal.esp_internal_sha1_parallel_engine_process + 0x400d0fd8 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x5c (size before relaxing) + .literal.mbedtls_sha1_init + 0x400d0fe8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha1_free + 0x400d0fe8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha1_starts + 0x400d0fe8 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_internal_sha1_process + 0x400d0ffc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha1_update + 0x400d0ffc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_sha1_finish + 0x400d0ffc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_sha256_software_process + 0x400d1000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0xc (size before relaxing) + .literal.esp_internal_sha256_parallel_engine_process + 0x400d1008 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_sha256_init + 0x400d1008 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha256_free + 0x400d1008 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha256_starts + 0x400d1008 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x44 (size before relaxing) + .literal.mbedtls_sha256_update + 0x400d1048 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_sha256_finish + 0x400d1048 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_sha512_software_process + 0x400d104c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .literal.esp_internal_sha512_parallel_engine_process + 0x400d1050 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_sha512_init + 0x400d1050 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha512_free + 0x400d1050 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha512_starts + 0x400d1050 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x84 (size before relaxing) + .literal.mbedtls_sha512_update + 0x400d1090 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_sha512_finish + 0x400d1090 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x14 (size before relaxing) + .literal.gcm_mult + 0x400d1094 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .literal.esp_gcm_ghash + 0x400d1098 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x10 (size before relaxing) + .literal.esp_aes_gcm_setkey + 0x400d1098 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_gcm_init + 0x400d1098 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_gcm_free + 0x400d1098 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_gcm_update + 0x400d1098 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x44 (size before relaxing) + .literal.esp_md5_finish + 0x400d10ac 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .literal.esp_md5_update + 0x400d10b0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .literal.esp_md5_init + 0x400d10b4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .literal.esp_md5_starts + 0x400d10b8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x4 (size before relaxing) + .literal.esp_md5_free + 0x400d10b8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x4 (size before relaxing) + .literal.aria_a + 0x400d10b8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x14 (size before relaxing) + .literal.aria_fo_xor + 0x400d10c0 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x18 (size before relaxing) + .literal.aria_rot128 + 0x400d10d4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_aria_setkey_enc + 0x400d10d4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x44 (size before relaxing) + .literal.mbedtls_aria_setkey_dec + 0x400d10d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_aria_crypt_ecb + 0x400d10d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_aria_init + 0x400d10d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_aria_free + 0x400d10d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_aria_crypt_cbc + 0x400d10d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_aria_crypt_cfb128 + 0x400d10d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_aria_crypt_ctr + 0x400d10d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_asn1_get_tag + 0x400d10d8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.asn1_get_tagged_int + 0x400d10dc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_asn1_get_int + 0x400d10dc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_asn1_get_mpi + 0x400d10dc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_asn1_get_bitstring_null + 0x400d10dc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_asn1_get_alg + 0x400d10dc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_asn1_write_len_and_tag + 0x400d10dc 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_mpi + 0x400d10e4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ccm_crypt + 0x400d10e4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ccm_init + 0x400d10e4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ccm_setkey + 0x400d10e4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ccm_free + 0x400d10e4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ccm_update + 0x400d10e4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_ct_uint_lt + 0x400d10e4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_md_get_size_from_type + 0x400d10e8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x8 (size before relaxing) + .literal.mgf_mask + 0x400d10ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x34 (size before relaxing) + .literal.hash_mprime + 0x400d10ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x24 (size before relaxing) + .literal.rsa_rsassa_pkcs1_v15_encode + 0x400d10ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_rsa_free$part$0 + 0x400d10ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x34 (size before relaxing) + .literal.rsa_check_context$isra$0 + 0x400d10ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_rsa_import_raw + 0x400d10ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_rsa_complete + 0x400d10ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x38 (size before relaxing) + .literal.mbedtls_rsa_init + 0x400d10ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_rsa_get_bitlen + 0x400d10ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_rsa_check_pubkey + 0x400d10ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_rsa_parse_pubkey + 0x400d10ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_rsa_check_privkey + 0x400d10ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_rsa_check_pub_priv + 0x400d10ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_rsa_public + 0x400d10ec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_rsa_private + 0x400d10ec 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x114 (size before relaxing) + .literal.rsa_rsassa_pss_sign_no_mode_check + 0x400d10f0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_rsa_rsaes_oaep_encrypt + 0x400d10f0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_rsa_rsaes_pkcs1_v15_encrypt + 0x400d10f0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_rsa_pkcs1_encrypt + 0x400d10f0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_rsa_rsaes_oaep_decrypt + 0x400d10f0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x38 (size before relaxing) + .literal.mbedtls_rsa_rsaes_pkcs1_v15_decrypt + 0x400d10f4 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x28 (size before relaxing) + .literal.mbedtls_rsa_pkcs1_decrypt + 0x400d10fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_rsa_rsassa_pss_sign + 0x400d10fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_rsa_rsassa_pkcs1_v15_sign + 0x400d10fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_rsa_pkcs1_sign + 0x400d10fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_rsa_rsassa_pss_verify_ext + 0x400d10fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_rsa_rsassa_pss_verify + 0x400d10fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_rsa_rsassa_pkcs1_v15_verify + 0x400d10fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_rsa_pkcs1_verify + 0x400d10fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_rsa_free + 0x400d10fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_rsa_deduce_primes + 0x400d10fc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x74 (size before relaxing) + .literal.mbedtls_rsa_deduce_private_exponent + 0x400d1100 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x38 (size before relaxing) + .literal.mbedtls_rsa_deduce_crt + 0x400d1100 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_rsa_validate_params + 0x400d1100 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x64 (size before relaxing) + .literal.mbedtls_rsa_validate_crt + 0x400d1100 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x40 (size before relaxing) + .literal.sha_get_engine_state + 0x400d1100 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x24 (size before relaxing) + .literal.esp_sha_lock_engine_common + 0x400d1110 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x2c (size before relaxing) + .literal.esp_sha_lock_memory_block + 0x400d1120 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x8 (size before relaxing) + .literal.esp_sha_unlock_memory_block + 0x400d1124 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x8 (size before relaxing) + .literal.esp_sha_try_lock_engine + 0x400d1124 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x4 (size before relaxing) + .literal.esp_sha_unlock_engine + 0x400d1124 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x1c (size before relaxing) + .literal.esp_sha_read_digest_state + 0x400d1124 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x28 (size before relaxing) + .literal.esp_sha_block + 0x400d112c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x28 (size before relaxing) + .literal.mbedtls_ctr_increment_counter + 0x400d1130 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x8 (size before relaxing) + .literal.block_cipher_df + 0x400d1130 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x44 (size before relaxing) + .literal.ctr_drbg_update_internal + 0x400d1130 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_ctr_drbg_reseed_internal + 0x400d1130 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_ctr_drbg_free$part$0 + 0x400d1130 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ctr_drbg_init + 0x400d1130 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ctr_drbg_free + 0x400d1130 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ctr_drbg_reseed + 0x400d1130 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ctr_drbg_seed + 0x400d1130 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ctr_drbg_random_with_add + 0x400d1130 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_ctr_drbg_random + 0x400d1130 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecdh_gen_public + 0x400d1130 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ecdh_compute_shared + 0x400d1130 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_ecdh_init + 0x400d1130 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecdh_free + 0x400d1130 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_ecdh_calc_secret + 0x400d1130 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x14 (size before relaxing) + .literal.derive_mpi + 0x400d1134 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ecdsa_sign_restartable + 0x400d1134 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x64 (size before relaxing) + .literal.mbedtls_ecdsa_sign_det_restartable + 0x400d1134 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_ecdsa_verify_restartable + 0x400d1138 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x60 (size before relaxing) + .literal.mbedtls_ecdsa_write_signature_restartable + 0x400d1138 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_ecdsa_write_signature + 0x400d1138 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecdsa_read_signature_restartable + 0x400d1138 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_ecdsa_read_signature + 0x400d1138 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecdsa_init + 0x400d1138 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecdsa_free + 0x400d1138 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x4 (size before relaxing) + .literal.mpi_init_many + 0x400d1138 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mpi_free_many + 0x400d1138 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.ecp_safe_invert_jac + 0x400d1138 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x14 (size before relaxing) + .literal.ecp_select_comb + 0x400d1138 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_mpi_sub_mod + 0x400d1138 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_mul_mod + 0x400d1138 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x24 (size before relaxing) + .literal.ecp_randomize_mxz + 0x400d113c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x14 (size before relaxing) + .literal.ecp_randomize_jac + 0x400d113c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x20 (size before relaxing) + .literal.ecp_normalize_jac + 0x400d113c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x24 (size before relaxing) + .literal.ecp_normalize_jac_many + 0x400d113c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x50 (size before relaxing) + .literal.mbedtls_mpi_add_mod + 0x400d113c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_mul_int_mod$part$0 + 0x400d113c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ecp_point_free$part$0 + 0x400d113c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_shift_l_mod$constprop$0 + 0x400d113c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8 (size before relaxing) + .literal.ecp_sw_rhs + 0x400d113c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x1c (size before relaxing) + .literal.ecp_double_jac + 0x400d113c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x80 (size before relaxing) + .literal.mbedtls_ecp_grp_id_list + 0x400d1140 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_point_init + 0x400d114c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ecp_group_init + 0x400d114c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_ecp_keypair_init + 0x400d114c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ecp_point_free + 0x400d114c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecp_group_free + 0x400d114c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_ecp_keypair_free + 0x400d114c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ecp_copy + 0x400d114c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ecp_group_copy + 0x400d114c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecp_set_zero + 0x400d114c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.ecp_add_mixed + 0x400d114c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x70 (size before relaxing) + .literal.ecp_mul_comb_after_precomp$isra$0 + 0x400d1150 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x5c (size before relaxing) + .literal.mbedtls_ecp_is_zero + 0x400d1150 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecp_point_cmp + 0x400d1150 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ecp_point_read_binary + 0x400d1150 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x54 (size before relaxing) + .literal.mbedtls_ecp_check_pubkey + 0x400d1150 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x68 (size before relaxing) + .literal.mbedtls_ecp_check_privkey + 0x400d1158 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x1c (size before relaxing) + .literal.ecp_mul_restartable_internal$isra$0 + 0x400d1158 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xf8 (size before relaxing) + .literal.mbedtls_ecp_mul_shortcuts$isra$0 + 0x400d1158 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x3c (size before relaxing) + .literal.mbedtls_ecp_muladd_restartable + 0x400d1158 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_ecp_muladd + 0x400d1158 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecp_mul_restartable + 0x400d1158 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecp_mul + 0x400d1158 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecp_gen_privkey + 0x400d1158 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_ecp_check_pub_priv + 0x400d1158 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x30 (size before relaxing) + .literal.ecp_mod_p255 + 0x400d1158 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0xc (size before relaxing) + .literal.ecp_mod_p521 + 0x400d1158 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x10 (size before relaxing) + .literal.ecp_mod_p384 + 0x400d1158 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x16c (size before relaxing) + .literal.ecp_mod_p256 + 0x400d1164 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x120 (size before relaxing) + .literal.ecp_mod_p224 + 0x400d1164 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x80 (size before relaxing) + .literal.ecp_mod_koblitz$constprop$0 + 0x400d1164 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x24 (size before relaxing) + .literal.ecp_mod_p192k1 + 0x400d1168 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x8 (size before relaxing) + .literal.ecp_mod_p224k1 + 0x400d116c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x8 (size before relaxing) + .literal.ecp_mod_p256k1 + 0x400d1170 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x8 (size before relaxing) + .literal.ecp_mod_p192 + 0x400d1174 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_ecp_group_load + 0x400d1178 0x168 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x1f8 (size before relaxing) + .literal.entropy_update + 0x400d12e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x20 (size before relaxing) + .literal.entropy_gather_internal + 0x400d12e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_entropy_func$part$0 + 0x400d12e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x34 (size before relaxing) + .literal.mbedtls_entropy_free + 0x400d12e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_entropy_init + 0x400d12e0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_entropy_func + 0x400d12e8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_hmac_drbg_free$part$0 + 0x400d12e8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_hmac_drbg_init + 0x400d12e8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_hmac_drbg_update + 0x400d12e8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x28 (size before relaxing) + .literal.hmac_drbg_reseed_core + 0x400d12e8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_hmac_drbg_seed_buf + 0x400d12e8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_hmac_drbg_reseed + 0x400d12e8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_hmac_drbg_random_with_add + 0x400d12e8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_hmac_drbg_random + 0x400d12e8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_hmac_drbg_free + 0x400d12e8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_oid_get_pk_alg + 0x400d12e8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_oid_get_ec_grp + 0x400d12ec 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_oid_get_ec_grp_algid + 0x400d12f0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_oid_get_oid_by_md + 0x400d12f4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_hardware_poll + 0x400d12f8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + 0x4 (size before relaxing) + .text.esp_app_get_description + 0x400d12f8 0x8 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0x400d12f8 esp_app_get_description + .text.startup.esp_app_format_init_elf_sha256 + 0x400d1300 0x6b esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0x400d1300 esp_app_format_init_elf_sha256 + *fill* 0x400d136b 0x1 + .text.esp_app_get_elf_sha256 + 0x400d136c 0x3a esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0x400d136c esp_app_get_elf_sha256 + *fill* 0x400d13a6 0x2 + .text.esp_pthread_cfg_key_destructor + 0x400d13a8 0xa esp-idf/pthread/libpthread.a(pthread.c.obj) + 0xe (size before relaxing) + *fill* 0x400d13b2 0x2 + .text.esp_pthread_init + 0x400d13b4 0x2a esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x32 (size before relaxing) + 0x400d13b4 esp_pthread_init + *fill* 0x400d13de 0x2 + .text.find_key + 0x400d13e0 0x2a esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x2e (size before relaxing) + *fill* 0x400d140a 0x2 + .text.pthread_cleanup_thread_specific_data_callback + 0x400d140c 0x3f esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x4a (size before relaxing) + *fill* 0x400d144b 0x1 + .text.pthread_key_create + 0x400d144c 0x3c esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x44 (size before relaxing) + 0x400d144c pthread_key_create + .text.pthread_key_delete + 0x400d1488 0x3a esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x46 (size before relaxing) + 0x400d1488 pthread_key_delete + *fill* 0x400d14c2 0x2 + .text.pthread_getspecific + 0x400d14c4 0x25 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x29 (size before relaxing) + 0x400d14c4 pthread_getspecific + *fill* 0x400d14e9 0x3 + .text.pthread_setspecific + 0x400d14ec 0xa5 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0xad (size before relaxing) + 0x400d14ec pthread_setspecific + *fill* 0x400d1591 0x3 + .text.core_intr_matrix_clear + 0x400d1594 0x21 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + *fill* 0x400d15b5 0x3 + .text.startup_resume_other_cores + 0x400d15b8 0x10 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x400d15b8 startup_resume_other_cores + .text.esp_ipc_isr_init + 0x400d15c8 0x1f esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x400d15c8 esp_ipc_isr_init + *fill* 0x400d15e7 0x1 + .text.esp_ipc_isr_port_init + 0x400d15e8 0x1f esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + 0x23 (size before relaxing) + 0x400d15e8 esp_ipc_isr_port_init + *fill* 0x400d1607 0x1 + .text.select_rtc_slow_clk + 0x400d1608 0x61 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x70 (size before relaxing) + *fill* 0x400d1669 0x3 + .text.esp_rtc_init + 0x400d166c 0x10 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x400d166c esp_rtc_init + .text.esp_clk_init + 0x400d167c 0xf1 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x125 (size before relaxing) + 0x400d167c esp_clk_init + *fill* 0x400d176d 0x3 + .text.esp_perip_clk_init + 0x400d1770 0xe7 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x10f (size before relaxing) + 0x400d1770 esp_perip_clk_init + *fill* 0x400d1857 0x1 + .text.esp_cache_err_int_init + 0x400d1858 0x44 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x4f (size before relaxing) + 0x400d1858 esp_cache_err_int_init + *fill* 0x400d189c 0x0 + .text.esp_cache_err_get_cpuid + 0x400d189c 0x26 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x2e (size before relaxing) + 0x400d189c esp_cache_err_get_cpuid + *fill* 0x400d18c2 0x2 + .text.esp_int_wdt_init + 0x400d18c4 0x9a esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0xb2 (size before relaxing) + 0x400d18c4 esp_int_wdt_init + *fill* 0x400d195e 0x2 + .text.esp_int_wdt_cpu_init + 0x400d1960 0x2c esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x34 (size before relaxing) + 0x400d1960 esp_int_wdt_cpu_init + .text.panic_print_char_uart + 0x400d198c 0x34 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .text.panic_print_str + 0x400d19c0 0x16 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x19 (size before relaxing) + 0x400d19c0 panic_print_str + *fill* 0x400d19d6 0x2 + .text.print_abort_details + 0x400d19d8 0xd esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x10 (size before relaxing) + *fill* 0x400d19e5 0x3 + .text.panic_print_hex + 0x400d19e8 0x27 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x400d19e8 panic_print_hex + *fill* 0x400d1a0f 0x1 + .text.panic_print_dec + 0x400d1a10 0x39 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x3d (size before relaxing) + 0x400d1a10 panic_print_dec + *fill* 0x400d1a49 0x3 + .text.esp_panic_handler_reconfigure_wdts + 0x400d1a4c 0x67 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x7f (size before relaxing) + 0x400d1a4c esp_panic_handler_reconfigure_wdts + *fill* 0x400d1ab3 0x1 + .text.esp_panic_handler + 0x400d1ab4 0x1b5 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x222 (size before relaxing) + 0x400d1ab4 esp_panic_handler + *fill* 0x400d1c69 0x3 + .text.esp_register_shutdown_handler + 0x400d1c6c 0x32 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x400d1c6c esp_register_shutdown_handler + *fill* 0x400d1c9e 0x2 + .text.esp_unregister_shutdown_handler + 0x400d1ca0 0x2a esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x400d1ca0 esp_unregister_shutdown_handler + *fill* 0x400d1cca 0x2 + .text.esp_restart + 0x400d1ccc 0x1e esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x24 (size before relaxing) + 0x400d1ccc esp_restart + *fill* 0x400d1cea 0x2 + .text.do_system_init_fn + 0x400d1cec 0x57 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x63 (size before relaxing) + *fill* 0x400d1d43 0x1 + .text.start_cpu0_default + 0x400d1d44 0x249 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x2b5 (size before relaxing) + 0x400d1d44 start_cpu0 + *fill* 0x400d1f8d 0x3 + .text.panic_handler + 0x400d1f90 0x17a esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x199 (size before relaxing) + *fill* 0x400d210a 0x2 + .text.print_state_for_core + 0x400d210c 0x26 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x2a (size before relaxing) + *fill* 0x400d2132 0x2 + .text.print_state + 0x400d2134 0x3f esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x4d (size before relaxing) + *fill* 0x400d2173 0x1 + .text.panic_restart + 0x400d2174 0xf esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x18 (size before relaxing) + 0x400d2174 panic_restart + *fill* 0x400d2183 0x1 + .text.esp_brownout_init + 0x400d2184 0x48 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + 0x4c (size before relaxing) + 0x400d2184 esp_brownout_init + .text.print_debug_exception_details + 0x400d21cc 0x50 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x5f (size before relaxing) + *fill* 0x400d221c 0x0 + .text.print_illegal_instruction_details + 0x400d221c 0x52 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x6a (size before relaxing) + *fill* 0x400d226e 0x2 + .text.panic_print_registers + 0x400d2270 0xd3 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x113 (size before relaxing) + 0x400d2270 panic_print_registers + *fill* 0x400d2343 0x1 + .text.panic_arch_fill_info + 0x400d2344 0x38 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x400d2344 panic_arch_fill_info + .text.panic_soc_fill_info + 0x400d237c 0x4f esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x52 (size before relaxing) + 0x400d237c panic_soc_fill_info + *fill* 0x400d23cb 0x1 + .text.panic_print_backtrace + 0x400d23cc 0x20 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x400d23cc panic_print_backtrace + .text.esp_vApplicationIdleHook + 0x400d23ec 0x33 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x36 (size before relaxing) + 0x400d23ec esp_vApplicationIdleHook + *fill* 0x400d241f 0x1 + .text.esp_register_freertos_idle_hook_for_cpu + 0x400d2420 0x4e esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x52 (size before relaxing) + 0x400d2420 esp_register_freertos_idle_hook_for_cpu + *fill* 0x400d246e 0x2 + .text.esp_register_freertos_tick_hook_for_cpu + 0x400d2470 0x4e esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x52 (size before relaxing) + 0x400d2470 esp_register_freertos_tick_hook_for_cpu + *fill* 0x400d24be 0x2 + .text.esp_deregister_freertos_idle_hook_for_cpu + 0x400d24c0 0x2e esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x35 (size before relaxing) + 0x400d24c0 esp_deregister_freertos_idle_hook_for_cpu + *fill* 0x400d24ee 0x2 + .text.uart_hal_rxfifo_rst + 0x400d24f0 0x5a esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + 0x400d24f0 uart_hal_rxfifo_rst + *fill* 0x400d254a 0x2 + .text.uart_hal_write_txfifo + 0x400d254c 0x5b esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + 0x400d254c uart_hal_write_txfifo + *fill* 0x400d25a7 0x1 + .text.brownout_hal_config + 0x400d25a8 0xb7 esp-idf/hal/libhal.a(brownout_hal.c.obj) + 0x400d25a8 brownout_hal_config + *fill* 0x400d265f 0x1 + .text.heap_caps_get_free_size + 0x400d2660 0x2b esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x400d2660 heap_caps_get_free_size + *fill* 0x400d268b 0x1 + .text.heap_caps_get_minimum_free_size + 0x400d268c 0x2b esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x400d268c heap_caps_get_minimum_free_size + *fill* 0x400d26b7 0x1 + .text.heap_caps_get_info + 0x400d26b8 0x6f esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x400d26b8 heap_caps_get_info + *fill* 0x400d2727 0x1 + .text.heap_caps_get_largest_free_block + 0x400d2728 0x11 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x400d2728 heap_caps_get_largest_free_block + *fill* 0x400d2739 0x3 + .text.register_heap + 0x400d273c 0x2a esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x2e (size before relaxing) + *fill* 0x400d2766 0x2 + .text.heap_caps_enable_nonos_stack_heaps + 0x400d2768 0x26 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x2a (size before relaxing) + 0x400d2768 heap_caps_enable_nonos_stack_heaps + *fill* 0x400d278e 0x2 + .text.heap_caps_init + 0x400d2790 0x1ff esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x20b (size before relaxing) + 0x400d2790 heap_caps_init + *fill* 0x400d298f 0x1 + .text.soc_get_available_memory_region_max_count + 0x400d2990 0x18 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x400d2990 soc_get_available_memory_region_max_count + .text.soc_get_available_memory_regions + 0x400d29a8 0x18a esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x400d29a8 soc_get_available_memory_regions + *fill* 0x400d2b32 0x2 + .text.calc_checksum + 0x400d2b34 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .text.esp_rtc_get_time_us + 0x400d2b50 0xab esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0xbf (size before relaxing) + 0x400d2b50 esp_rtc_get_time_us + *fill* 0x400d2bfb 0x1 + .text.esp_clk_slowclk_cal_set + 0x400d2bfc 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x13 (size before relaxing) + 0x400d2bfc esp_clk_slowclk_cal_set + *fill* 0x400d2c0c 0x0 + .text.esp_clk_slowclk_cal_get + 0x400d2c0c 0xd esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x400d2c0c esp_clk_slowclk_cal_get + *fill* 0x400d2c19 0x3 + .text.find_desc_for_int + 0x400d2c1c 0x21 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x400d2c3d 0x3 + .text.is_vect_desc_usable + 0x400d2c40 0x9e esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0xa2 (size before relaxing) + *fill* 0x400d2cde 0x2 + .text.get_desc_for_int + 0x400d2ce0 0x94 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x9c (size before relaxing) + .text.esp_intr_alloc_intrstatus + 0x400d2d74 0x3b2 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x3ea (size before relaxing) + 0x400d2d74 esp_intr_alloc_intrstatus + *fill* 0x400d3126 0x2 + .text.esp_intr_alloc + 0x400d3128 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x1c (size before relaxing) + 0x400d3128 esp_intr_alloc + .text.rtc_isr_register + 0x400d3140 0x9f esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0xb3 (size before relaxing) + 0x400d3140 rtc_isr_register + *fill* 0x400d31df 0x1 + .text.esp_deep_sleep_wakeup_io_reset + 0x400d31e0 0x9d esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + 0x400d31e0 esp_deep_sleep_wakeup_io_reset + *fill* 0x400d327d 0x3 + .text.esp_chip_info + 0x400d3280 0x73 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + 0x400d3280 esp_chip_info + *fill* 0x400d32f3 0x1 + .text.esp_cpu_intr_get_desc + 0x400d32f4 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + 0x400d32f4 esp_cpu_intr_get_desc + *fill* 0x400d332a 0x2 + .text.esp_newlib_locks_init + 0x400d332c 0x56 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x5a (size before relaxing) + 0x400d332c esp_newlib_locks_init + *fill* 0x400d3382 0x2 + .text.esp_cleanup_r + 0x400d3384 0x36 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + *fill* 0x400d33ba 0x2 + .text.raise_r_stub + 0x400d33bc 0xf esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + *fill* 0x400d33cb 0x1 + .text.esp_newlib_init + 0x400d33cc 0x4a esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + 0x52 (size before relaxing) + 0x400d33cc esp_setup_newlib_syscalls + 0x400d33cc esp_newlib_init + *fill* 0x400d3416 0x2 + .text.esp_newlib_init_global_stdio + 0x400d3418 0x6b esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + 0x400d3418 esp_newlib_init_global_stdio + *fill* 0x400d3483 0x1 + .text.unlikely.syscall_not_implemented_aborts + 0x400d3484 0x6 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x9 (size before relaxing) + 0x400d3484 raise + 0x400d3484 _exit + 0x400d3484 _sbrk_r + 0x400d3484 _raise_r + *fill* 0x400d348a 0x2 + .text.adjust_boot_time + 0x400d348c 0x101 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x10d (size before relaxing) + *fill* 0x400d358d 0x3 + .text.settimeofday$part$0 + 0x400d3590 0x67 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x72 (size before relaxing) + *fill* 0x400d35f7 0x1 + .text.settimeofday + 0x400d35f8 0xe esp-idf/newlib/libnewlib.a(time.c.obj) + 0x11 (size before relaxing) + 0x400d35f8 settimeofday + *fill* 0x400d3606 0x2 + .text.usleep 0x400d3608 0x34 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x37 (size before relaxing) + 0x400d3608 usleep + *fill* 0x400d363c 0x0 + .text.sleep 0x400d363c 0x10 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x13 (size before relaxing) + 0x400d363c sleep + *fill* 0x400d364c 0x0 + .text.esp_newlib_time_init + 0x400d364c 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + 0xb (size before relaxing) + 0x400d364c esp_newlib_time_init + *fill* 0x400d3654 0x0 + .text.esp_time_impl_get_time_since_boot + 0x400d3654 0x1f esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x400d3654 esp_time_impl_get_time_since_boot + *fill* 0x400d3673 0x1 + .text.esp_time_impl_set_boot_time + 0x400d3674 0x23 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x27 (size before relaxing) + 0x400d3674 esp_time_impl_set_boot_time + *fill* 0x400d3697 0x1 + .text.esp_time_impl_get_boot_time + 0x400d3698 0x23 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x27 (size before relaxing) + 0x400d3698 esp_time_impl_get_boot_time + *fill* 0x400d36bb 0x1 + .text.esp_set_time_from_rtc + 0x400d36bc 0x29 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x2d (size before relaxing) + 0x400d36bc esp_set_time_from_rtc + *fill* 0x400d36e5 0x3 + .text.esp_sync_timekeeping_timers + 0x400d36e8 0x64 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0x74 (size before relaxing) + 0x400d36e8 esp_sync_timekeeping_timers + .text.esp_time_impl_init + 0x400d374c 0x8 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + 0xb (size before relaxing) + 0x400d374c esp_time_impl_init + *fill* 0x400d3754 0x0 + .text.deinit_timer_task + 0x400d3754 0x16 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + *fill* 0x400d376a 0x2 + .text.timer_task + 0x400d376c 0xfc esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x10c (size before relaxing) + .text.esp_timer_create + 0x400d3868 0x66 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x6a (size before relaxing) + 0x400d3868 esp_timer_create + *fill* 0x400d38ce 0x2 + .text.esp_timer_delete + 0x400d38d0 0x58 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x60 (size before relaxing) + 0x400d38d0 esp_timer_delete + .text.esp_timer_early_init + 0x400d3928 0xf esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x13 (size before relaxing) + 0x400d3928 esp_timer_early_init + *fill* 0x400d3937 0x1 + .text.esp_timer_init + 0x400d3938 0x8f esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0xa2 (size before relaxing) + 0x400d3938 esp_timer_init + *fill* 0x400d39c7 0x1 + .text.__esp_system_init_fn_esp_timer_startup_init + 0x400d39c8 0xa esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0xd (size before relaxing) + *fill* 0x400d39d2 0x2 + .text.esp_timer_impl_init_system_time + 0x400d39d4 0x5e esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x6a (size before relaxing) + 0x400d39d4 esp_timer_impl_init_system_time + *fill* 0x400d3a32 0x2 + .text.esp_timer_impl_early_init + 0x400d3a34 0xd0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0xd4 (size before relaxing) + 0x400d3a34 esp_timer_impl_early_init + .text.esp_timer_impl_init + 0x400d3b04 0xcd esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0xe5 (size before relaxing) + 0x400d3b04 esp_timer_impl_init + *fill* 0x400d3bd1 0x3 + .text.set_xpd_sar + 0x400d3bd4 0x25 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + 0x400d3bd4 set_xpd_sar + *fill* 0x400d3bf9 0x3 + .text.get_local_fd + 0x400d3bfc 0x1c esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.translate_path + 0x400d3c18 0x3b esp-idf/vfs/libvfs.a(vfs.c.obj) + *fill* 0x400d3c53 0x1 + .text.esp_vfs_register_common + 0x400d3c54 0xc2 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0xc6 (size before relaxing) + 0x400d3c54 esp_vfs_register_common + *fill* 0x400d3d16 0x2 + .text.esp_vfs_register + 0x400d3d18 0x1c esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x20 (size before relaxing) + 0x400d3d18 esp_vfs_register + .text.esp_vfs_register_fd_range + 0x400d3d34 0xbf esp-idf/vfs/libvfs.a(vfs.c.obj) + 0xcf (size before relaxing) + 0x400d3d34 esp_vfs_register_fd_range + *fill* 0x400d3df3 0x1 + .text.get_vfs_for_index + 0x400d3df4 0x1c esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x400d3df4 get_vfs_for_index + .text.get_vfs_for_fd + 0x400d3e10 0x24 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.get_vfs_for_path + 0x400d3e34 0x75 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x400d3e34 get_vfs_for_path + *fill* 0x400d3ea9 0x3 + .text.esp_vfs_open + 0x400d3eac 0xd3 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0xdf (size before relaxing) + 0x400d3eac esp_vfs_open + 0x400d3eac _open_r + *fill* 0x400d3f7f 0x1 + .text.esp_vfs_write + 0x400d3f80 0x47 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4f (size before relaxing) + 0x400d3f80 esp_vfs_write + 0x400d3f80 _write_r + *fill* 0x400d3fc7 0x1 + .text.esp_vfs_lseek + 0x400d3fc8 0x47 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4f (size before relaxing) + 0x400d3fc8 _lseek_r + 0x400d3fc8 esp_vfs_lseek + *fill* 0x400d400f 0x1 + .text.esp_vfs_read + 0x400d4010 0x47 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4f (size before relaxing) + 0x400d4010 esp_vfs_read + 0x400d4010 _read_r + *fill* 0x400d4057 0x1 + .text.esp_vfs_close + 0x400d4058 0x78 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x84 (size before relaxing) + 0x400d4058 _close_r + 0x400d4058 esp_vfs_close + .text.esp_vfs_fstat + 0x400d40d0 0x42 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4a (size before relaxing) + 0x400d40d0 esp_vfs_fstat + 0x400d40d0 _fstat_r + *fill* 0x400d4112 0x2 + .text.esp_vfs_stat + 0x400d4114 0x3e esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x42 (size before relaxing) + 0x400d4114 esp_vfs_stat + 0x400d4114 _stat_r + *fill* 0x400d4152 0x2 + .text.esp_vfs_link + 0x400d4154 0x65 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x71 (size before relaxing) + 0x400d4154 _link_r + 0x400d4154 esp_vfs_link + *fill* 0x400d41b9 0x3 + .text.esp_vfs_unlink + 0x400d41bc 0x43 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x47 (size before relaxing) + 0x400d41bc _unlink_r + 0x400d41bc esp_vfs_unlink + *fill* 0x400d41ff 0x1 + .text.esp_vfs_rename + 0x400d4200 0x64 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x70 (size before relaxing) + 0x400d4200 _rename_r + 0x400d4200 esp_vfs_rename + .text.esp_vfs_select_triggered + 0x400d4264 0x41 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x400d4264 esp_vfs_select_triggered + *fill* 0x400d42a5 0x3 + .text.esp_vfs_select_triggered_isr + 0x400d42a8 0x3b esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x400d42a8 esp_vfs_select_triggered_isr + *fill* 0x400d42e3 0x1 + .text.console_open + 0x400d42e4 0x1f esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x23 (size before relaxing) + 0x400d42e4 console_open + *fill* 0x400d4303 0x1 + .text.console_write + 0x400d4304 0x20 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x400d4304 console_write + .text.console_fstat + 0x400d4324 0x18 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x1c (size before relaxing) + 0x400d4324 console_fstat + .text.console_close + 0x400d433c 0x1c esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x400d433c console_close + .text.console_read + 0x400d4358 0x20 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x400d4358 console_read + .text.console_fcntl + 0x400d4378 0x21 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x400d4378 console_fcntl + *fill* 0x400d4399 0x3 + .text.console_fsync + 0x400d439c 0x1d esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x400d439c console_fsync + *fill* 0x400d43b9 0x3 + .text.console_access + 0x400d43bc 0x1d esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x400d43bc console_access + *fill* 0x400d43d9 0x3 + .text.console_end_select + 0x400d43dc 0x20 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x24 (size before relaxing) + 0x400d43dc console_end_select + .text.console_tcsetattr + 0x400d43fc 0x21 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x400d43fc console_tcsetattr + *fill* 0x400d441d 0x3 + .text.console_tcgetattr + 0x400d4420 0x1c esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x20 (size before relaxing) + 0x400d4420 console_tcgetattr + .text.console_tcdrain + 0x400d443c 0x1d esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x400d443c console_tcdrain + *fill* 0x400d4459 0x3 + .text.console_tcflush + 0x400d445c 0x1c esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x20 (size before relaxing) + 0x400d445c console_tcflush + .text.console_start_select + 0x400d4478 0x36 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x3a (size before relaxing) + *fill* 0x400d44ae 0x2 + .text.esp_vfs_dev_console_register + 0x400d44b0 0x15 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x400d44b0 esp_vfs_dev_console_register + *fill* 0x400d44c5 0x3 + .text.esp_vfs_console_register + 0x400d44c8 0x22 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + 0x2a (size before relaxing) + 0x400d44c8 esp_vfs_console_register + *fill* 0x400d44ea 0x2 + .text.uart_tx_char + 0x400d44ec 0x4e esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x400d453a 0x2 + .text.uart_rx_char + 0x400d453c 0xab esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x400d45e7 0x1 + .text.uart_read_char + 0x400d45e8 0x22 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x400d460a 0x2 + .text.uart_end_select + 0x400d460c 0xbe esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0xd2 (size before relaxing) + *fill* 0x400d46ca 0x2 + .text.uart_start_select + 0x400d46cc 0x15e esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x188 (size before relaxing) + *fill* 0x400d482a 0x2 + .text.select_notif_callback_isr + 0x400d482c 0xa8 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0xac (size before relaxing) + .text.uart_tcflush + 0x400d48d4 0x2b esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x2f (size before relaxing) + *fill* 0x400d48ff 0x1 + .text.uart_tcdrain + 0x400d4900 0x2e esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x400d492e 0x2 + .text.uart_tcgetattr + 0x400d4930 0x30e esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x31a (size before relaxing) + *fill* 0x400d4c3e 0x2 + .text.uart_tcsetattr + 0x400d4c40 0x282 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x292 (size before relaxing) + *fill* 0x400d4ec2 0x2 + .text.uart_access + 0x400d4ec4 0x57 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x400d4f1b 0x1 + .text.uart_fcntl + 0x400d4f1c 0x57 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x5b (size before relaxing) + *fill* 0x400d4f73 0x1 + .text.uart_fstat + 0x400d4f74 0x2f esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x400d4fa3 0x1 + .text.uart_close + 0x400d4fa4 0x19 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x1c (size before relaxing) + *fill* 0x400d4fbd 0x3 + .text.uart_return_char + 0x400d4fc0 0x26 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x400d4fe6 0x2 + .text.uart_open + 0x400d4fe8 0x54 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.uart_fsync + 0x400d503c 0x32 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x3e (size before relaxing) + *fill* 0x400d506e 0x2 + .text.uart_read + 0x400d5070 0x92 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0xa2 (size before relaxing) + *fill* 0x400d5102 0x2 + .text.uart_write + 0x400d5104 0x68 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x74 (size before relaxing) + .text.esp_vfs_uart_get_vfs + 0x400d516c 0x8 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x400d516c esp_vfs_uart_get_vfs + .text.ip_event_handler + 0x400d5174 0x2b esp-idf/main/libmain.a(mesh_main.c.obj) + 0x2f (size before relaxing) + 0x400d5174 ip_event_handler + *fill* 0x400d519f 0x1 + .text.esp_mesh_p2p_tx_main + 0x400d51a0 0x2e3 esp-idf/main/libmain.a(mesh_main.c.obj) + 0x317 (size before relaxing) + 0x400d51a0 esp_mesh_p2p_tx_main + *fill* 0x400d5483 0x1 + .text.esp_mesh_p2p_rx_main + 0x400d5484 0x16b esp-idf/main/libmain.a(mesh_main.c.obj) + 0x177 (size before relaxing) + 0x400d5484 esp_mesh_p2p_rx_main + *fill* 0x400d55ef 0x1 + .text.esp_mesh_comm_p2p_start + 0x400d55f0 0x48 esp-idf/main/libmain.a(mesh_main.c.obj) + 0x4c (size before relaxing) + 0x400d55f0 esp_mesh_comm_p2p_start + .text.mesh_event_handler + 0x400d5638 0x59c esp-idf/main/libmain.a(mesh_main.c.obj) + 0x607 (size before relaxing) + 0x400d5638 mesh_event_handler + *fill* 0x400d5bd4 0x0 + .text.app_main + 0x400d5bd4 0x330 esp-idf/main/libmain.a(mesh_main.c.obj) + 0x360 (size before relaxing) + 0x400d5bd4 app_main + .text.mesh_light_set + 0x400d5f04 0xdc esp-idf/main/libmain.a(mesh_light.c.obj) + 0xf3 (size before relaxing) + 0x400d5f04 mesh_light_set + *fill* 0x400d5fe0 0x0 + .text.mesh_light_init + 0x400d5fe0 0x81 esp-idf/main/libmain.a(mesh_light.c.obj) + 0x91 (size before relaxing) + 0x400d5fe0 mesh_light_init + *fill* 0x400d6061 0x3 + .text.mesh_connected_indicator + 0x400d6064 0x35 esp-idf/main/libmain.a(mesh_light.c.obj) + 0x38 (size before relaxing) + 0x400d6064 mesh_connected_indicator + *fill* 0x400d6099 0x3 + .text.mesh_disconnected_indicator + 0x400d609c 0xb esp-idf/main/libmain.a(mesh_light.c.obj) + 0xe (size before relaxing) + 0x400d609c mesh_disconnected_indicator + *fill* 0x400d60a7 0x1 + .text.mesh_light_process + 0x400d60a8 0x5a esp-idf/main/libmain.a(mesh_light.c.obj) + 0x5e (size before relaxing) + 0x400d60a8 mesh_light_process + *fill* 0x400d6102 0x2 + .text.esp_efuse_read_field_blob + 0x400d6104 0x5a esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x62 (size before relaxing) + 0x400d6104 esp_efuse_read_field_blob + *fill* 0x400d615e 0x2 + .text.esp_efuse_check_errors + 0x400d6160 0xd esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x400d6160 esp_efuse_check_errors + *fill* 0x400d616d 0x3 + .text.esp_efuse_utility_process + 0x400d6170 0x17a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x17e (size before relaxing) + 0x400d6170 esp_efuse_utility_process + *fill* 0x400d62ea 0x2 + .text.esp_efuse_utility_read_reg + 0x400d62ec 0x58 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x5c (size before relaxing) + 0x400d62ec esp_efuse_utility_read_reg + .text.esp_efuse_utility_fill_buff + 0x400d6344 0xb0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0xb4 (size before relaxing) + 0x400d6344 esp_efuse_utility_fill_buff + .text.esp_efuse_utility_count_once + 0x400d63f4 0x38 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x3c (size before relaxing) + 0x400d63f4 esp_efuse_utility_count_once + .text.esp_efuse_get_coding_scheme$part$0 + 0x400d642c 0x22 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + *fill* 0x400d644e 0x2 + .text.esp_efuse_get_coding_scheme + 0x400d6450 0x10 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + 0x400d6450 esp_efuse_get_coding_scheme + .text.s_get_bus_mask + 0x400d6460 0xa9 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x400d6509 0x3 + .text.esp_mmu_map_init + 0x400d650c 0x207 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x20f (size before relaxing) + 0x400d650c esp_mmu_map_init + *fill* 0x400d6713 0x1 + .text.esp_mmu_map + 0x400d6714 0x386 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x3b6 (size before relaxing) + 0x400d6714 esp_mmu_map + *fill* 0x400d6a9a 0x2 + .text.esp_mmu_unmap + 0x400d6a9c 0xf5 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x101 (size before relaxing) + 0x400d6a9c esp_mmu_unmap + *fill* 0x400d6b91 0x3 + .text.esp_mmu_vaddr_to_paddr + 0x400d6b94 0xa9 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0xbd (size before relaxing) + 0x400d6b94 esp_mmu_vaddr_to_paddr + *fill* 0x400d6c3d 0x3 + .text.gpio_od_enable$isra$0 + 0x400d6c40 0x5b esp-idf/driver/libdriver.a(gpio.c.obj) + 0x5f (size before relaxing) + *fill* 0x400d6c9b 0x1 + .text.gpio_od_disable$isra$0 + 0x400d6c9c 0x5a esp-idf/driver/libdriver.a(gpio.c.obj) + 0x5e (size before relaxing) + *fill* 0x400d6cf6 0x2 + .text.gpio_output_enable$isra$0 + 0x400d6cf8 0x9d esp-idf/driver/libdriver.a(gpio.c.obj) + 0xa1 (size before relaxing) + *fill* 0x400d6d95 0x3 + .text.gpio_output_disable$isra$0 + 0x400d6d98 0xb8 esp-idf/driver/libdriver.a(gpio.c.obj) + 0xc0 (size before relaxing) + .text.gpio_input_disable$isra$0 + 0x400d6e50 0x5c esp-idf/driver/libdriver.a(gpio.c.obj) + 0x60 (size before relaxing) + .text.gpio_input_enable$isra$0 + 0x400d6eac 0x77 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x7b (size before relaxing) + *fill* 0x400d6f23 0x1 + .text.gpio_set_level + 0x400d6f24 0xe1 esp-idf/driver/libdriver.a(gpio.c.obj) + 0xe5 (size before relaxing) + 0x400d6f24 gpio_set_level + *fill* 0x400d7005 0x3 + .text.gpio_set_direction + 0x400d7008 0xa2 esp-idf/driver/libdriver.a(gpio.c.obj) + 0xbd (size before relaxing) + 0x400d7008 gpio_set_direction + *fill* 0x400d70aa 0x2 + .text._ledc_update_duty + 0x400d70ac 0x3e esp-idf/driver/libdriver.a(ledc.c.obj) + 0x42 (size before relaxing) + *fill* 0x400d70ea 0x2 + .text._ledc_fade_hw_release + 0x400d70ec 0x20 esp-idf/driver/libdriver.a(ledc.c.obj) + .text.ledc_slow_clk_calibrate + 0x400d710c 0x2f esp-idf/driver/libdriver.a(ledc.c.obj) + 0x37 (size before relaxing) + *fill* 0x400d713b 0x1 + .text.ledc_speed_mode_ctx_create + 0x400d713c 0x87 esp-idf/driver/libdriver.a(ledc.c.obj) + 0x9b (size before relaxing) + *fill* 0x400d71c3 0x1 + .text.ledc_enable_intr_type$part$0 + 0x400d71c4 0x33 esp-idf/driver/libdriver.a(ledc.c.obj) + *fill* 0x400d71f7 0x1 + .text.ledc_enable_intr_type$isra$0 + 0x400d71f8 0x45 esp-idf/driver/libdriver.a(ledc.c.obj) + *fill* 0x400d723d 0x3 + .text._ledc_fade_hw_acquire + 0x400d7240 0x33 esp-idf/driver/libdriver.a(ledc.c.obj) + 0x3f (size before relaxing) + *fill* 0x400d7273 0x1 + .text.ledc_timer_set + 0x400d7274 0x11f esp-idf/driver/libdriver.a(ledc.c.obj) + 0x12b (size before relaxing) + 0x400d7274 ledc_timer_set + *fill* 0x400d7393 0x1 + .text.ledc_set_timer_div + 0x400d7394 0x2f3 esp-idf/driver/libdriver.a(ledc.c.obj) + 0x327 (size before relaxing) + *fill* 0x400d7687 0x1 + .text.ledc_bind_channel_timer + 0x400d7688 0xbf esp-idf/driver/libdriver.a(ledc.c.obj) + 0xd3 (size before relaxing) + 0x400d7688 ledc_bind_channel_timer + *fill* 0x400d7747 0x1 + .text.ledc_timer_rst + 0x400d7748 0xbf esp-idf/driver/libdriver.a(ledc.c.obj) + 0xcf (size before relaxing) + 0x400d7748 ledc_timer_rst + *fill* 0x400d7807 0x1 + .text.ledc_timer_resume + 0x400d7808 0xb4 esp-idf/driver/libdriver.a(ledc.c.obj) + 0xc4 (size before relaxing) + 0x400d7808 ledc_timer_resume + .text.ledc_isr_register + 0x400d78bc 0x47 esp-idf/driver/libdriver.a(ledc.c.obj) + 0x57 (size before relaxing) + 0x400d78bc ledc_isr_register + *fill* 0x400d7903 0x1 + .text.ledc_timer_config + 0x400d7904 0x18b esp-idf/driver/libdriver.a(ledc.c.obj) + 0x1a7 (size before relaxing) + 0x400d7904 ledc_timer_config + *fill* 0x400d7a8f 0x1 + .text.ledc_update_duty + 0x400d7a90 0xa8 esp-idf/driver/libdriver.a(ledc.c.obj) + 0xb4 (size before relaxing) + 0x400d7a90 ledc_update_duty + .text.ledc_set_duty_with_hpoint + 0x400d7b38 0xd5 esp-idf/driver/libdriver.a(ledc.c.obj) + 0xf1 (size before relaxing) + 0x400d7b38 ledc_set_duty_with_hpoint + *fill* 0x400d7c0d 0x3 + .text.ledc_channel_config + 0x400d7c10 0x19e esp-idf/driver/libdriver.a(ledc.c.obj) + 0x1c2 (size before relaxing) + 0x400d7c10 ledc_channel_config + *fill* 0x400d7dae 0x2 + .text.ledc_set_duty + 0x400d7db0 0xb1 esp-idf/driver/libdriver.a(ledc.c.obj) + 0xcd (size before relaxing) + 0x400d7db0 ledc_set_duty + *fill* 0x400d7e61 0x3 + .text.ledc_fade_func_install + 0x400d7e64 0x44 esp-idf/driver/libdriver.a(ledc.c.obj) + 0x4b (size before relaxing) + 0x400d7e64 ledc_fade_func_install + *fill* 0x400d7ea8 0x0 + .text.uart_reenable_intr_mask$constprop$0$isra$0 + 0x400d7ea8 0x67 esp-idf/driver/libdriver.a(uart.c.obj) + 0x73 (size before relaxing) + *fill* 0x400d7f0f 0x1 + .text.uart_pattern_queue_update$isra$0 + 0x400d7f10 0x31 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x400d7f41 0x3 + .text.uart_set_word_length + 0x400d7f44 0x75 esp-idf/driver/libdriver.a(uart.c.obj) + 0x7d (size before relaxing) + 0x400d7f44 uart_set_word_length + *fill* 0x400d7fb9 0x3 + .text.uart_get_word_length + 0x400d7fbc 0x3d esp-idf/driver/libdriver.a(uart.c.obj) + 0x41 (size before relaxing) + 0x400d7fbc uart_get_word_length + *fill* 0x400d7ff9 0x3 + .text.uart_set_stop_bits + 0x400d7ffc 0x75 esp-idf/driver/libdriver.a(uart.c.obj) + 0x7d (size before relaxing) + 0x400d7ffc uart_set_stop_bits + *fill* 0x400d8071 0x3 + .text.uart_get_stop_bits + 0x400d8074 0x55 esp-idf/driver/libdriver.a(uart.c.obj) + 0x5d (size before relaxing) + 0x400d8074 uart_get_stop_bits + *fill* 0x400d80c9 0x3 + .text.uart_set_parity + 0x400d80cc 0x55 esp-idf/driver/libdriver.a(uart.c.obj) + 0x5d (size before relaxing) + 0x400d80cc uart_set_parity + *fill* 0x400d8121 0x3 + .text.uart_get_parity + 0x400d8124 0x55 esp-idf/driver/libdriver.a(uart.c.obj) + 0x5d (size before relaxing) + 0x400d8124 uart_get_parity + *fill* 0x400d8179 0x3 + .text.uart_set_baudrate + 0x400d817c 0xbf esp-idf/driver/libdriver.a(uart.c.obj) + 0xd3 (size before relaxing) + 0x400d817c uart_set_baudrate + *fill* 0x400d823b 0x1 + .text.uart_get_baudrate + 0x400d823c 0x91 esp-idf/driver/libdriver.a(uart.c.obj) + 0xa1 (size before relaxing) + 0x400d823c uart_get_baudrate + *fill* 0x400d82cd 0x3 + .text.uart_wait_tx_done + 0x400d82d0 0x192 esp-idf/driver/libdriver.a(uart.c.obj) + 0x1b6 (size before relaxing) + 0x400d82d0 uart_wait_tx_done + *fill* 0x400d8462 0x2 + .text.uart_get_buffered_data_len + 0x400d8464 0x6f esp-idf/driver/libdriver.a(uart.c.obj) + 0x77 (size before relaxing) + 0x400d8464 uart_get_buffered_data_len + *fill* 0x400d84d3 0x1 + .text.uart_flush_input + 0x400d84d4 0x14f esp-idf/driver/libdriver.a(uart.c.obj) + 0x187 (size before relaxing) + 0x400d84d4 uart_flush_input + 0x400d84d4 uart_flush + *fill* 0x400d8623 0x1 + .text.uart_is_driver_installed + 0x400d8624 0x1a esp-idf/driver/libdriver.a(uart.c.obj) + 0x400d8624 uart_is_driver_installed + *fill* 0x400d863e 0x2 + .text.uart_set_select_notif_callback + 0x400d8640 0x16 esp-idf/driver/libdriver.a(uart.c.obj) + 0x400d8640 uart_set_select_notif_callback + *fill* 0x400d8656 0x2 + .text.uart_get_selectlock + 0x400d8658 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x400d8658 uart_get_selectlock + .text.bootloader_init_mem + 0x400d8660 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0xb (size before relaxing) + 0x400d8660 bootloader_init_mem + *fill* 0x400d8668 0x0 + .text.bootloader_flash_update_id + 0x400d8668 0xd esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x10 (size before relaxing) + 0x400d8668 bootloader_flash_update_id + *fill* 0x400d8675 0x3 + .text.bootloader_flash_get_wp_pin + 0x400d8678 0x34 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x37 (size before relaxing) + 0x400d8678 bootloader_flash_get_wp_pin + *fill* 0x400d86ac 0x0 + .text.spi_flash_init_lock + 0x400d86ac 0x23 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x27 (size before relaxing) + 0x400d86ac spi_flash_init_lock + *fill* 0x400d86cf 0x1 + .text.spi_flash_op_lock + 0x400d86d0 0x12 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x400d86d0 spi_flash_op_lock + *fill* 0x400d86e2 0x2 + .text.spi_flash_op_unlock + 0x400d86e4 0xd esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x10 (size before relaxing) + 0x400d86e4 spi_flash_op_unlock + *fill* 0x400d86f1 0x3 + .text.spi_flash_mmap + 0x400d86f4 0x79 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x87 (size before relaxing) + 0x400d86f4 spi_flash_mmap + *fill* 0x400d876d 0x3 + .text.spi_flash_munmap + 0x400d8770 0x3f esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x46 (size before relaxing) + 0x400d8770 spi_flash_munmap + *fill* 0x400d87af 0x1 + .text.spi_flash_cache2phys + 0x400d87b0 0x24 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x400d87b0 spi_flash_cache2phys + .text.esp_mspi_get_io + 0x400d87d4 0x45 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x4d (size before relaxing) + 0x400d87d4 esp_mspi_get_io + *fill* 0x400d8819 0x3 + .text.esp_flash_read_chip_id + 0x400d881c 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x14 (size before relaxing) + 0x400d881c esp_flash_read_chip_id + .text.esp_flash_init_default_chip + 0x400d882c 0xa1 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0xa9 (size before relaxing) + 0x400d882c esp_flash_init_default_chip + *fill* 0x400d88cd 0x3 + .text.esp_flash_app_init + 0x400d88d0 0x17 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x1f (size before relaxing) + 0x400d88d0 esp_flash_app_init + *fill* 0x400d88e7 0x1 + .text.esp_flash_app_enable_os_functions + 0x400d88e8 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x400d88e8 esp_flash_app_enable_os_functions + .text.esp_crosscore_int_init + 0x400d8908 0x58 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x64 (size before relaxing) + 0x400d8908 esp_crosscore_int_init + .text.startup.esp_ipc_init + 0x400d8960 0x78 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x84 (size before relaxing) + .text.esp_ipc_call_nonblocking + 0x400d89d8 0x87 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x97 (size before relaxing) + 0x400d89d8 esp_ipc_call_nonblocking + *fill* 0x400d8a5f 0x1 + .text.find_entry_and_check_all_reset + 0x400d8a60 0x33 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x400d8a93 0x1 + .text.find_entry_from_task_handle_and_check_all_reset + 0x400d8a94 0x33 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x400d8ac7 0x1 + .text.task_wdt_timer_feed + 0x400d8ac8 0x24 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.add_entry + 0x400d8aec 0xe6 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x102 (size before relaxing) + *fill* 0x400d8bd2 0x2 + .text.task_wdt_timeout_abort + 0x400d8bd4 0x93 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xaa (size before relaxing) + 0x400d8bd4 task_wdt_timeout_abort + *fill* 0x400d8c67 0x1 + .text.esp_task_wdt_add + 0x400d8c68 0x42 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x51 (size before relaxing) + 0x400d8c68 esp_task_wdt_add + *fill* 0x400d8caa 0x2 + .text.subscribe_idle + 0x400d8cac 0x58 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x64 (size before relaxing) + .text.esp_task_wdt_init + 0x400d8d04 0xcc esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xe8 (size before relaxing) + 0x400d8d04 esp_task_wdt_init + .text.esp_task_wdt_reset + 0x400d8dd0 0x82 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x9d (size before relaxing) + 0x400d8dd0 esp_task_wdt_reset + *fill* 0x400d8e52 0x2 + .text.idle_hook_cb + 0x400d8e54 0xa esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xd (size before relaxing) + *fill* 0x400d8e5e 0x2 + .text.esp_task_wdt_print_triggered_tasks + 0x400d8e60 0xd0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xdc (size before relaxing) + 0x400d8e60 esp_task_wdt_print_triggered_tasks + .text.task_wdt_isr + 0x400d8f30 0x14d esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x178 (size before relaxing) + *fill* 0x400d907d 0x3 + .text.esp_task_wdt_impl_timer_allocate + 0x400d9080 0xc2 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0xd6 (size before relaxing) + 0x400d9080 esp_task_wdt_impl_timer_allocate + *fill* 0x400d9142 0x2 + .text.esp_task_wdt_impl_timer_feed + 0x400d9144 0x1e esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x26 (size before relaxing) + 0x400d9144 esp_task_wdt_impl_timer_feed + *fill* 0x400d9162 0x2 + .text.esp_task_wdt_impl_timeout_triggered + 0x400d9164 0x17 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x1f (size before relaxing) + 0x400d9164 esp_task_wdt_impl_timeout_triggered + *fill* 0x400d917b 0x1 + .text.esp_task_wdt_impl_timer_restart + 0x400d917c 0x22 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x2e (size before relaxing) + 0x400d917c esp_task_wdt_impl_timer_restart + *fill* 0x400d919e 0x2 + .text.get_flash_clock_divider + 0x400d91a0 0x57 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x63 (size before relaxing) + *fill* 0x400d91f7 0x1 + .text.spi_flash_hal_init + 0x400d91f8 0xea esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0xf6 (size before relaxing) + 0x400d91f8 spi_flash_hal_init + *fill* 0x400d92e2 0x2 + .text.spi_flash_hal_supports_direct_write + 0x400d92e4 0x14 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x400d92e4 spi_flash_hal_supports_direct_write + .text.spi_flash_hal_supports_direct_read + 0x400d92f8 0x14 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + 0x400d92f8 spi_flash_hal_supports_direct_read + .text.ledc_hal_init + 0x400d930c 0xc esp-idf/hal/libhal.a(ledc_hal.c.obj) + 0x400d930c ledc_hal_init + .text.esp_cpu_configure_region_protection + 0x400d9318 0x32 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + 0x400d9318 esp_cpu_configure_region_protection + *fill* 0x400d934a 0x2 + .text.periph_rtc_dig_clk8m_enable + 0x400d934c 0x49 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + 0x55 (size before relaxing) + 0x400d934c periph_rtc_dig_clk8m_enable + *fill* 0x400d9395 0x3 + .text.periph_rtc_dig_clk8m_get_freq + 0x400d9398 0xa esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + 0x400d9398 periph_rtc_dig_clk8m_get_freq + *fill* 0x400d93a2 0x2 + .text.s_sleep_hook_register + 0x400d93a4 0x5b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x63 (size before relaxing) + *fill* 0x400d93ff 0x1 + .text.esp_sleep_periph_use_8m + 0x400d9400 0xb esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x400d9400 esp_sleep_periph_use_8m + *fill* 0x400d940b 0x1 + .text.esp_deep_sleep_register_phy_hook + 0x400d940c 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x400d940c esp_deep_sleep_register_phy_hook + *fill* 0x400d941e 0x2 + .text.esp_clk_tree_src_get_freq_hz + 0x400d9420 0x133 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + 0x152 (size before relaxing) + 0x400d9420 esp_clk_tree_src_get_freq_hz + *fill* 0x400d9553 0x1 + .text.esp_clk_tree_rc_fast_d256_get_freq_hz + 0x400d9554 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x50 (size before relaxing) + 0x400d9554 esp_clk_tree_rc_fast_d256_get_freq_hz + .text.esp_clk_tree_xtal32k_get_freq_hz + 0x400d959c 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x50 (size before relaxing) + 0x400d959c esp_clk_tree_xtal32k_get_freq_hz + .text.esp_clk_tree_lp_slow_get_freq_hz + 0x400d95e4 0x3f esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x47 (size before relaxing) + 0x400d95e4 esp_clk_tree_lp_slow_get_freq_hz + *fill* 0x400d9623 0x1 + .text.esp_clk_tree_rc_fast_get_freq_hz + 0x400d9624 0x13 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x16 (size before relaxing) + 0x400d9624 esp_clk_tree_rc_fast_get_freq_hz + *fill* 0x400d9637 0x1 + .text.esp_clk_tree_lp_fast_get_freq_hz + 0x400d9638 0x33 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + 0x3a (size before relaxing) + 0x400d9638 esp_clk_tree_lp_fast_get_freq_hz + *fill* 0x400d966b 0x1 + .text.esp_err_to_name + 0x400d966c 0x26 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + 0x400d966c esp_err_to_name + *fill* 0x400d9692 0x2 + .text._ZL18nvs_find_ns_handlemPPN3nvs15NVSHandleSimpleE + 0x400d9694 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text._ZL19nvs_get_str_or_blobmN3nvs8ItemTypeEPKcPvPj + 0x400d96b8 0x5d esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x65 (size before relaxing) + *fill* 0x400d9715 0x3 + .text.nvs_flash_init_partition + 0x400d9718 0x26 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x32 (size before relaxing) + 0x400d9718 nvs_flash_init_partition + *fill* 0x400d973e 0x2 + .text.nvs_flash_init + 0x400d9740 0xd esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + 0x400d9740 nvs_flash_init + *fill* 0x400d974d 0x3 + .text.nvs_open_from_partition + 0x400d9750 0x7a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x86 (size before relaxing) + 0x400d9750 nvs_open_from_partition + *fill* 0x400d97ca 0x2 + .text.nvs_open + 0x400d97cc 0x16 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x400d97cc nvs_open + *fill* 0x400d97e2 0x2 + .text.nvs_erase_key + 0x400d97e4 0x27 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x32 (size before relaxing) + 0x400d97e4 nvs_erase_key + *fill* 0x400d980b 0x1 + .text.nvs_set_i8 + 0x400d980c 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x40 (size before relaxing) + 0x400d980c nvs_set_i8 + .text.nvs_set_u8 + 0x400d9840 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x40 (size before relaxing) + 0x400d9840 nvs_set_u8 + .text.nvs_set_u16 + 0x400d9874 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x40 (size before relaxing) + 0x400d9874 nvs_set_u16 + .text.nvs_set_u32 + 0x400d98a8 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x3a (size before relaxing) + 0x400d98a8 nvs_set_u32 + *fill* 0x400d98da 0x2 + .text.nvs_commit + 0x400d98dc 0x25 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x30 (size before relaxing) + 0x400d98dc nvs_commit + *fill* 0x400d9901 0x3 + .text.nvs_set_blob + 0x400d9904 0x2b esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x36 (size before relaxing) + 0x400d9904 nvs_set_blob + *fill* 0x400d992f 0x1 + .text.nvs_get_i8 + 0x400d9930 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x38 (size before relaxing) + 0x400d9930 nvs_get_i8 + .text.nvs_get_u8 + 0x400d9960 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x38 (size before relaxing) + 0x400d9960 nvs_get_u8 + .text.nvs_get_u16 + 0x400d9990 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x38 (size before relaxing) + 0x400d9990 nvs_get_u16 + .text.nvs_get_u32 + 0x400d99c0 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x38 (size before relaxing) + 0x400d99c0 nvs_get_u32 + .text.nvs_get_blob + 0x400d99f0 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x18 (size before relaxing) + 0x400d99f0 nvs_get_blob + .text.nvs_close + 0x400d9a04 0x3f esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x47 (size before relaxing) + 0x400d9a04 nvs_close + *fill* 0x400d9a43 0x1 + .text._ZN3nvs7Storage19populateBlobIndicesER14intrusive_listINS0_13BlobIndexNodeEE + 0x400d9a44 0x99 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x9d (size before relaxing) + 0x400d9a44 _ZN3nvs7Storage19populateBlobIndicesER14intrusive_listINS0_13BlobIndexNodeEE + *fill* 0x400d9add 0x3 + .text._ZN3nvs7Storage20eraseOrphanDataBlobsER14intrusive_listINS0_13BlobIndexNodeEE + 0x400d9ae0 0x106 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x400d9ae0 _ZN3nvs7Storage20eraseOrphanDataBlobsER14intrusive_listINS0_13BlobIndexNodeEE + *fill* 0x400d9be6 0x2 + .text._ZN3nvs7Storage8findItemEhNS_8ItemTypeEPKcRPNS_4PageERNS_4ItemEhNS_9VerOffsetE + 0x400d9be8 0x4b esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x400d9be8 _ZN3nvs7Storage8findItemEhNS_8ItemTypeEPKcRPNS_4PageERNS_4ItemEhNS_9VerOffsetE + *fill* 0x400d9c33 0x1 + .text._ZN3nvs7Storage18writeMultiPageBlobEhPKcPKvjNS_9VerOffsetE + 0x400d9c34 0x1fe esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x212 (size before relaxing) + 0x400d9c34 _ZN3nvs7Storage18writeMultiPageBlobEhPKcPKvjNS_9VerOffsetE + *fill* 0x400d9e32 0x2 + .text._ZN3nvs7Storage16cmpMultiPageBlobEhPKcPKvj + 0x400d9e34 0xc6 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xca (size before relaxing) + 0x400d9e34 _ZN3nvs7Storage16cmpMultiPageBlobEhPKcPKvj + *fill* 0x400d9efa 0x2 + .text._ZN3nvs7Storage18eraseMultiPageBlobEhPKcNS_9VerOffsetE + 0x400d9efc 0xfd esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x10d (size before relaxing) + 0x400d9efc _ZN3nvs7Storage18eraseMultiPageBlobEhPKcNS_9VerOffsetE + *fill* 0x400d9ff9 0x3 + .text._ZN3nvs7Storage17readMultiPageBlobEhPKcPvj + 0x400d9ffc 0x102 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x10e (size before relaxing) + 0x400d9ffc _ZN3nvs7Storage17readMultiPageBlobEhPKcPvj + *fill* 0x400da0fe 0x2 + .text._ZN3nvs7Storage8readItemEhNS_8ItemTypeEPKcPvj + 0x400da100 0x74 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x7c (size before relaxing) + 0x400da100 _ZN3nvs7Storage8readItemEhNS_8ItemTypeEPKcPvj + .text._ZN3nvs7Storage9writeItemEhNS_8ItemTypeEPKcPKvj + 0x400da174 0x262 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x272 (size before relaxing) + 0x400da174 _ZN3nvs7Storage9writeItemEhNS_8ItemTypeEPKcPKvj + *fill* 0x400da3d6 0x2 + .text._ZN3nvs7Storage9eraseItemEhNS_8ItemTypeEPKc + 0x400da3d8 0x7f esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x83 (size before relaxing) + 0x400da3d8 _ZN3nvs7Storage9eraseItemEhNS_8ItemTypeEPKc + *fill* 0x400da457 0x1 + .text._ZN3nvs7Storage14eraseNamespaceEh + 0x400da458 0x45 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x400da458 _ZN3nvs7Storage14eraseNamespaceEh + *fill* 0x400da49d 0x3 + .text._ZN3nvs7Storage7findKeyEhPKcPNS_8ItemTypeE + 0x400da4a0 0x36 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x3a (size before relaxing) + 0x400da4a0 _ZN3nvs7Storage7findKeyEhPKcPNS_8ItemTypeE + *fill* 0x400da4d6 0x2 + .text._ZN3nvs7Storage15getItemDataSizeEhNS_8ItemTypeEPKcRj + 0x400da4d8 0x68 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x6c (size before relaxing) + 0x400da4d8 _ZN3nvs7Storage15getItemDataSizeEhNS_8ItemTypeEPKcRj + .text._ZN3nvs7Storage22calcEntriesInNamespaceEhRj + 0x400da540 0x67 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x400da540 _ZN3nvs7Storage22calcEntriesInNamespaceEhRj + *fill* 0x400da5a7 0x1 + .text._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE17clearAndFreeNodesEv + 0x400da5a8 0x2e esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x400da5a8 _ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE17clearAndFreeNodesEv + *fill* 0x400da5d6 0x2 + .text._ZN3nvs7StorageD2Ev + 0x400da5d8 0x43 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x47 (size before relaxing) + 0x400da5d8 _ZN3nvs7StorageD2Ev + 0x400da5d8 _ZN3nvs7StorageD1Ev + *fill* 0x400da61b 0x1 + .text._ZN3nvs7Storage26eraseMismatchedBlobIndexesER14intrusive_listINS0_13BlobIndexNodeEE + 0x400da61c 0x165 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x16d (size before relaxing) + 0x400da61c _ZN3nvs7Storage26eraseMismatchedBlobIndexesER14intrusive_listINS0_13BlobIndexNodeEE + *fill* 0x400da781 0x3 + .text._ZN3nvs7Storage21createOrOpenNamespaceEPKcbRh + 0x400da784 0xd9 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xe5 (size before relaxing) + 0x400da784 _ZN3nvs7Storage21createOrOpenNamespaceEPKcbRh + *fill* 0x400da85d 0x3 + .text._ZN3nvs7Storage4initEmm + 0x400da860 0x125 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x140 (size before relaxing) + 0x400da860 _ZN3nvs7Storage4initEmm + *fill* 0x400da985 0x3 + .text._ZN3nvs15NVSHandleSimpleD2Ev + 0x400da988 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x18 (size before relaxing) + 0x400da988 _ZN3nvs15NVSHandleSimpleD2Ev + 0x400da988 _ZN3nvs15NVSHandleSimpleD1Ev + .text._ZN3nvs15NVSHandleSimpleD0Ev + 0x400da99c 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x16 (size before relaxing) + 0x400da99c _ZN3nvs15NVSHandleSimpleD0Ev + *fill* 0x400da9ae 0x2 + .text._ZN3nvs15NVSHandleSimple14set_typed_itemENS_8ItemTypeEPKcPKvj + 0x400da9b0 0x2e esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x32 (size before relaxing) + 0x400da9b0 _ZN3nvs15NVSHandleSimple14set_typed_itemENS_8ItemTypeEPKcPKvj + *fill* 0x400da9de 0x2 + .text._ZN3nvs15NVSHandleSimple8set_blobEPKcPKvj + 0x400da9e0 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x400da9e0 _ZN3nvs15NVSHandleSimple8set_blobEPKcPKvj + .text._ZN3nvs15NVSHandleSimple14get_typed_itemENS_8ItemTypeEPKcPvj + 0x400daa10 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x400daa10 _ZN3nvs15NVSHandleSimple14get_typed_itemENS_8ItemTypeEPKcPvj + .text._ZN3nvs15NVSHandleSimple10get_stringEPKcPcj + 0x400daa38 0x26 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x400daa38 _ZN3nvs15NVSHandleSimple10get_stringEPKcPcj + *fill* 0x400daa5e 0x2 + .text._ZN3nvs15NVSHandleSimple8get_blobEPKcPvj + 0x400daa60 0x26 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x400daa60 _ZN3nvs15NVSHandleSimple8get_blobEPKcPvj + *fill* 0x400daa86 0x2 + .text._ZN3nvs15NVSHandleSimple10set_stringEPKcS2_ + 0x400daa88 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x400daa88 _ZN3nvs15NVSHandleSimple10set_stringEPKcS2_ + .text._ZN3nvs15NVSHandleSimple13get_item_sizeENS_8ItemTypeEPKcRj + 0x400daac0 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x26 (size before relaxing) + 0x400daac0 _ZN3nvs15NVSHandleSimple13get_item_sizeENS_8ItemTypeEPKcRj + *fill* 0x400daae2 0x2 + .text._ZN3nvs15NVSHandleSimple8find_keyEPKcR10nvs_type_t + 0x400daae4 0x4a esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x400daae4 _ZN3nvs15NVSHandleSimple8find_keyEPKcR10nvs_type_t + *fill* 0x400dab2e 0x2 + .text._ZN3nvs15NVSHandleSimple9erase_allEv + 0x400dab30 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x400dab30 _ZN3nvs15NVSHandleSimple9erase_allEv + .text._ZN3nvs15NVSHandleSimple10erase_itemEPKc + 0x400dab58 0x2a esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x2e (size before relaxing) + 0x400dab58 _ZN3nvs15NVSHandleSimple10erase_itemEPKc + *fill* 0x400dab82 0x2 + .text._ZN3nvs15NVSHandleSimple20get_used_entry_countERj + 0x400dab84 0x2a esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x400dab84 _ZN3nvs15NVSHandleSimple20get_used_entry_countERj + *fill* 0x400dabae 0x2 + .text._ZN3nvs12NVSPartition8read_rawEjPvj + 0x400dabb0 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x400dabb0 _ZN3nvs12NVSPartition8read_rawEjPvj + *fill* 0x400dabc5 0x3 + .text._ZN3nvs12NVSPartition9write_rawEjPKvj + 0x400dabc8 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x400dabc8 _ZN3nvs12NVSPartition9write_rawEjPKvj + *fill* 0x400dabdd 0x3 + .text._ZN3nvs12NVSPartition11erase_rangeEjj + 0x400dabe0 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x14 (size before relaxing) + 0x400dabe0 _ZN3nvs12NVSPartition11erase_rangeEjj + .text._ZN3nvs12NVSPartitionD0Ev + 0x400dabf0 0xa esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0xe (size before relaxing) + 0x400dabf0 _ZN3nvs12NVSPartitionD0Ev + *fill* 0x400dabfa 0x2 + .text._ZN3nvs12NVSPartition5writeEjPKvj + 0x400dabfc 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x400dabfc _ZN3nvs12NVSPartition5writeEjPKvj + .text._ZN3nvs12NVSPartition4readEjPvj + 0x400dac1c 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x400dac1c _ZN3nvs12NVSPartition4readEjPvj + .text._ZN3nvs12NVSPartitionC2EPK15esp_partition_t + 0x400dac3c 0x1a esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x400dac3c _ZN3nvs12NVSPartitionC2EPK15esp_partition_t + 0x400dac3c _ZN3nvs12NVSPartitionC1EPK15esp_partition_t + *fill* 0x400dac56 0x2 + .text._ZN3nvs19NVSPartitionManagerD0Ev + 0x400dac58 0xa esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0xe (size before relaxing) + 0x400dac58 _ZN3nvs19NVSPartitionManagerD0Ev + *fill* 0x400dac62 0x2 + .text._ZN3nvs19NVSPartitionManager12get_instanceEv + 0x400dac64 0x2e esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x32 (size before relaxing) + 0x400dac64 _ZN3nvs19NVSPartitionManager12get_instanceEv + *fill* 0x400dac92 0x2 + .text._ZN3nvs19NVSPartitionManager24lookup_storage_from_nameEPKc + 0x400dac94 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x400dac94 _ZN3nvs19NVSPartitionManager24lookup_storage_from_nameEPKc + *fill* 0x400dacb6 0x2 + .text._ZN3nvs19NVSPartitionManager11open_handleEPKcS2_15nvs_open_mode_tPPNS_15NVSHandleSimpleE + 0x400dacb8 0xa2 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0xa6 (size before relaxing) + 0x400dacb8 _ZN3nvs19NVSPartitionManager11open_handleEPKcS2_15nvs_open_mode_tPPNS_15NVSHandleSimpleE + *fill* 0x400dad5a 0x2 + .text._ZN3nvs19NVSPartitionManager11init_customEPNS_9PartitionEmm + 0x400dad5c 0xb1 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0xbd (size before relaxing) + 0x400dad5c _ZN3nvs19NVSPartitionManager11init_customEPNS_9PartitionEmm + *fill* 0x400dae0d 0x3 + .text._ZN3nvs19NVSPartitionManager14init_partitionEPKc + 0x400dae10 0x77 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x7f (size before relaxing) + 0x400dae10 _ZN3nvs19NVSPartitionManager14init_partitionEPKc + *fill* 0x400dae87 0x1 + .text._ZN3nvs19NVSPartitionManager12close_handleEPNS_15NVSHandleSimpleE + 0x400dae88 0x25 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x400dae88 _ZN3nvs19NVSPartitionManager12close_handleEPNS_15NVSHandleSimpleE + *fill* 0x400daead 0x3 + .text._ZN3nvs4LockC2Ev + 0x400daeb0 0xb esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + 0xe (size before relaxing) + 0x400daeb0 _ZN3nvs4LockC2Ev + 0x400daeb0 _ZN3nvs4LockC1Ev + *fill* 0x400daebb 0x1 + .text._ZN3nvs4LockD2Ev + 0x400daebc 0xb esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + 0xe (size before relaxing) + 0x400daebc _ZN3nvs4LockD2Ev + 0x400daebc _ZN3nvs4LockD1Ev + *fill* 0x400daec7 0x1 + .text._ZN3nvs8HashList6insertERKNS_4ItemEj + 0x400daec8 0x74 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x78 (size before relaxing) + 0x400daec8 _ZN3nvs8HashList6insertERKNS_4ItemEj + .text._ZN3nvs8HashList4findEjRKNS_4ItemE + 0x400daf3c 0x40 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x44 (size before relaxing) + 0x400daf3c _ZN3nvs8HashList4findEjRKNS_4ItemE + .text._ZN3nvs8HashList5clearEv + 0x400daf7c 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x400daf7c _ZN3nvs8HashList5clearEv + *fill* 0x400daf9e 0x2 + .text._ZN3nvs8HashListD2Ev + 0x400dafa0 0xa esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0xe (size before relaxing) + 0x400dafa0 _ZN3nvs8HashListD2Ev + 0x400dafa0 _ZN3nvs8HashListD1Ev + *fill* 0x400dafaa 0x2 + .text._ZN3nvs8HashList5eraseEj + 0x400dafac 0x59 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x5d (size before relaxing) + 0x400dafac _ZN3nvs8HashList5eraseEj + *fill* 0x400db005 0x3 + .text._ZN3nvs4ItemC2EhNS_8ItemTypeEhPKch + 0x400db008 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x400db008 _ZN3nvs4ItemC1EhNS_8ItemTypeEhPKch + 0x400db008 _ZN3nvs4ItemC2EhNS_8ItemTypeEhPKch + *fill* 0x400db046 0x2 + .text._ZN3nvs4PageC2Ev + 0x400db048 0x2d esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x400db048 _ZN3nvs4PageC1Ev + 0x400db048 _ZN3nvs4PageC2Ev + *fill* 0x400db075 0x3 + .text._ZN3nvs4Page6Header14calculateCrc32Ev + 0x400db078 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x400db078 _ZN3nvs4Page6Header14calculateCrc32Ev + .text._ZN3nvs4Page10initializeEv + 0x400db08c 0x64 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x400db08c _ZN3nvs4Page10initializeEv + .text._ZN3nvs4Page5eraseEv + 0x400db0f0 0x37 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x400db0f0 _ZN3nvs4Page5eraseEv + *fill* 0x400db127 0x1 + .text._ZN3nvs4Page11markFreeingEv + 0x400db128 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x400db128 _ZN3nvs4Page11markFreeingEv + *fill* 0x400db14a 0x2 + .text._ZN3nvs4Page8markFullEv + 0x400db14c 0x1e esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x400db14c _ZN3nvs4Page8markFullEv + *fill* 0x400db16a 0x2 + .text._ZN3nvs4Page20updateFirstUsedEntryEjj + 0x400db16c 0x43 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x400db16c _ZN3nvs4Page20updateFirstUsedEntryEjj + *fill* 0x400db1af 0x1 + .text._ZN3nvs4Page15alterEntryStateEjNS0_10EntryStateE + 0x400db1b0 0x4b esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x400db1b0 _ZN3nvs4Page15alterEntryStateEjNS0_10EntryStateE + *fill* 0x400db1fb 0x1 + .text._ZN3nvs4Page10writeEntryERKNS_4ItemE + 0x400db1fc 0x5b esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x400db1fc _ZN3nvs4Page10writeEntryERKNS_4ItemE + *fill* 0x400db257 0x1 + .text._ZN3nvs4Page9copyItemsERS0_ + 0x400db258 0xa6 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0xb6 (size before relaxing) + 0x400db258 _ZN3nvs4Page9copyItemsERS0_ + *fill* 0x400db2fe 0x2 + .text._ZN3nvs4Page20alterEntryRangeStateEjjNS0_10EntryStateE + 0x400db300 0x74 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x400db300 _ZN3nvs4Page20alterEntryRangeStateEjjNS0_10EntryStateE + .text._ZN3nvs4Page14writeEntryDataEPKhj + 0x400db374 0x6a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x400db374 _ZN3nvs4Page14writeEntryDataEPKhj + *fill* 0x400db3de 0x2 + .text._ZN3nvs4Page9writeItemEhNS_8ItemTypeEPKcPKvjh + 0x400db3e0 0x166 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x17e (size before relaxing) + 0x400db3e0 _ZN3nvs4Page9writeItemEhNS_8ItemTypeEPKcPKvjh + *fill* 0x400db546 0x2 + .text._ZN3nvs4Page17eraseEntryAndSpanEj + 0x400db548 0x113 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x123 (size before relaxing) + 0x400db548 _ZN3nvs4Page17eraseEntryAndSpanEj + *fill* 0x400db65b 0x1 + .text._ZN3nvs4Page8findItemEhNS_8ItemTypeEPKcRjRNS_4ItemEhNS_9VerOffsetE + 0x400db65c 0x1d5 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x1dd (size before relaxing) + 0x400db65c _ZN3nvs4Page8findItemEhNS_8ItemTypeEPKcRjRNS_4ItemEhNS_9VerOffsetE + *fill* 0x400db831 0x3 + .text._ZN3nvs4Page7cmpItemEhNS_8ItemTypeEPKcPKvjhNS_9VerOffsetE + 0x400db834 0xdd esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0xe1 (size before relaxing) + 0x400db834 _ZN3nvs4Page7cmpItemEhNS_8ItemTypeEPKcPKvjhNS_9VerOffsetE + *fill* 0x400db911 0x3 + .text._ZN3nvs4Page8readItemEhNS_8ItemTypeEPKcPvjhNS_9VerOffsetE + 0x400db914 0xdd esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0xe5 (size before relaxing) + 0x400db914 _ZN3nvs4Page8readItemEhNS_8ItemTypeEPKcPvjhNS_9VerOffsetE + *fill* 0x400db9f1 0x3 + .text._ZN3nvs4Page9eraseItemEhNS_8ItemTypeEPKchNS_9VerOffsetE + 0x400db9f4 0x3a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x42 (size before relaxing) + 0x400db9f4 _ZN3nvs4Page9eraseItemEhNS_8ItemTypeEPKchNS_9VerOffsetE + *fill* 0x400dba2e 0x2 + .text._ZN3nvs4Page15mLoadEntryTableEv + 0x400dba30 0x318 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x33f (size before relaxing) + 0x400dba30 _ZN3nvs4Page15mLoadEntryTableEv + *fill* 0x400dbd48 0x0 + .text._ZN3nvs4Page4loadEPNS_9PartitionEm + 0x400dbd48 0x138 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x400dbd48 _ZN3nvs4Page4loadEPNS_9PartitionEm + .text._ZN14intrusive_listIN3nvs4PageEE5clearEv + 0x400dbe80 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x400dbe80 _ZN14intrusive_listIN3nvs4PageEE5clearEv + .text._ZN3nvs11PageManager12activatePageEv + 0x400dbe94 0x4d esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x50 (size before relaxing) + 0x400dbe94 _ZN3nvs11PageManager12activatePageEv + *fill* 0x400dbee1 0x3 + .text._ZN3nvs11PageManager14requestNewPageEv + 0x400dbee4 0xb5 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0xc5 (size before relaxing) + 0x400dbee4 _ZN3nvs11PageManager14requestNewPageEv + *fill* 0x400dbf99 0x3 + .text._ZN3nvs11PageManager4loadEPNS_9PartitionEmm + 0x400dbf9c 0x28b esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x2b3 (size before relaxing) + 0x400dbf9c _ZN3nvs11PageManager4loadEPNS_9PartitionEmm + *fill* 0x400dc227 0x1 + .text._ZN3nvs16partition_lookup20lookup_nvs_partitionEPKcPPNS_12NVSPartitionE + 0x400dc228 0x36 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + 0x3e (size before relaxing) + 0x400dc228 _ZN3nvs16partition_lookup20lookup_nvs_partitionEPKcPPNS_12NVSPartitionE + *fill* 0x400dc25e 0x2 + .text._ZNK3nvs4Item14calculateCrc32Ev + 0x400dc260 0x2c esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x400dc260 _ZNK3nvs4Item14calculateCrc32Ev + .text._ZNK3nvs4Item26calculateCrc32WithoutValueEv + 0x400dc28c 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x400dc28c _ZNK3nvs4Item26calculateCrc32WithoutValueEv + .text._ZN3nvs4Item14calculateCrc32EPKhj + 0x400dc2b4 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x400dc2b4 _ZN3nvs4Item14calculateCrc32EPKhj + .text.esp_netif_add_to_list_unsafe + 0x400dc2c8 0x2c esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x400dc2c8 esp_netif_add_to_list_unsafe + .text.esp_netif_remove_from_list_unsafe + 0x400dc2f4 0x55 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x400dc2f4 esp_netif_remove_from_list_unsafe + *fill* 0x400dc349 0x3 + .text.esp_netif_get_nr_of_ifs + 0x400dc34c 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x400dc34c esp_netif_get_nr_of_ifs + *fill* 0x400dc356 0x2 + .text.esp_netif_next_unsafe + 0x400dc358 0x1f esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x400dc358 esp_netif_next_unsafe + *fill* 0x400dc377 0x1 + .text.esp_netif_is_netif_listed + 0x400dc378 0x1d esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x400dc378 esp_netif_is_netif_listed + *fill* 0x400dc395 0x3 + .text.esp_netif_get_handle_from_ifkey_unsafe + 0x400dc398 0x2c esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x400dc398 esp_netif_get_handle_from_ifkey_unsafe + .text.esp_netif_api_cb + 0x400dc3c4 0x1b esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x400dc3df 0x1 + .text.tcpip_init_done + 0x400dc3e0 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xe (size before relaxing) + *fill* 0x400dc3ea 0x2 + .text.esp_netif_set_mac_api + 0x400dc3ec 0x29 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x400dc3ec esp_netif_set_mac_api + *fill* 0x400dc415 0x3 + .text.esp_netif_set_ip_old_info_api + 0x400dc418 0x2e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x400dc446 0x2 + .text.esp_netif_dhcps_cb + 0x400dc448 0x7e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8a (size before relaxing) + *fill* 0x400dc4c6 0x2 + .text.netif_send_mldv6 + 0x400dc4c8 0x2a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x2e (size before relaxing) + *fill* 0x400dc4f2 0x2 + .text.netif_send_garp + 0x400dc4f4 0x24 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x2b (size before relaxing) + *fill* 0x400dc518 0x0 + .text.esp_netif_dhcps_stop_api + 0x400dc518 0x37 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x400dc54f 0x1 + .text.esp_netif_lwip_ipc_call_msg + 0x400dc550 0x35 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x41 (size before relaxing) + *fill* 0x400dc585 0x3 + .text.esp_netif_lwip_ipc_call + 0x400dc588 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x1c (size before relaxing) + .text.dns_clear_servers$constprop$0 + 0x400dc5a0 0x16 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x1a (size before relaxing) + *fill* 0x400dc5b6 0x2 + .text.esp_netif_start_ip_lost_timer$isra$0 + 0x400dc5b8 0x2c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcpc_start_api + 0x400dc5e4 0x92 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xa2 (size before relaxing) + *fill* 0x400dc676 0x2 + .text.esp_netif_dhcpc_stop_api + 0x400dc678 0x58 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x60 (size before relaxing) + .text.esp_netif_lwip_remove + 0x400dc6d0 0x4a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x5a (size before relaxing) + *fill* 0x400dc71a 0x2 + .text.esp_netif_update_default_netif + 0x400dc71c 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x400dc71c esp_netif_update_default_netif + .text.esp_netif_ip_lost_timer + 0x400dc730 0x76 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x86 (size before relaxing) + *fill* 0x400dc7a6 0x2 + .text.esp_netif_destroy_api + 0x400dc7a8 0x5a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x7e (size before relaxing) + *fill* 0x400dc802 0x2 + .text.esp_netif_new_api + 0x400dc804 0x251 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x2a1 (size before relaxing) + *fill* 0x400dca55 0x3 + .text.esp_netif_start_api + 0x400dca58 0x201 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x249 (size before relaxing) + *fill* 0x400dcc59 0x3 + .text.esp_netif_stop_api + 0x400dcc5c 0x77 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8b (size before relaxing) + *fill* 0x400dccd3 0x1 + .text.esp_netif_up_api + 0x400dccd4 0x3c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x47 (size before relaxing) + *fill* 0x400dcd10 0x0 + .text.esp_netif_down_api + 0x400dcd10 0x9c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xb4 (size before relaxing) + .text.netif_callback_fn + 0x400dcdac 0x1aa esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x1c5 (size before relaxing) + *fill* 0x400dcf56 0x2 + .text.esp_netif_init + 0x400dcf58 0xa2 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xce (size before relaxing) + 0x400dcf58 esp_netif_init + *fill* 0x400dcffa 0x2 + .text.esp_netif_new + 0x400dcffc 0x20 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x24 (size before relaxing) + 0x400dcffc esp_netif_new + .text.esp_netif_attach + 0x400dd01c 0x3a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x3e (size before relaxing) + 0x400dd01c esp_netif_attach + *fill* 0x400dd056 0x2 + .text.esp_netif_set_mac + 0x400dd058 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x20 (size before relaxing) + 0x400dd058 esp_netif_set_mac + .text.esp_netif_start + 0x400dd074 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x400dd074 esp_netif_start + .text.esp_netif_stop + 0x400dd088 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x400dd088 esp_netif_stop + .text.esp_netif_netstack_buf_ref + 0x400dd09c 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xe (size before relaxing) + 0x400dd09c esp_netif_netstack_buf_ref + *fill* 0x400dd0a6 0x2 + .text.esp_netif_netstack_buf_free + 0x400dd0a8 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xe (size before relaxing) + 0x400dd0a8 esp_netif_netstack_buf_free + *fill* 0x400dd0b2 0x2 + .text.esp_netif_dhcpc_stop + 0x400dd0b4 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x400dd0b4 esp_netif_dhcpc_stop + .text.esp_netif_dhcpc_start + 0x400dd0c8 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x400dd0c8 esp_netif_dhcpc_start + .text.esp_netif_dhcps_stop + 0x400dd0dc 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x400dd0dc esp_netif_dhcps_stop + .text.esp_netif_up + 0x400dd0f0 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x400dd0f0 esp_netif_up + .text.esp_netif_down + 0x400dd104 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x400dd104 esp_netif_down + .text.esp_netif_update_default_netif_lwip + 0x400dd118 0xd7 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xdf (size before relaxing) + *fill* 0x400dd1ef 0x1 + .text.esp_netif_get_old_ip_info + 0x400dd1f0 0x2a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x400dd1f0 esp_netif_get_old_ip_info + *fill* 0x400dd21a 0x2 + .text.esp_netif_get_ip_info + 0x400dd21c 0x46 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x400dd21c esp_netif_get_ip_info + *fill* 0x400dd262 0x2 + .text.esp_netif_set_old_ip_info + 0x400dd264 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x400dd264 esp_netif_set_old_ip_info + .text.esp_supp_crc32 + 0x400dd278 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .text.esp_aes_gmac + 0x400dd28c 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + *fill* 0x400dd2a9 0x3 + .text.esp_aes_decrypt + 0x400dd2ac 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x12 (size before relaxing) + *fill* 0x400dd2ba 0x2 + .text.esp_aes_encrypt + 0x400dd2bc 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x12 (size before relaxing) + *fill* 0x400dd2ca 0x2 + .text.esp_aes_unwrap + 0x400dd2cc 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x18 (size before relaxing) + .text.esp_aes_wrap + 0x400dd2e0 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x18 (size before relaxing) + .text.sha256_prf_bits + 0x400dd2f4 0xdb esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + 0xe3 (size before relaxing) + 0x400dd2f4 sha256_prf_bits + *fill* 0x400dd3cf 0x1 + .text.sha256_prf + 0x400dd3d0 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + 0x400dd3d0 sha256_prf + .text.sha1_prf + 0x400dd3f0 0x8f esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + 0x93 (size before relaxing) + 0x400dd3f0 sha1_prf + *fill* 0x400dd47f 0x1 + .text.digest_vector + 0x400dd480 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x72 (size before relaxing) + *fill* 0x400dd4de 0x2 + .text.hmac_vector + 0x400dd4e0 0x62 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x76 (size before relaxing) + *fill* 0x400dd542 0x2 + .text.sha256_vector + 0x400dd544 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x18 (size before relaxing) + 0x400dd544 sha256_vector + .text.sha1_vector + 0x400dd558 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x18 (size before relaxing) + 0x400dd558 sha1_vector + .text.md5_vector + 0x400dd56c 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x18 (size before relaxing) + 0x400dd56c md5_vector + .text.hmac_sha256_vector + 0x400dd580 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x1c (size before relaxing) + 0x400dd580 hmac_sha256_vector + .text.hmac_sha256 + 0x400dd598 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x400dd598 hmac_sha256 + *fill* 0x400dd5b5 0x3 + .text.hmac_md5_vector + 0x400dd5b8 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x1c (size before relaxing) + 0x400dd5b8 hmac_md5_vector + .text.hmac_md5 + 0x400dd5d0 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x400dd5d0 hmac_md5 + *fill* 0x400dd5ed 0x3 + .text.hmac_sha1_vector + 0x400dd5f0 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x1c (size before relaxing) + 0x400dd5f0 hmac_sha1_vector + .text.hmac_sha1 + 0x400dd608 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x400dd608 hmac_sha1 + *fill* 0x400dd625 0x3 + .text.aes_encrypt_init + 0x400dd628 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x40 (size before relaxing) + 0x400dd628 aes_encrypt_init + .text.aes_encrypt + 0x400dd658 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x400dd658 aes_encrypt + *fill* 0x400dd66d 0x3 + .text.aes_encrypt_deinit + 0x400dd670 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x16 (size before relaxing) + 0x400dd670 aes_encrypt_deinit + *fill* 0x400dd682 0x2 + .text.aes_decrypt_init + 0x400dd684 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x40 (size before relaxing) + 0x400dd684 aes_decrypt_init + .text.aes_decrypt + 0x400dd6b4 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x400dd6b4 aes_decrypt + *fill* 0x400dd6c9 0x3 + .text.aes_decrypt_deinit + 0x400dd6cc 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x16 (size before relaxing) + 0x400dd6cc aes_decrypt_deinit + *fill* 0x400dd6de 0x2 + .text.aes_128_cbc_encrypt + 0x400dd6e0 0x45 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4d (size before relaxing) + 0x400dd6e0 aes_128_cbc_encrypt + *fill* 0x400dd725 0x3 + .text.aes_128_cbc_decrypt + 0x400dd728 0x45 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4d (size before relaxing) + 0x400dd728 aes_128_cbc_decrypt + *fill* 0x400dd76d 0x3 + .text.aes_ctr_encrypt + 0x400dd770 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4b (size before relaxing) + 0x400dd770 aes_ctr_encrypt + *fill* 0x400dd7ac 0x0 + .text.pbkdf2_sha1 + 0x400dd7ac 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x24 (size before relaxing) + 0x400dd7ac pbkdf2_sha1 + .text.omac1_aes_vector + 0x400dd7cc 0xa6 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0xb2 (size before relaxing) + 0x400dd7cc omac1_aes_vector + *fill* 0x400dd872 0x2 + .text.omac1_aes_128_vector + 0x400dd874 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x400dd874 omac1_aes_128_vector + *fill* 0x400dd88d 0x3 + .text.omac1_aes_128 + 0x400dd890 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x1c (size before relaxing) + 0x400dd890 omac1_aes_128 + .text.aes_wrap + 0x400dd8a8 0xc3 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + 0xca (size before relaxing) + 0x400dd8a8 aes_wrap + *fill* 0x400dd96b 0x1 + .text.aes_unwrap + 0x400dd96c 0xe9 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + 0xf1 (size before relaxing) + 0x400dd96c aes_unwrap + *fill* 0x400dda55 0x3 + .text.os_get_time + 0x400dda58 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x400dda58 os_get_time + *fill* 0x400dda75 0x3 + .text.os_random + 0x400dda78 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0xd (size before relaxing) + 0x400dda78 os_random + *fill* 0x400dda82 0x2 + .text.os_get_random + 0x400dda84 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x400dda84 os_get_random + *fill* 0x400dda95 0x3 + .text.os_sleep + 0x400dda98 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x1f (size before relaxing) + 0x400dda98 os_sleep + *fill* 0x400ddab4 0x0 + .text.forced_memzero + 0x400ddab4 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x400ddab4 forced_memzero + *fill* 0x400ddac3 0x1 + .text.ccmp_aad_nonce + 0x400ddac4 0x11f esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + *fill* 0x400ddbe3 0x1 + .text.ccmp_decrypt + 0x400ddbe4 0x87 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + 0x93 (size before relaxing) + 0x400ddbe4 ccmp_decrypt + *fill* 0x400ddc6b 0x1 + .text.ccmp_encrypt + 0x400ddc6c 0xdf esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + 0xeb (size before relaxing) + 0x400ddc6c ccmp_encrypt + *fill* 0x400ddd4b 0x1 + .text.WPA_GET_BE32 + 0x400ddd4c 0x2b esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + *fill* 0x400ddd77 0x1 + .text.inc32 0x400ddd78 0x21 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + 0x25 (size before relaxing) + *fill* 0x400ddd99 0x3 + .text.aes_gcm_init_hash_subkey + 0x400ddd9c 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + 0x2b (size before relaxing) + *fill* 0x400dddc3 0x1 + .text.aes_gctr$part$0 + 0x400dddc4 0x72 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + 0x82 (size before relaxing) + *fill* 0x400dde36 0x2 + .text.shift_right_block + 0x400dde38 0x8c esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + 0x98 (size before relaxing) + .text.gf_mult 0x400ddec4 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + 0x61 (size before relaxing) + *fill* 0x400ddf22 0x2 + .text.ghash 0x400ddf24 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + 0x84 (size before relaxing) + .text.aes_gcm_ghash + 0x400ddfa4 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + 0x5a (size before relaxing) + *fill* 0x400ddff2 0x2 + .text.aes_gcm_prepare_j0 + 0x400ddff4 0x73 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + 0x7b (size before relaxing) + *fill* 0x400de067 0x1 + .text.aes_gcm_ae + 0x400de068 0x6e esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + 0x86 (size before relaxing) + 0x400de068 aes_gcm_ae + *fill* 0x400de0d6 0x2 + .text.aes_gmac + 0x400de0d8 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + 0x400de0d8 aes_gmac + *fill* 0x400de0fd 0x3 + .text.hex2byte + 0x400de100 0x2b esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x400de100 hex2byte + *fill* 0x400de12b 0x1 + .text.hexstr2bin + 0x400de12c 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x400de12c hexstr2bin + *fill* 0x400de152 0x2 + .text.wpa_get_ntp_timestamp + 0x400de154 0x56 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x5a (size before relaxing) + 0x400de154 wpa_get_ntp_timestamp + *fill* 0x400de1aa 0x2 + .text.printf_decode + 0x400de1ac 0x10c esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x400de1ac printf_decode + .text.dup_binstr + 0x400de2b8 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x2a (size before relaxing) + 0x400de2b8 dup_binstr + *fill* 0x400de2de 0x2 + .text.wpa_config_parse_string + 0x400de2e0 0xe6 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x102 (size before relaxing) + 0x400de2e0 wpa_config_parse_string + *fill* 0x400de3c6 0x2 + .text.bin_clear_free + 0x400de3c8 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x1a (size before relaxing) + 0x400de3c8 bin_clear_free + *fill* 0x400de3de 0x2 + .text.os_memdup + 0x400de3e0 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x20 (size before relaxing) + 0x400de3e0 os_memdup + .text.os_reltime_expired + 0x400de3fc 0x69 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x400de3fc os_reltime_expired + *fill* 0x400de465 0x3 + .text.sha1_extract + 0x400de468 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + .text.fastpbkdf2_hmac_sha1 + 0x400de4a0 0x27d esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + 0x2c5 (size before relaxing) + 0x400de4a0 fastpbkdf2_hmac_sha1 + *fill* 0x400de71d 0x3 + .text.aes_ccm_auth + 0x400de720 0x53 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x57 (size before relaxing) + *fill* 0x400de773 0x1 + .text.aes_ccm_encr$constprop$0 + 0x400de774 0x79 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x81 (size before relaxing) + *fill* 0x400de7ed 0x3 + .text.aes_ccm_auth_start$constprop$0 + 0x400de7f0 0xa3 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0xab (size before relaxing) + *fill* 0x400de893 0x1 + .text.aes_ccm_ae + 0x400de894 0xa9 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0xbd (size before relaxing) + 0x400de894 aes_ccm_ae + *fill* 0x400de93d 0x3 + .text.aes_ccm_ad + 0x400de940 0xbb esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0xcb (size before relaxing) + 0x400de940 aes_ccm_ad + *fill* 0x400de9fb 0x1 + .text.esp_mesh_send_event_internal + 0x400de9fc 0x18 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + 0x400de9fc esp_mesh_send_event_internal + .text.wifi_deinit_internal + 0x400dea14 0x82 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0xa9 (size before relaxing) + *fill* 0x400dea96 0x2 + .text.startup.s_set_default_wifi_log_level + 0x400dea98 0x32 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + *fill* 0x400deaca 0x2 + .text.esp_wifi_init + 0x400deacc 0x13a esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x196 (size before relaxing) + 0x400deacc esp_wifi_init + *fill* 0x400dec06 0x2 + .text.wifi_default_action_ap_stop + 0x400dec08 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.wifi_default_action_sta_stop + 0x400dec20 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.wifi_start + 0x400dec38 0xa3 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0xbf (size before relaxing) + *fill* 0x400decdb 0x1 + .text.wifi_default_action_ap_start + 0x400decdc 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.wifi_default_action_sta_start + 0x400decf4 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.wifi_default_action_sta_disconnected + 0x400ded0c 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.wifi_default_action_sta_connected + 0x400ded24 0x5b esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x5f (size before relaxing) + *fill* 0x400ded7f 0x1 + .text.wifi_default_action_sta_got_ip + 0x400ded80 0x38 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x40 (size before relaxing) + .text.esp_netif_attach_wifi + 0x400dedb8 0x42 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x4e (size before relaxing) + *fill* 0x400dedfa 0x2 + .text.clear_default_wifi_handlers$isra$0 + 0x400dedfc 0x77 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x7f (size before relaxing) + *fill* 0x400dee73 0x1 + .text.set_default_wifi_handlers + 0x400dee74 0xc2 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0xcd (size before relaxing) + *fill* 0x400def36 0x2 + .text.esp_netif_attach_wifi_station + 0x400def38 0x11 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x400def38 esp_netif_attach_wifi_station + *fill* 0x400def49 0x3 + .text.esp_netif_attach_wifi_ap + 0x400def4c 0x11 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x400def4c esp_netif_attach_wifi_ap + *fill* 0x400def5d 0x3 + .text.esp_netif_create_default_wifi_mesh_netifs + 0x400def60 0x106 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x11a (size before relaxing) + 0x400def60 esp_netif_create_default_wifi_mesh_netifs + *fill* 0x400df066 0x2 + .text.mbedtls_mpi_free + 0x400df068 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x400df068 mbedtls_mpi_free + *fill* 0x400df087 0x1 + .text.mbedtls_mpi_grow + 0x400df088 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x52 (size before relaxing) + 0x400df088 mbedtls_mpi_grow + *fill* 0x400df0d6 0x2 + .text.mbedtls_mpi_safe_cond_assign + 0x400df0d8 0x6f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x400df0d8 mbedtls_mpi_safe_cond_assign + *fill* 0x400df147 0x1 + .text.mbedtls_mpi_safe_cond_swap + 0x400df148 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x7c (size before relaxing) + 0x400df148 mbedtls_mpi_safe_cond_swap + .text.mbedtls_mpi_resize_clear + 0x400df1c0 0x3f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x43 (size before relaxing) + *fill* 0x400df1ff 0x1 + .text.mbedtls_mpi_shrink + 0x400df200 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x70 (size before relaxing) + 0x400df200 mbedtls_mpi_shrink + .text.mbedtls_mpi_copy + 0x400df268 0x77 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x7b (size before relaxing) + 0x400df268 mbedtls_mpi_copy + *fill* 0x400df2df 0x1 + .text.mbedtls_mpi_lset + 0x400df2e0 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x38 (size before relaxing) + 0x400df2e0 mbedtls_mpi_lset + .text.mbedtls_mpi_set_bit + 0x400df314 0x51 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x400df314 mbedtls_mpi_set_bit + *fill* 0x400df365 0x3 + .text.mbedtls_mpi_bitlen + 0x400df368 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x400df368 mbedtls_mpi_bitlen + *fill* 0x400df37a 0x2 + .text.mbedtls_mpi_size + 0x400df37c 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x13 (size before relaxing) + 0x400df37c mbedtls_mpi_size + *fill* 0x400df38b 0x1 + .text.mbedtls_mpi_read_binary_le + 0x400df38c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x34 (size before relaxing) + 0x400df38c mbedtls_mpi_read_binary_le + .text.mbedtls_mpi_read_binary + 0x400df3bc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x34 (size before relaxing) + 0x400df3bc mbedtls_mpi_read_binary + .text.mbedtls_mpi_write_binary_le + 0x400df3ec 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x400df3ec mbedtls_mpi_write_binary_le + *fill* 0x400df402 0x2 + .text.mbedtls_mpi_write_binary + 0x400df404 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x400df404 mbedtls_mpi_write_binary + *fill* 0x400df41a 0x2 + .text.mbedtls_mpi_shift_l + 0x400df41c 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4c (size before relaxing) + 0x400df41c mbedtls_mpi_shift_l + .text.mbedtls_mpi_shift_r + 0x400df464 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x400df464 mbedtls_mpi_shift_r + *fill* 0x400df47a 0x2 + .text.mbedtls_mpi_cmp_int + 0x400df47c 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x400df47c mbedtls_mpi_cmp_int + .text.mbedtls_mpi_add_abs + 0x400df4a4 0x8e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x96 (size before relaxing) + 0x400df4a4 mbedtls_mpi_add_abs + *fill* 0x400df532 0x2 + .text.mbedtls_mpi_sub_abs + 0x400df534 0xb3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x400df534 mbedtls_mpi_sub_abs + *fill* 0x400df5e7 0x1 + .text.add_sub_mpi + 0x400df5e8 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x6a (size before relaxing) + *fill* 0x400df64e 0x2 + .text.mbedtls_mpi_add_mpi + 0x400df650 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x400df650 mbedtls_mpi_add_mpi + *fill* 0x400df665 0x3 + .text.mbedtls_mpi_sub_mpi + 0x400df668 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x400df668 mbedtls_mpi_sub_mpi + *fill* 0x400df67d 0x3 + .text.mbedtls_mpi_add_int + 0x400df680 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x400df680 mbedtls_mpi_add_int + *fill* 0x400df6aa 0x2 + .text.mbedtls_mpi_sub_int + 0x400df6ac 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x400df6ac mbedtls_mpi_sub_int + *fill* 0x400df6d6 0x2 + .text.mbedtls_mpi_div_mpi + 0x400df6d8 0x30b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x367 (size before relaxing) + 0x400df6d8 mbedtls_mpi_div_mpi + *fill* 0x400df9e3 0x1 + .text.mbedtls_mpi_div_int + 0x400df9e4 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x400df9e4 mbedtls_mpi_div_int + .text.mbedtls_mpi_mod_mpi + 0x400dfa10 0x5d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x65 (size before relaxing) + 0x400dfa10 mbedtls_mpi_mod_mpi + *fill* 0x400dfa6d 0x3 + .text.mpi_check_small_factors + 0x400dfa70 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + *fill* 0x400dfabe 0x2 + .text.mbedtls_mpi_gcd + 0x400dfac0 0xf4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x114 (size before relaxing) + 0x400dfac0 mbedtls_mpi_gcd + .text.mbedtls_mpi_fill_random + 0x400dfbb4 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x38 (size before relaxing) + 0x400dfbb4 mbedtls_mpi_fill_random + .text.mpi_miller_rabin + 0x400dfbe8 0x17a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x1ae (size before relaxing) + *fill* 0x400dfd62 0x2 + .text.mbedtls_mpi_random + 0x400dfd64 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x3e (size before relaxing) + 0x400dfd64 mbedtls_mpi_random + *fill* 0x400dfd9a 0x2 + .text.mbedtls_mpi_inv_mod + 0x400dfd9c 0x294 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x2fc (size before relaxing) + 0x400dfd9c mbedtls_mpi_inv_mod + .text.mbedtls_mpi_is_prime_ext + 0x400e0030 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x60 (size before relaxing) + 0x400e0030 mbedtls_mpi_is_prime_ext + .text.mbedtls_ct_uint_lt + 0x400e0084 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + *fill* 0x400e00b1 0x3 + .text.mbedtls_mpi_core_bigendian_to_host + 0x400e00b4 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x400e00b4 mbedtls_mpi_core_bigendian_to_host + *fill* 0x400e00e2 0x2 + .text.mbedtls_mpi_core_uint_le_mpi + 0x400e00e4 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x400e00e4 mbedtls_mpi_core_uint_le_mpi + *fill* 0x400e0117 0x1 + .text.mbedtls_mpi_core_lt_ct + 0x400e0118 0x43 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4b (size before relaxing) + 0x400e0118 mbedtls_mpi_core_lt_ct + *fill* 0x400e015b 0x1 + .text.mbedtls_mpi_core_read_le + 0x400e015c 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x400e015c mbedtls_mpi_core_read_le + .text.mbedtls_mpi_core_read_be + 0x400e01ac 0x46 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4a (size before relaxing) + 0x400e01ac mbedtls_mpi_core_read_be + *fill* 0x400e01f2 0x2 + .text.mbedtls_mpi_core_write_le + 0x400e01f4 0x69 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x400e01f4 mbedtls_mpi_core_write_le + *fill* 0x400e025d 0x3 + .text.mbedtls_mpi_core_write_be + 0x400e0260 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x400e0260 mbedtls_mpi_core_write_be + *fill* 0x400e02c6 0x2 + .text.mbedtls_mpi_core_shift_r + 0x400e02c8 0x77 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x400e02c8 mbedtls_mpi_core_shift_r + *fill* 0x400e033f 0x1 + .text.mbedtls_mpi_core_shift_l + 0x400e0340 0x6f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x400e0340 mbedtls_mpi_core_shift_l + *fill* 0x400e03af 0x1 + .text.mbedtls_mpi_core_montmul + 0x400e03b0 0x93 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x400e03b0 mbedtls_mpi_core_montmul + *fill* 0x400e0443 0x1 + .text.mbedtls_mpi_core_get_mont_r2_unsafe + 0x400e0444 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x3d (size before relaxing) + 0x400e0444 mbedtls_mpi_core_get_mont_r2_unsafe + *fill* 0x400e0475 0x3 + .text.mbedtls_mpi_core_fill_random + 0x400e0478 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x64 (size before relaxing) + 0x400e0478 mbedtls_mpi_core_fill_random + .text.mbedtls_mpi_core_random + 0x400e04d8 0x77 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x83 (size before relaxing) + 0x400e04d8 mbedtls_mpi_core_random + *fill* 0x400e054f 0x1 + .text.mbedtls_mpi_core_to_mont_rep + 0x400e0550 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x1e (size before relaxing) + 0x400e0550 mbedtls_mpi_core_to_mont_rep + *fill* 0x400e056a 0x2 + .text.mbedtls_cipher_info_from_type + 0x400e056c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x400e056c mbedtls_cipher_info_from_type + .text.mbedtls_cipher_info_from_values + 0x400e0584 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x400e0584 mbedtls_cipher_info_from_values + *fill* 0x400e05b9 0x3 + .text.mbedtls_cipher_init + 0x400e05bc 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x400e05bc mbedtls_cipher_init + *fill* 0x400e05ce 0x2 + .text.mbedtls_cipher_free + 0x400e05d0 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x36 (size before relaxing) + 0x400e05d0 mbedtls_cipher_free + *fill* 0x400e0603 0x1 + .text.mbedtls_cipher_setup + 0x400e0604 0x42 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x400e0604 mbedtls_cipher_setup + *fill* 0x400e0646 0x2 + .text.mbedtls_cipher_setkey + 0x400e0648 0x6f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x400e0648 mbedtls_cipher_setkey + *fill* 0x400e06b7 0x1 + .text.mbedtls_cipher_update + 0x400e06b8 0x247 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x400e06b8 mbedtls_cipher_update + *fill* 0x400e08ff 0x1 + .text.xts_aes_ctx_alloc + 0x400e0900 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x1a (size before relaxing) + *fill* 0x400e0916 0x2 + .text.xts_aes_setkey_dec_wrap + 0x400e0918 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x14 (size before relaxing) + .text.xts_aes_setkey_enc_wrap + 0x400e0928 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x14 (size before relaxing) + .text.aes_crypt_xts_wrap + 0x400e0938 0x23 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x400e095b 0x1 + .text.gcm_ctx_free + 0x400e095c 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x16 (size before relaxing) + *fill* 0x400e096e 0x2 + .text.gcm_ctx_alloc + 0x400e0970 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x1a (size before relaxing) + *fill* 0x400e0986 0x2 + .text.gcm_aria_setkey_wrap + 0x400e0988 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x400e099d 0x3 + .text.gcm_aes_setkey_wrap + 0x400e09a0 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x400e09b5 0x3 + .text.ccm_ctx_free + 0x400e09b8 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x16 (size before relaxing) + *fill* 0x400e09ca 0x2 + .text.ccm_ctx_alloc + 0x400e09cc 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x1a (size before relaxing) + *fill* 0x400e09e2 0x2 + .text.ccm_aria_setkey_wrap + 0x400e09e4 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x400e09f9 0x3 + .text.ccm_aes_setkey_wrap + 0x400e09fc 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x400e0a11 0x3 + .text.aria_ctx_free + 0x400e0a14 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x16 (size before relaxing) + *fill* 0x400e0a26 0x2 + .text.aria_ctx_alloc + 0x400e0a28 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x1a (size before relaxing) + *fill* 0x400e0a3e 0x2 + .text.aria_setkey_dec_wrap + 0x400e0a40 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x14 (size before relaxing) + .text.aria_setkey_enc_wrap + 0x400e0a50 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x14 (size before relaxing) + .text.aria_crypt_ctr_wrap + 0x400e0a60 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x400e0a7d 0x3 + .text.aria_crypt_cfb128_wrap + 0x400e0a80 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x400e0a9d 0x3 + .text.aria_crypt_cbc_wrap + 0x400e0aa0 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x400e0ab9 0x3 + .text.aria_crypt_ecb_wrap + 0x400e0abc 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x14 (size before relaxing) + .text.aes_ctx_free + 0x400e0acc 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x16 (size before relaxing) + *fill* 0x400e0ade 0x2 + .text.aes_ctx_alloc + 0x400e0ae0 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x1a (size before relaxing) + *fill* 0x400e0af6 0x2 + .text.aes_setkey_dec_wrap + 0x400e0af8 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x14 (size before relaxing) + .text.aes_crypt_ctr_wrap + 0x400e0b08 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x400e0b25 0x3 + .text.aes_crypt_ofb_wrap + 0x400e0b28 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x400e0b41 0x3 + .text.aes_crypt_cfb128_wrap + 0x400e0b44 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x400e0b61 0x3 + .text.aes_crypt_cbc_wrap + 0x400e0b64 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x400e0b7d 0x3 + .text.aes_crypt_ecb_wrap + 0x400e0b80 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x400e0b95 0x3 + .text.xts_aes_ctx_free + 0x400e0b98 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x17 (size before relaxing) + *fill* 0x400e0bab 0x1 + .text.aes_setkey_enc_wrap + 0x400e0bac 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x14 (size before relaxing) + .text.cmac_multiply_by_u$part$0 + 0x400e0bbc 0x86 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + *fill* 0x400e0c42 0x2 + .text.cmac_generate_subkeys + 0x400e0c44 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x5c (size before relaxing) + .text.mbedtls_cipher_cmac_starts + 0x400e0c90 0x65 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x69 (size before relaxing) + 0x400e0c90 mbedtls_cipher_cmac_starts + *fill* 0x400e0cf5 0x3 + .text.mbedtls_cipher_cmac_update + 0x400e0cf8 0xee esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0xf6 (size before relaxing) + 0x400e0cf8 mbedtls_cipher_cmac_update + *fill* 0x400e0de6 0x2 + .text.mbedtls_cipher_cmac_finish + 0x400e0de8 0x130 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + 0x144 (size before relaxing) + 0x400e0de8 mbedtls_cipher_cmac_finish + .text.mbedtls_md_info_from_type + 0x400e0f18 0x65 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x400e0f18 mbedtls_md_info_from_type + *fill* 0x400e0f7d 0x3 + .text.mbedtls_md_init + 0x400e0f80 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x400e0f80 mbedtls_md_init + *fill* 0x400e0f92 0x2 + .text.mbedtls_md_free + 0x400e0f94 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x85 (size before relaxing) + 0x400e0f94 mbedtls_md_free + *fill* 0x400e100a 0x2 + .text.mbedtls_md_setup + 0x400e100c 0xce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0xee (size before relaxing) + 0x400e100c mbedtls_md_setup + *fill* 0x400e10da 0x2 + .text.mbedtls_md_starts + 0x400e10dc 0x93 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0xa3 (size before relaxing) + 0x400e10dc mbedtls_md_starts + *fill* 0x400e116f 0x1 + .text.mbedtls_md_update + 0x400e1170 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x73 (size before relaxing) + 0x400e1170 mbedtls_md_update + *fill* 0x400e11d0 0x0 + .text.mbedtls_md_finish + 0x400e11d0 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x73 (size before relaxing) + 0x400e11d0 mbedtls_md_finish + *fill* 0x400e1240 0x0 + .text.mbedtls_md + 0x400e1240 0xba esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0xc6 (size before relaxing) + 0x400e1240 mbedtls_md + *fill* 0x400e12fa 0x2 + .text.mbedtls_md_hmac_starts + 0x400e12fc 0xc2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0xd2 (size before relaxing) + 0x400e12fc mbedtls_md_hmac_starts + *fill* 0x400e13be 0x2 + .text.mbedtls_md_hmac_update + 0x400e13c0 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x400e13c0 mbedtls_md_hmac_update + *fill* 0x400e13e2 0x2 + .text.mbedtls_md_hmac_finish + 0x400e13e4 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x5e (size before relaxing) + 0x400e13e4 mbedtls_md_hmac_finish + *fill* 0x400e1436 0x2 + .text.mbedtls_md_hmac_reset + 0x400e1438 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x36 (size before relaxing) + 0x400e1438 mbedtls_md_hmac_reset + *fill* 0x400e1466 0x2 + .text.mbedtls_md5 + 0x400e1468 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x40 (size before relaxing) + 0x400e1468 mbedtls_md5 + *fill* 0x400e1499 0x3 + .text.mbedtls_calloc + 0x400e149c 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + 0x400e149c mbedtls_calloc + .text.mbedtls_free + 0x400e14b0 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + 0x400e14b0 mbedtls_free + *fill* 0x400e14bf 0x1 + .text.mbedtls_platform_zeroize + 0x400e14c0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + 0x400e14c0 mbedtls_platform_zeroize + .text.mbedtls_zeroize_and_free + 0x400e14d8 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + 0x1a (size before relaxing) + 0x400e14d8 mbedtls_zeroize_and_free + *fill* 0x400e14eb 0x1 + .text.mbedtls_sha1 + 0x400e14ec 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + 0x40 (size before relaxing) + 0x400e14ec mbedtls_sha1 + *fill* 0x400e151d 0x3 + .text.mbedtls_sha256 + 0x400e1520 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + 0x48 (size before relaxing) + 0x400e1520 mbedtls_sha256 + .text.mbedtls_sha512 + 0x400e155c 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + 0x48 (size before relaxing) + 0x400e155c mbedtls_sha512 + .text.keccak_f1600 + 0x400e1598 0x491 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + *fill* 0x400e1a29 0x3 + .text.mbedtls_sha3_init + 0x400e1a2c 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + 0x400e1a2c mbedtls_sha3_init + *fill* 0x400e1a3e 0x2 + .text.mbedtls_sha3_free + 0x400e1a40 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + 0x400e1a40 mbedtls_sha3_free + *fill* 0x400e1a52 0x2 + .text.mbedtls_sha3_starts + 0x400e1a54 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + 0x400e1a54 mbedtls_sha3_starts + .text.mbedtls_sha3_update + 0x400e1aa8 0x14b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + 0x14f (size before relaxing) + 0x400e1aa8 mbedtls_sha3_update + *fill* 0x400e1bf3 0x1 + .text.mbedtls_sha3_finish + 0x400e1bf4 0xbd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + 0xc1 (size before relaxing) + 0x400e1bf4 mbedtls_sha3_finish + *fill* 0x400e1cb1 0x3 + .text.mbedtls_sha3 + 0x400e1cb4 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + 0x47 (size before relaxing) + 0x400e1cb4 mbedtls_sha3 + *fill* 0x400e1ceb 0x1 + .text.esp_mbedtls_mem_calloc + 0x400e1cec 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + 0x400e1cec esp_mbedtls_mem_calloc + *fill* 0x400e1d02 0x2 + .text.esp_mbedtls_mem_free + 0x400e1d04 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + 0xe (size before relaxing) + 0x400e1d04 esp_mbedtls_mem_free + *fill* 0x400e1d0e 0x2 + .text.esp_aes_xts_init + 0x400e1d10 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x17 (size before relaxing) + 0x400e1d10 esp_aes_xts_init + *fill* 0x400e1d20 0x0 + .text.esp_aes_xts_free + 0x400e1d20 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x17 (size before relaxing) + 0x400e1d20 esp_aes_xts_free + *fill* 0x400e1d30 0x0 + .text.esp_aes_xts_setkey_enc + 0x400e1d30 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x38 (size before relaxing) + 0x400e1d30 esp_aes_xts_setkey_enc + .text.esp_aes_xts_setkey_dec + 0x400e1d64 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x14 (size before relaxing) + 0x400e1d64 esp_aes_xts_setkey_dec + .text.esp_aes_crypt_xts + 0x400e1d74 0x151 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + 0x159 (size before relaxing) + 0x400e1d74 esp_aes_crypt_xts + *fill* 0x400e1ec5 0x3 + .text.esp_aes_init + 0x400e1ec8 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + 0x400e1ec8 esp_aes_init + *fill* 0x400e1ed7 0x1 + .text.esp_aes_free + 0x400e1ed8 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + 0x400e1ed8 esp_aes_free + *fill* 0x400e1eea 0x2 + .text.esp_aes_setkey + 0x400e1eec 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + 0x400e1eec esp_aes_setkey + .text.esp_aes_block + 0x400e1f1c 0x5e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x6a (size before relaxing) + *fill* 0x400e1f7a 0x2 + .text.esp_aes_acquire_hardware + 0x400e1f7c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x400e1f7c esp_aes_acquire_hardware + .text.esp_aes_release_hardware + 0x400e1f94 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x17 (size before relaxing) + 0x400e1f94 esp_aes_release_hardware + *fill* 0x400e1fa7 0x1 + .text.esp_aes_crypt_ecb + 0x400e1fa8 0x5a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x6a (size before relaxing) + 0x400e1fa8 esp_aes_crypt_ecb + *fill* 0x400e2002 0x2 + .text.esp_aes_crypt_cbc + 0x400e2004 0x112 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x122 (size before relaxing) + 0x400e2004 esp_aes_crypt_cbc + *fill* 0x400e2116 0x2 + .text.esp_aes_crypt_cfb128 + 0x400e2118 0x110 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x120 (size before relaxing) + 0x400e2118 esp_aes_crypt_cfb128 + .text.esp_aes_crypt_ctr + 0x400e2228 0xfa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0x10a (size before relaxing) + 0x400e2228 esp_aes_crypt_ctr + *fill* 0x400e2322 0x2 + .text.esp_aes_crypt_ofb + 0x400e2324 0xc5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + 0xd5 (size before relaxing) + 0x400e2324 esp_aes_crypt_ofb + *fill* 0x400e23e9 0x3 + .text.calculate_rinv + 0x400e23ec 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x38 (size before relaxing) + *fill* 0x400e2419 0x3 + .text.modular_inverse$isra$0 + 0x400e241c 0x64 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .text.mbedtls_mpi_exp_mod + 0x400e2480 0x1f6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x226 (size before relaxing) + 0x400e2480 mbedtls_mpi_exp_mod + *fill* 0x400e2676 0x2 + .text.mbedtls_mpi_mul_mpi + 0x400e2678 0x15a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x182 (size before relaxing) + 0x400e2678 mbedtls_mpi_mul_mpi + *fill* 0x400e27d2 0x2 + .text.mpi_mult_mpi_overlong$isra$0 + 0x400e27d4 0x6c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x7b (size before relaxing) + *fill* 0x400e2840 0x0 + .text.mbedtls_mpi_mul_int + 0x400e2840 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x400e2840 mbedtls_mpi_mul_int + *fill* 0x400e285e 0x2 + .text.esp_mpi_enable_hardware_hw_op + 0x400e2860 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0x6c (size before relaxing) + 0x400e2860 esp_mpi_enable_hardware_hw_op + .text.esp_mpi_disable_hardware_hw_op + 0x400e28b4 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0x34 (size before relaxing) + 0x400e28b4 esp_mpi_disable_hardware_hw_op + .text.esp_mpi_mul_mpi_hw_op + 0x400e28d8 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0x46 (size before relaxing) + 0x400e28d8 esp_mpi_mul_mpi_hw_op + *fill* 0x400e290e 0x2 + .text.esp_mpi_mult_mpi_failover_mod_mult_hw_op + 0x400e2910 0x72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0x8e (size before relaxing) + 0x400e2910 esp_mpi_mult_mpi_failover_mod_mult_hw_op + *fill* 0x400e2982 0x2 + .text.esp_mont_hw_op + 0x400e2984 0x7e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + 0x96 (size before relaxing) + 0x400e2984 esp_mont_hw_op + *fill* 0x400e2a02 0x2 + .text.esp_internal_sha1_parallel_engine_process + 0x400e2a04 0x117d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x1185 (size before relaxing) + *fill* 0x400e3b81 0x3 + .text.mbedtls_sha1_init + 0x400e3b84 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x400e3b84 mbedtls_sha1_init + *fill* 0x400e3b96 0x2 + .text.mbedtls_sha1_free + 0x400e3b98 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x26 (size before relaxing) + 0x400e3b98 mbedtls_sha1_free + *fill* 0x400e3bba 0x2 + .text.mbedtls_sha1_starts + 0x400e3bbc 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x400e3bbc mbedtls_sha1_starts + *fill* 0x400e3bf5 0x3 + .text.mbedtls_internal_sha1_process + 0x400e3bf8 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x14 (size before relaxing) + 0x400e3bf8 mbedtls_internal_sha1_process + .text.mbedtls_sha1_update + 0x400e3c08 0x92 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x96 (size before relaxing) + 0x400e3c08 mbedtls_sha1_update + *fill* 0x400e3c9a 0x2 + .text.mbedtls_sha1_finish + 0x400e3c9c 0x107 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x117 (size before relaxing) + 0x400e3c9c mbedtls_sha1_finish + *fill* 0x400e3da3 0x1 + .text.mbedtls_sha256_software_process + 0x400e3da4 0x85e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + *fill* 0x400e4602 0x2 + .text.esp_internal_sha256_parallel_engine_process + 0x400e4604 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x53 (size before relaxing) + *fill* 0x400e464c 0x0 + .text.mbedtls_sha256_init + 0x400e464c 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x400e464c mbedtls_sha256_init + *fill* 0x400e465e 0x2 + .text.mbedtls_sha256_free + 0x400e4660 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x26 (size before relaxing) + 0x400e4660 mbedtls_sha256_free + *fill* 0x400e4682 0x2 + .text.mbedtls_sha256_starts + 0x400e4684 0x7b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x400e4684 mbedtls_sha256_starts + *fill* 0x400e46ff 0x1 + .text.mbedtls_sha256_update + 0x400e4700 0x92 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x96 (size before relaxing) + 0x400e4700 mbedtls_sha256_update + *fill* 0x400e4792 0x2 + .text.mbedtls_sha256_finish + 0x400e4794 0x157 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x167 (size before relaxing) + 0x400e4794 mbedtls_sha256_finish + *fill* 0x400e48eb 0x1 + .text.mbedtls_sha512_software_process + 0x400e48ec 0xc86 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + *fill* 0x400e5572 0x2 + .text.esp_internal_sha512_parallel_engine_process + 0x400e5574 0x64 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x6f (size before relaxing) + *fill* 0x400e55d8 0x0 + .text.mbedtls_sha512_init + 0x400e55d8 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x400e55d8 mbedtls_sha512_init + *fill* 0x400e55ea 0x2 + .text.mbedtls_sha512_free + 0x400e55ec 0x2f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x400e55ec mbedtls_sha512_free + *fill* 0x400e561b 0x1 + .text.mbedtls_sha512_starts + 0x400e561c 0xfa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x400e561c mbedtls_sha512_starts + *fill* 0x400e5716 0x2 + .text.mbedtls_sha512_update + 0x400e5718 0xbe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0xc2 (size before relaxing) + 0x400e5718 mbedtls_sha512_update + *fill* 0x400e57d6 0x2 + .text.mbedtls_sha512_finish + 0x400e57d8 0x26e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x276 (size before relaxing) + 0x400e57d8 mbedtls_sha512_finish + *fill* 0x400e5a46 0x2 + .text.gcm_mult + 0x400e5a48 0x143 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + *fill* 0x400e5b8b 0x1 + .text.esp_gcm_ghash + 0x400e5b8c 0x82 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x86 (size before relaxing) + *fill* 0x400e5c0e 0x2 + .text.esp_aes_gcm_setkey + 0x400e5c10 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x400e5c10 esp_aes_gcm_setkey + *fill* 0x400e5c3e 0x2 + .text.esp_aes_gcm_init + 0x400e5c40 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x400e5c40 esp_aes_gcm_init + *fill* 0x400e5c57 0x1 + .text.esp_aes_gcm_free + 0x400e5c58 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x400e5c58 esp_aes_gcm_free + *fill* 0x400e5c6a 0x2 + .text.esp_aes_gcm_update + 0x400e5c6c 0x138 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + 0x144 (size before relaxing) + 0x400e5c6c esp_aes_gcm_update + .text.esp_md5_finish + 0x400e5da4 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x400e5da4 esp_md5_finish + *fill* 0x400e5db5 0x3 + .text.esp_md5_update + 0x400e5db8 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x400e5db8 esp_md5_update + .text.esp_md5_init + 0x400e5dcc 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x400e5dcc esp_md5_init + *fill* 0x400e5dda 0x2 + .text.esp_md5_starts + 0x400e5ddc 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x400e5ddc esp_md5_starts + .text.esp_md5_free + 0x400e5dec 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + 0x12 (size before relaxing) + 0x400e5dec esp_md5_free + *fill* 0x400e5dfa 0x2 + .text.aria_a 0x400e5dfc 0xd3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + *fill* 0x400e5ecf 0x1 + .text.aria_fo_xor + 0x400e5ed0 0x81 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + *fill* 0x400e5f51 0x3 + .text.aria_rot128 + 0x400e5f54 0x6a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + *fill* 0x400e5fbe 0x2 + .text.mbedtls_aria_setkey_enc + 0x400e5fc0 0x284 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x2a8 (size before relaxing) + 0x400e5fc0 mbedtls_aria_setkey_enc + .text.mbedtls_aria_setkey_dec + 0x400e6244 0x5e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x62 (size before relaxing) + 0x400e6244 mbedtls_aria_setkey_dec + *fill* 0x400e62a2 0x2 + .text.mbedtls_aria_crypt_ecb + 0x400e62a4 0x1b9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x1bd (size before relaxing) + 0x400e62a4 mbedtls_aria_crypt_ecb + *fill* 0x400e645d 0x3 + .text.mbedtls_aria_init + 0x400e6460 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x400e6460 mbedtls_aria_init + *fill* 0x400e6472 0x2 + .text.mbedtls_aria_free + 0x400e6474 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x400e6474 mbedtls_aria_free + *fill* 0x400e6486 0x2 + .text.mbedtls_aria_crypt_cbc + 0x400e6488 0xb1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0xb5 (size before relaxing) + 0x400e6488 mbedtls_aria_crypt_cbc + *fill* 0x400e6539 0x3 + .text.mbedtls_aria_crypt_cfb128 + 0x400e653c 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x8c (size before relaxing) + 0x400e653c mbedtls_aria_crypt_cfb128 + .text.mbedtls_aria_crypt_ctr + 0x400e65c4 0x75 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + 0x400e65c4 mbedtls_aria_crypt_ctr + *fill* 0x400e6639 0x3 + .text.mbedtls_asn1_get_tag + 0x400e663c 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x400e663c mbedtls_asn1_get_tag + .text.asn1_get_tagged_int + 0x400e6668 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x7a (size before relaxing) + *fill* 0x400e66de 0x2 + .text.mbedtls_asn1_get_int + 0x400e66e0 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x400e66e0 mbedtls_asn1_get_int + *fill* 0x400e66f5 0x3 + .text.mbedtls_asn1_get_mpi + 0x400e66f8 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x2f (size before relaxing) + 0x400e66f8 mbedtls_asn1_get_mpi + *fill* 0x400e6723 0x1 + .text.mbedtls_asn1_get_bitstring_null + 0x400e6724 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x35 (size before relaxing) + 0x400e6724 mbedtls_asn1_get_bitstring_null + *fill* 0x400e6755 0x3 + .text.mbedtls_asn1_get_alg + 0x400e6758 0x82 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x8a (size before relaxing) + 0x400e6758 mbedtls_asn1_get_alg + *fill* 0x400e67da 0x2 + .text.mbedtls_asn1_write_len_and_tag + 0x400e67dc 0x2f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + *fill* 0x400e680b 0x1 + .text.mbedtls_asn1_write_mpi + 0x400e680c 0x67 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x6b (size before relaxing) + 0x400e680c mbedtls_asn1_write_mpi + *fill* 0x400e6873 0x1 + .text.mbedtls_ccm_crypt + 0x400e6874 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x60 (size before relaxing) + .text.mbedtls_ccm_init + 0x400e68d0 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x400e68d0 mbedtls_ccm_init + *fill* 0x400e68e2 0x2 + .text.mbedtls_ccm_setkey + 0x400e68e4 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x4c (size before relaxing) + 0x400e68e4 mbedtls_ccm_setkey + .text.mbedtls_ccm_free + 0x400e6924 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x1b (size before relaxing) + 0x400e6924 mbedtls_ccm_free + *fill* 0x400e693b 0x1 + .text.mbedtls_ccm_update + 0x400e693c 0x172 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x17e (size before relaxing) + 0x400e693c mbedtls_ccm_update + *fill* 0x400e6aae 0x2 + .text.mbedtls_ct_uint_lt + 0x400e6ab0 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + *fill* 0x400e6add 0x3 + .text.mbedtls_md_get_size_from_type + 0x400e6ae0 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x16 (size before relaxing) + *fill* 0x400e6af2 0x2 + .text.mgf_mask + 0x400e6af4 0xc9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xe5 (size before relaxing) + *fill* 0x400e6bbd 0x3 + .text.hash_mprime + 0x400e6bc0 0x74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x8c (size before relaxing) + .text.rsa_rsassa_pkcs1_v15_encode + 0x400e6c34 0xf3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xfb (size before relaxing) + *fill* 0x400e6d27 0x1 + .text.mbedtls_rsa_free$part$0 + 0x400e6d28 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x79 (size before relaxing) + *fill* 0x400e6d7a 0x2 + .text.rsa_check_context$isra$0 + 0x400e6d7c 0xae esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xc2 (size before relaxing) + *fill* 0x400e6e2a 0x2 + .text.mbedtls_rsa_import_raw + 0x400e6e2c 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x86 (size before relaxing) + 0x400e6e2c mbedtls_rsa_import_raw + *fill* 0x400e6ea2 0x2 + .text.mbedtls_rsa_complete + 0x400e6ea4 0x182 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x1a9 (size before relaxing) + 0x400e6ea4 mbedtls_rsa_complete + *fill* 0x400e7026 0x2 + .text.mbedtls_rsa_init + 0x400e7028 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x400e7028 mbedtls_rsa_init + *fill* 0x400e7042 0x2 + .text.mbedtls_rsa_get_bitlen + 0x400e7044 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x10 (size before relaxing) + 0x400e7044 mbedtls_rsa_get_bitlen + .text.mbedtls_rsa_check_pubkey + 0x400e7050 0x4f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x5b (size before relaxing) + 0x400e7050 mbedtls_rsa_check_pubkey + *fill* 0x400e709f 0x1 + .text.mbedtls_rsa_parse_pubkey + 0x400e70a0 0xcd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xe0 (size before relaxing) + 0x400e70a0 mbedtls_rsa_parse_pubkey + *fill* 0x400e716d 0x3 + .text.mbedtls_rsa_check_privkey + 0x400e7170 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x60 (size before relaxing) + 0x400e7170 mbedtls_rsa_check_privkey + .text.mbedtls_rsa_check_pub_priv + 0x400e71c8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x44 (size before relaxing) + 0x400e71c8 mbedtls_rsa_check_pub_priv + .text.mbedtls_rsa_public + 0x400e7208 0x6e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x7a (size before relaxing) + 0x400e7208 mbedtls_rsa_public + *fill* 0x400e7276 0x2 + .text.mbedtls_rsa_private + 0x400e7278 0x3e8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x48c (size before relaxing) + 0x400e7278 mbedtls_rsa_private + .text.rsa_rsassa_pss_sign_no_mode_check + 0x400e7660 0x13c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x14c (size before relaxing) + .text.mbedtls_rsa_rsaes_oaep_encrypt + 0x400e779c 0xdf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xef (size before relaxing) + 0x400e779c mbedtls_rsa_rsaes_oaep_encrypt + *fill* 0x400e787b 0x1 + .text.mbedtls_rsa_rsaes_pkcs1_v15_encrypt + 0x400e787c 0x8c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x400e787c mbedtls_rsa_rsaes_pkcs1_v15_encrypt + .text.mbedtls_rsa_pkcs1_encrypt + 0x400e7908 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x3a (size before relaxing) + 0x400e7908 mbedtls_rsa_pkcs1_encrypt + *fill* 0x400e793f 0x1 + .text.mbedtls_rsa_rsaes_oaep_decrypt + 0x400e7940 0x1bd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x1dd (size before relaxing) + 0x400e7940 mbedtls_rsa_rsaes_oaep_decrypt + *fill* 0x400e7afd 0x3 + .text.mbedtls_rsa_rsaes_pkcs1_v15_decrypt + 0x400e7b00 0x18e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x1a2 (size before relaxing) + 0x400e7b00 mbedtls_rsa_rsaes_pkcs1_v15_decrypt + *fill* 0x400e7c8e 0x2 + .text.mbedtls_rsa_pkcs1_decrypt + 0x400e7c90 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x400e7c90 mbedtls_rsa_pkcs1_decrypt + .text.mbedtls_rsa_rsassa_pss_sign + 0x400e7cd0 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x36 (size before relaxing) + 0x400e7cd0 mbedtls_rsa_rsassa_pss_sign + *fill* 0x400e7d02 0x2 + .text.mbedtls_rsa_rsassa_pkcs1_v15_sign + 0x400e7d04 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xd0 (size before relaxing) + 0x400e7d04 mbedtls_rsa_rsassa_pkcs1_v15_sign + .text.mbedtls_rsa_pkcs1_sign + 0x400e7dc4 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x400e7dc4 mbedtls_rsa_pkcs1_sign + .text.mbedtls_rsa_rsassa_pss_verify_ext + 0x400e7e08 0x182 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x18e (size before relaxing) + 0x400e7e08 mbedtls_rsa_rsassa_pss_verify_ext + *fill* 0x400e7f8a 0x2 + .text.mbedtls_rsa_rsassa_pss_verify + 0x400e7f8c 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x400e7f8c mbedtls_rsa_rsassa_pss_verify + .text.mbedtls_rsa_rsassa_pkcs1_v15_verify + 0x400e7fb8 0x7e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x8e (size before relaxing) + 0x400e7fb8 mbedtls_rsa_rsassa_pkcs1_v15_verify + *fill* 0x400e8036 0x2 + .text.mbedtls_rsa_pkcs1_verify + 0x400e8038 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x3e (size before relaxing) + 0x400e8038 mbedtls_rsa_pkcs1_verify + *fill* 0x400e806f 0x1 + .text.mbedtls_rsa_free + 0x400e8070 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xf (size before relaxing) + 0x400e8070 mbedtls_rsa_free + *fill* 0x400e807c 0x0 + .text.mbedtls_rsa_deduce_primes + 0x400e807c 0x1cc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x20f (size before relaxing) + 0x400e807c mbedtls_rsa_deduce_primes + *fill* 0x400e8248 0x0 + .text.mbedtls_rsa_deduce_private_exponent + 0x400e8248 0xa1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0xc5 (size before relaxing) + 0x400e8248 mbedtls_rsa_deduce_private_exponent + *fill* 0x400e82e9 0x3 + .text.mbedtls_rsa_deduce_crt + 0x400e82ec 0x71 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x79 (size before relaxing) + 0x400e82ec mbedtls_rsa_deduce_crt + *fill* 0x400e835d 0x3 + .text.mbedtls_rsa_validate_params + 0x400e8360 0x1b2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x1f6 (size before relaxing) + 0x400e8360 mbedtls_rsa_validate_params + *fill* 0x400e8512 0x2 + .text.mbedtls_rsa_validate_crt + 0x400e8514 0x113 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + 0x13b (size before relaxing) + 0x400e8514 mbedtls_rsa_validate_crt + *fill* 0x400e8627 0x1 + .text.sha_get_engine_state + 0x400e8628 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x6e (size before relaxing) + *fill* 0x400e868a 0x2 + .text.esp_sha_lock_engine_common + 0x400e868c 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x64 (size before relaxing) + .text.esp_sha_lock_memory_block + 0x400e86e0 0xd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x10 (size before relaxing) + 0x400e86e0 esp_sha_lock_memory_block + *fill* 0x400e86ed 0x3 + .text.esp_sha_unlock_memory_block + 0x400e86f0 0xb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0xe (size before relaxing) + 0x400e86f0 esp_sha_unlock_memory_block + *fill* 0x400e86fb 0x1 + .text.esp_sha_try_lock_engine + 0x400e86fc 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x400e86fc esp_sha_try_lock_engine + *fill* 0x400e870d 0x3 + .text.esp_sha_unlock_engine + 0x400e8710 0x42 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x4a (size before relaxing) + 0x400e8710 esp_sha_unlock_engine + *fill* 0x400e8752 0x2 + .text.esp_sha_read_digest_state + 0x400e8754 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x44 (size before relaxing) + 0x400e8754 esp_sha_read_digest_state + .text.esp_sha_block + 0x400e8784 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x60 (size before relaxing) + 0x400e8784 esp_sha_block + .text.mbedtls_ctr_increment_counter + 0x400e87d4 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + *fill* 0x400e883a 0x2 + .text.block_cipher_df + 0x400e883c 0x183 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x1ab (size before relaxing) + *fill* 0x400e89bf 0x1 + .text.ctr_drbg_update_internal + 0x400e89c0 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x7e (size before relaxing) + *fill* 0x400e8a36 0x2 + .text.mbedtls_ctr_drbg_reseed_internal + 0x400e8a38 0x94 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x9f (size before relaxing) + *fill* 0x400e8acc 0x0 + .text.mbedtls_ctr_drbg_free$part$0 + 0x400e8acc 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x23 (size before relaxing) + *fill* 0x400e8aeb 0x1 + .text.mbedtls_ctr_drbg_init + 0x400e8aec 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x26 (size before relaxing) + 0x400e8aec mbedtls_ctr_drbg_init + *fill* 0x400e8b0e 0x2 + .text.mbedtls_ctr_drbg_free + 0x400e8b10 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0xf (size before relaxing) + 0x400e8b10 mbedtls_ctr_drbg_free + *fill* 0x400e8b1c 0x0 + .text.mbedtls_ctr_drbg_reseed + 0x400e8b1c 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x400e8b1c mbedtls_ctr_drbg_reseed + *fill* 0x400e8b31 0x3 + .text.mbedtls_ctr_drbg_seed + 0x400e8b34 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x58 (size before relaxing) + 0x400e8b34 mbedtls_ctr_drbg_seed + .text.mbedtls_ctr_drbg_random_with_add + 0x400e8b88 0xb9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0xc5 (size before relaxing) + 0x400e8b88 mbedtls_ctr_drbg_random_with_add + *fill* 0x400e8c41 0x3 + .text.mbedtls_ctr_drbg_random + 0x400e8c44 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x18 (size before relaxing) + 0x400e8c44 mbedtls_ctr_drbg_random + .text.mbedtls_ecdh_gen_public + 0x400e8c58 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x30 (size before relaxing) + 0x400e8c58 mbedtls_ecdh_gen_public + .text.mbedtls_ecdh_compute_shared + 0x400e8c84 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x53 (size before relaxing) + 0x400e8c84 mbedtls_ecdh_compute_shared + *fill* 0x400e8cc8 0x0 + .text.mbedtls_ecdh_init + 0x400e8cc8 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x400e8cc8 mbedtls_ecdh_init + *fill* 0x400e8ce1 0x3 + .text.mbedtls_ecdh_free + 0x400e8ce4 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x4a (size before relaxing) + 0x400e8ce4 mbedtls_ecdh_free + *fill* 0x400e8d22 0x2 + .text.mbedtls_ecdh_calc_secret + 0x400e8d24 0x79 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x84 (size before relaxing) + 0x400e8d24 mbedtls_ecdh_calc_secret + *fill* 0x400e8d9d 0x3 + .text.derive_mpi + 0x400e8da0 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x5f (size before relaxing) + *fill* 0x400e8df8 0x0 + .text.mbedtls_ecdsa_sign_restartable + 0x400e8df8 0x194 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x1d4 (size before relaxing) + 0x400e8df8 mbedtls_ecdsa_sign_restartable + .text.mbedtls_ecdsa_sign_det_restartable + 0x400e8f8c 0xcf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0xeb (size before relaxing) + 0x400e8f8c mbedtls_ecdsa_sign_det_restartable + *fill* 0x400e905b 0x1 + .text.mbedtls_ecdsa_verify_restartable + 0x400e905c 0x148 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x180 (size before relaxing) + 0x400e905c mbedtls_ecdsa_verify_restartable + .text.mbedtls_ecdsa_write_signature_restartable + 0x400e91a4 0x101 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x115 (size before relaxing) + 0x400e91a4 mbedtls_ecdsa_write_signature_restartable + *fill* 0x400e92a5 0x3 + .text.mbedtls_ecdsa_write_signature + 0x400e92a8 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x400e92a8 mbedtls_ecdsa_write_signature + *fill* 0x400e92d1 0x3 + .text.mbedtls_ecdsa_read_signature_restartable + 0x400e92d4 0x95 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0xa5 (size before relaxing) + 0x400e92d4 mbedtls_ecdsa_read_signature_restartable + *fill* 0x400e9369 0x3 + .text.mbedtls_ecdsa_read_signature + 0x400e936c 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x400e936c mbedtls_ecdsa_read_signature + *fill* 0x400e9385 0x3 + .text.mbedtls_ecdsa_init + 0x400e9388 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0xe (size before relaxing) + 0x400e9388 mbedtls_ecdsa_init + *fill* 0x400e9392 0x2 + .text.mbedtls_ecdsa_free + 0x400e9394 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0xf (size before relaxing) + 0x400e9394 mbedtls_ecdsa_free + *fill* 0x400e93a0 0x0 + .text.mpi_init_many + 0x400e93a0 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + *fill* 0x400e93ba 0x2 + .text.mpi_free_many + 0x400e93bc 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x1a (size before relaxing) + *fill* 0x400e93d3 0x1 + .text.ecp_safe_invert_jac + 0x400e93d4 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x48 (size before relaxing) + .text.ecp_select_comb + 0x400e9410 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x6e (size before relaxing) + *fill* 0x400e9472 0x2 + .text.mbedtls_mpi_sub_mod + 0x400e9474 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x40 (size before relaxing) + .text.mbedtls_mpi_mul_mod + 0x400e94b0 0xaa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xbe (size before relaxing) + *fill* 0x400e955a 0x2 + .text.ecp_randomize_mxz + 0x400e955c 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x5c (size before relaxing) + .text.ecp_randomize_jac + 0x400e95ac 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x94 (size before relaxing) + .text.ecp_normalize_jac + 0x400e962c 0x7b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x92 (size before relaxing) + *fill* 0x400e96a7 0x1 + .text.ecp_normalize_jac_many + 0x400e96a8 0x161 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x195 (size before relaxing) + *fill* 0x400e9809 0x3 + .text.mbedtls_mpi_add_mod + 0x400e980c 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x40 (size before relaxing) + .text.mbedtls_mpi_mul_int_mod$part$0 + 0x400e9844 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + *fill* 0x400e986f 0x1 + .text.mbedtls_ecp_point_free$part$0 + 0x400e9870 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x1f (size before relaxing) + *fill* 0x400e9887 0x1 + .text.mbedtls_mpi_shift_l_mod$constprop$0 + 0x400e9888 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x22 (size before relaxing) + *fill* 0x400e98a6 0x2 + .text.ecp_sw_rhs + 0x400e98a8 0x7e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8a (size before relaxing) + *fill* 0x400e9926 0x2 + .text.ecp_double_jac + 0x400e9928 0x1bb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x227 (size before relaxing) + *fill* 0x400e9ae3 0x1 + .text.mbedtls_ecp_grp_id_list + 0x400e9ae4 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x400e9ae4 mbedtls_ecp_grp_id_list + *fill* 0x400e9b11 0x3 + .text.mbedtls_ecp_point_init + 0x400e9b14 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x400e9b14 mbedtls_ecp_point_init + *fill* 0x400e9b33 0x1 + .text.mbedtls_ecp_group_init + 0x400e9b34 0x4b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4f (size before relaxing) + 0x400e9b34 mbedtls_ecp_group_init + *fill* 0x400e9b7f 0x1 + .text.mbedtls_ecp_keypair_init + 0x400e9b80 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x20 (size before relaxing) + 0x400e9b80 mbedtls_ecp_keypair_init + *fill* 0x400e9b99 0x3 + .text.mbedtls_ecp_point_free + 0x400e9b9c 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xf (size before relaxing) + 0x400e9b9c mbedtls_ecp_point_free + *fill* 0x400e9ba8 0x0 + .text.mbedtls_ecp_group_free + 0x400e9ba8 0x5a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x75 (size before relaxing) + 0x400e9ba8 mbedtls_ecp_group_free + *fill* 0x400e9c02 0x2 + .text.mbedtls_ecp_keypair_free + 0x400e9c04 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x21 (size before relaxing) + 0x400e9c04 mbedtls_ecp_keypair_free + *fill* 0x400e9c1d 0x3 + .text.mbedtls_ecp_copy + 0x400e9c20 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x2c (size before relaxing) + 0x400e9c20 mbedtls_ecp_copy + .text.mbedtls_ecp_group_copy + 0x400e9c44 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x400e9c44 mbedtls_ecp_group_copy + *fill* 0x400e9c55 0x3 + .text.mbedtls_ecp_set_zero + 0x400e9c58 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x2a (size before relaxing) + 0x400e9c58 mbedtls_ecp_set_zero + *fill* 0x400e9c7a 0x2 + .text.ecp_add_mixed + 0x400e9c7c 0x193 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x1ef (size before relaxing) + *fill* 0x400e9e0f 0x1 + .text.ecp_mul_comb_after_precomp$isra$0 + 0x400e9e10 0x22c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x260 (size before relaxing) + .text.mbedtls_ecp_is_zero + 0x400ea03c 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x400ea03c mbedtls_ecp_is_zero + *fill* 0x400ea053 0x1 + .text.mbedtls_ecp_point_cmp + 0x400ea054 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x400ea054 mbedtls_ecp_point_cmp + .text.mbedtls_ecp_point_read_binary + 0x400ea08c 0x182 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x1ad (size before relaxing) + 0x400ea08c mbedtls_ecp_point_read_binary + *fill* 0x400ea20e 0x2 + .text.mbedtls_ecp_check_pubkey + 0x400ea210 0x16a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x185 (size before relaxing) + 0x400ea210 mbedtls_ecp_check_pubkey + *fill* 0x400ea37a 0x2 + .text.mbedtls_ecp_check_privkey + 0x400ea37c 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x84 (size before relaxing) + 0x400ea37c mbedtls_ecp_check_privkey + .text.ecp_mul_restartable_internal$isra$0 + 0x400ea3fc 0x53d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x5e5 (size before relaxing) + *fill* 0x400ea939 0x3 + .text.mbedtls_ecp_mul_shortcuts$isra$0 + 0x400ea93c 0xbb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xdb (size before relaxing) + *fill* 0x400ea9f7 0x1 + .text.mbedtls_ecp_muladd_restartable + 0x400ea9f8 0x75 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x91 (size before relaxing) + 0x400ea9f8 mbedtls_ecp_muladd_restartable + *fill* 0x400eaa6d 0x3 + .text.mbedtls_ecp_muladd + 0x400eaa70 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x400eaa70 mbedtls_ecp_muladd + *fill* 0x400eaa8d 0x3 + .text.mbedtls_ecp_mul_restartable + 0x400eaa90 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x400eaa90 mbedtls_ecp_mul_restartable + *fill* 0x400eaab2 0x2 + .text.mbedtls_ecp_mul + 0x400eaab4 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x400eaab4 mbedtls_ecp_mul + *fill* 0x400eaad1 0x3 + .text.mbedtls_ecp_gen_privkey + 0x400eaad4 0x8f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xa3 (size before relaxing) + 0x400eaad4 mbedtls_ecp_gen_privkey + *fill* 0x400eab63 0x1 + .text.mbedtls_ecp_check_pub_priv + 0x400eab64 0xb9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xcb (size before relaxing) + 0x400eab64 mbedtls_ecp_check_pub_priv + *fill* 0x400eac1d 0x3 + .text.ecp_mod_p255 + 0x400eac20 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + *fill* 0x400eac6e 0x2 + .text.ecp_mod_p521 + 0x400eac70 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x7a (size before relaxing) + *fill* 0x400eace6 0x2 + .text.ecp_mod_p384 + 0x400eace8 0x5a3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x5b7 (size before relaxing) + *fill* 0x400eb28b 0x1 + .text.ecp_mod_p256 + 0x400eb28c 0x44b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x457 (size before relaxing) + *fill* 0x400eb6d7 0x1 + .text.ecp_mod_p224 + 0x400eb6d8 0x24f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x25b (size before relaxing) + *fill* 0x400eb927 0x1 + .text.ecp_mod_koblitz$constprop$0 + 0x400eb928 0xfc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x108 (size before relaxing) + .text.ecp_mod_p192k1 + 0x400eba24 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .text.ecp_mod_p224k1 + 0x400eba38 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .text.ecp_mod_p256k1 + 0x400eba4c 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .text.ecp_mod_p192 + 0x400eba60 0xe2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0xea (size before relaxing) + *fill* 0x400ebb42 0x2 + .text.mbedtls_ecp_group_load + 0x400ebb44 0x4c2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x521 (size before relaxing) + 0x400ebb44 mbedtls_ecp_group_load + *fill* 0x400ec006 0x2 + .text.entropy_update + 0x400ec008 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x86 (size before relaxing) + *fill* 0x400ec07e 0x2 + .text.entropy_gather_internal + 0x400ec080 0x7a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x7e (size before relaxing) + *fill* 0x400ec0fa 0x2 + .text.mbedtls_entropy_func$part$0 + 0x400ec0fc 0xe2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x102 (size before relaxing) + *fill* 0x400ec1de 0x2 + .text.mbedtls_entropy_free + 0x400ec1e0 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x26 (size before relaxing) + 0x400ec1e0 mbedtls_entropy_free + *fill* 0x400ec202 0x2 + .text.mbedtls_entropy_init + 0x400ec204 0x2f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x33 (size before relaxing) + 0x400ec204 mbedtls_entropy_init + *fill* 0x400ec233 0x1 + .text.mbedtls_entropy_func + 0x400ec234 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x1c (size before relaxing) + 0x400ec234 mbedtls_entropy_func + .text.mbedtls_hmac_drbg_free$part$0 + 0x400ec24c 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x22 (size before relaxing) + *fill* 0x400ec266 0x2 + .text.mbedtls_hmac_drbg_init + 0x400ec268 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x400ec268 mbedtls_hmac_drbg_init + *fill* 0x400ec282 0x2 + .text.mbedtls_hmac_drbg_update + 0x400ec284 0xbe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0xce (size before relaxing) + 0x400ec284 mbedtls_hmac_drbg_update + *fill* 0x400ec342 0x2 + .text.hmac_drbg_reseed_core + 0x400ec344 0x94 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x9b (size before relaxing) + *fill* 0x400ec3d8 0x0 + .text.mbedtls_hmac_drbg_seed_buf + 0x400ec3d8 0x46 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x4e (size before relaxing) + 0x400ec3d8 mbedtls_hmac_drbg_seed_buf + *fill* 0x400ec41e 0x2 + .text.mbedtls_hmac_drbg_reseed + 0x400ec420 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x400ec420 mbedtls_hmac_drbg_reseed + *fill* 0x400ec435 0x3 + .text.mbedtls_hmac_drbg_random_with_add + 0x400ec438 0xb4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0xc0 (size before relaxing) + 0x400ec438 mbedtls_hmac_drbg_random_with_add + .text.mbedtls_hmac_drbg_random + 0x400ec4ec 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x18 (size before relaxing) + 0x400ec4ec mbedtls_hmac_drbg_random + .text.mbedtls_hmac_drbg_free + 0x400ec500 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0xf (size before relaxing) + 0x400ec500 mbedtls_hmac_drbg_free + *fill* 0x400ec50c 0x0 + .text.mbedtls_oid_get_pk_alg + 0x400ec50c 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x400ec50c mbedtls_oid_get_pk_alg + *fill* 0x400ec543 0x1 + .text.mbedtls_oid_get_ec_grp + 0x400ec544 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x400ec544 mbedtls_oid_get_ec_grp + *fill* 0x400ec57b 0x1 + .text.mbedtls_oid_get_ec_grp_algid + 0x400ec57c 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x400ec57c mbedtls_oid_get_ec_grp_algid + *fill* 0x400ec5b3 0x1 + .text.mbedtls_oid_get_oid_by_md + 0x400ec5b4 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x400ec5b4 mbedtls_oid_get_oid_by_md + *fill* 0x400ec5da 0x2 + .text.mbedtls_hardware_poll + 0x400ec5dc 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + 0x400ec5dc mbedtls_hardware_poll + *fill* 0x400ec5ef 0x1 + .text.esp_mesh_ie_init + 0x400ec5f0 0x102 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x136 (size before relaxing) + 0x400ec614 esp_mesh_ie_init + *fill* 0x400ec6f2 0x2 + .text.mesh_wifi_event_init + 0x400ec6f4 0xc4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0xd4 (size before relaxing) + 0x400ec710 mesh_wifi_event_init + .text.mesh_wifi_event_deinit + 0x400ec7b8 0x28 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x3c (size before relaxing) + 0x400ec7b8 mesh_wifi_event_deinit + .text.esp_mesh_init + 0x400ec7e0 0x221 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x261 (size before relaxing) + 0x400ec848 esp_mesh_init + *fill* 0x400eca01 0x3 + .text.mesh_stop_recv + 0x400eca04 0x1da /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x1ee (size before relaxing) + 0x400eca34 mesh_stop_recv + *fill* 0x400ecbde 0x2 + .text.mesh_parse_option + 0x400ecbe0 0x100 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x118 (size before relaxing) + 0x400ecbe8 mesh_parse_option + .text.mesh_add_option + 0x400ecce0 0xfc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x11c (size before relaxing) + 0x400ecce0 mesh_add_option + .text.mesh_chain_header_add_ttl + 0x400ecddc 0x59 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x5d (size before relaxing) + 0x400ecde4 mesh_chain_header_add_ttl + *fill* 0x400ece35 0x3 + .text.mesh_send_process_topo + 0x400ece38 0x52 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x66 (size before relaxing) + 0x400ece38 mesh_send_process_topo + *fill* 0x400ece8a 0x2 + .text.mesh_send_process_flag + 0x400ece8c 0x160 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x178 (size before relaxing) + 0x400ece9c mesh_send_process_flag + .text.esp_mesh_send_sem_wait + 0x400ecfec 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x20 (size before relaxing) + 0x400ecfec esp_mesh_send_sem_wait + .text.esp_mesh_send_sem_signal + 0x400ed004 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x1f (size before relaxing) + 0x400ed004 esp_mesh_send_sem_signal + *fill* 0x400ed01b 0x1 + .text.esp_mesh_send_mgmt + 0x400ed01c 0x28a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x2ea (size before relaxing) + 0x400ed050 esp_mesh_send_mgmt + *fill* 0x400ed2a6 0x2 + .text.esp_mesh_send + 0x400ed2a8 0x608 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x6b4 (size before relaxing) + 0x400ed2f4 esp_mesh_send + .text.mesh_recv_add_option + 0x400ed8b0 0x154 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x170 (size before relaxing) + 0x400ed8b0 mesh_recv_add_option + .text.mesh_recv_process_flag + 0x400eda04 0xed /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x105 (size before relaxing) + 0x400eda04 mesh_recv_process_flag + *fill* 0x400edaf1 0x3 + .text.mesh_recv + 0x400edaf4 0x36c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x3e8 (size before relaxing) + 0x400edb18 mesh_recv + .text.esp_mesh_recv + 0x400ede60 0x132 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x166 (size before relaxing) + 0x400ede68 esp_mesh_recv + *fill* 0x400edf92 0x2 + .text.mesh_encrypt_ie_plain_key + 0x400edf94 0xf4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x118 (size before relaxing) + 0x400edfa8 mesh_encrypt_ie_plain_key + .text.esp_mesh_set_router + 0x400ee088 0x84 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0xb8 (size before relaxing) + 0x400ee088 esp_mesh_set_router + .text.mesh_set_id + 0x400ee10c 0x98 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0xd8 (size before relaxing) + 0x400ee110 mesh_set_id + .text.esp_mesh_set_id + 0x400ee1a4 0x102 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x152 (size before relaxing) + 0x400ee1a8 esp_mesh_set_id + *fill* 0x400ee2a6 0x2 + .text.esp_mesh_get_id + 0x400ee2a8 0x54 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x74 (size before relaxing) + 0x400ee2a8 esp_mesh_get_id + .text.esp_mesh_set_max_layer + 0x400ee2fc 0x3e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x4e (size before relaxing) + 0x400ee300 esp_mesh_set_max_layer + *fill* 0x400ee33a 0x2 + .text.esp_mesh_set_ap_password + 0x400ee33c 0xab /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0xcf (size before relaxing) + 0x400ee344 esp_mesh_set_ap_password + *fill* 0x400ee3e7 0x1 + .text.esp_mesh_set_ap_authmode + 0x400ee3e8 0x28 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x30 (size before relaxing) + 0x400ee3e8 esp_mesh_set_ap_authmode + .text.esp_mesh_set_ap_connections + 0x400ee410 0x61 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x75 (size before relaxing) + 0x400ee414 esp_mesh_set_ap_connections + *fill* 0x400ee471 0x3 + .text.esp_mesh_get_ap_connections + 0x400ee474 0xb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0xf (size before relaxing) + 0x400ee474 esp_mesh_get_ap_connections + *fill* 0x400ee47f 0x1 + .text.esp_mesh_set_non_mesh_connections + 0x400ee480 0x6c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x84 (size before relaxing) + 0x400ee484 esp_mesh_set_non_mesh_connections + .text.esp_mesh_set_config + 0x400ee4ec 0x3c2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x4b1 (size before relaxing) + 0x400ee50c esp_mesh_set_config + *fill* 0x400ee8ae 0x2 + .text.esp_mesh_get_layer + 0x400ee8b0 0x48 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x64 (size before relaxing) + 0x400ee8b0 esp_mesh_get_layer + .text.esp_mesh_get_parent_bssid + 0x400ee8f8 0x78 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0xa8 (size before relaxing) + 0x400ee8fc esp_mesh_get_parent_bssid + .text.esp_mesh_is_root + 0x400ee970 0x27 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x33 (size before relaxing) + 0x400ee970 esp_mesh_is_root + *fill* 0x400ee997 0x1 + .text.esp_mesh_print_rxQ_waiting + 0x400ee998 0x1c4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x204 (size before relaxing) + 0x400ee9a0 esp_mesh_print_rxQ_waiting + .text.esp_mesh_push_to_myself_queue + 0x400eeb5c 0x1d8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x21c (size before relaxing) + 0x400eeb6c esp_mesh_push_to_myself_queue + .text.esp_mesh_push_to_tcpip_queue + 0x400eed34 0x372 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x3ca (size before relaxing) + 0x400eed44 esp_mesh_push_to_tcpip_queue + *fill* 0x400ef0a6 0x2 + .text.esp_mesh_flush_tcpip_queue + 0x400ef0a8 0x8e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0xa9 (size before relaxing) + 0x400ef0b4 esp_mesh_flush_tcpip_queue + *fill* 0x400ef136 0x2 + .text.esp_mesh_recv_release + 0x400ef138 0x30 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x40 (size before relaxing) + 0x400ef138 esp_mesh_recv_release + .text.esp_mesh_get_self_organized + 0x400ef168 0x11 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x15 (size before relaxing) + 0x400ef168 esp_mesh_get_self_organized + *fill* 0x400ef179 0x3 + .text.mesh_set_parent + 0x400ef17c 0x583 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x677 (size before relaxing) + 0x400ef1a8 mesh_set_parent + *fill* 0x400ef6ff 0x1 + .text.mesh_waive_root + 0x400ef700 0x8a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0xa6 (size before relaxing) + 0x400ef700 mesh_waive_root + *fill* 0x400ef78a 0x2 + .text.mesh_send_stop_vote + 0x400ef78c 0x175 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x1c5 (size before relaxing) + 0x400ef7a4 mesh_send_stop_vote + *fill* 0x400ef901 0x3 + .text.esp_mesh_send_stop_vote + 0x400ef904 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x20 (size before relaxing) + 0x400ef904 esp_mesh_send_stop_vote + .text.esp_mesh_set_vote_percentage + 0x400ef918 0x36 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x3e (size before relaxing) + 0x400ef920 esp_mesh_set_vote_percentage + *fill* 0x400ef94e 0x2 + .text.esp_mesh_push_to_xmit_state_queue + 0x400ef950 0x94 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0xb4 (size before relaxing) + 0x400ef958 esp_mesh_push_to_xmit_state_queue + .text.esp_mesh_stop + 0x400ef9e4 0x59a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x6aa (size before relaxing) + 0x400efa34 esp_mesh_stop + *fill* 0x400eff7e 0x2 + .text.esp_mesh_start + 0x400eff80 0x178 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x21c (size before relaxing) + 0x400eff8c esp_mesh_start + .text.esp_mesh_set_xon_qsize + 0x400f00f8 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x21 (size before relaxing) + 0x400f00f8 esp_mesh_set_xon_qsize + *fill* 0x400f0111 0x3 + .text.esp_mesh_is_my_group + 0x400f0114 0x2d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x35 (size before relaxing) + 0x400f0114 esp_mesh_is_my_group + *fill* 0x400f0141 0x3 + .text.esp_mesh_is_my_ie_encrypted + 0x400f0144 0x11 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x15 (size before relaxing) + 0x400f0144 esp_mesh_is_my_ie_encrypted + *fill* 0x400f0155 0x3 + .text.mesh_set_ie_crypto_funcs + 0x400f0158 0x2d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x3d (size before relaxing) + 0x400f0158 mesh_set_ie_crypto_funcs + *fill* 0x400f0185 0x3 + .text.mesh_set_ie_crypto_key + 0x400f0188 0x30 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x44 (size before relaxing) + 0x400f0188 mesh_set_ie_crypto_key + .text.esp_mesh_is_root_fixed + 0x400f01b8 0xb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0xf (size before relaxing) + 0x400f01b8 esp_mesh_is_root_fixed + *fill* 0x400f01c3 0x1 + .text.esp_mesh_set_announce_interval + 0x400f01c4 0x26 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x2e (size before relaxing) + 0x400f01c8 esp_mesh_set_announce_interval + *fill* 0x400f01ea 0x2 + .text.esp_mesh_set_topology + 0x400f01ec 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x33 (size before relaxing) + 0x400f01ec esp_mesh_set_topology + *fill* 0x400f020f 0x1 + .text.esp_mesh_get_topology + 0x400f0210 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0xe (size before relaxing) + 0x400f0210 esp_mesh_get_topology + *fill* 0x400f021a 0x2 + .text.esp_mesh_enable_ps + 0x400f021c 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x26 (size before relaxing) + 0x400f021c esp_mesh_enable_ps + *fill* 0x400f0236 0x2 + .text.esp_mesh_is_ps_enabled + 0x400f0238 0x34 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 0x40 (size before relaxing) + 0x400f0238 esp_mesh_is_ps_enabled + .text.esp_mesh_nvs_operate + 0x400f026c 0x358 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + 0x368 (size before relaxing) + 0x400f02a8 esp_mesh_nvs_operate + .text.esp_mesh_nvs_set_layer + 0x400f05c4 0x46 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + 0x56 (size before relaxing) + 0x400f05c4 esp_mesh_nvs_set_layer + *fill* 0x400f060a 0x2 + .text.esp_mesh_nvs_set_assoc + 0x400f060c 0x48 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + 0x58 (size before relaxing) + 0x400f060c esp_mesh_nvs_set_assoc + .text.esp_mesh_nvs_init + 0x400f0654 0x45 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + 0x5d (size before relaxing) + 0x400f0658 esp_mesh_nvs_init + *fill* 0x400f0699 0x3 + .text.esp_mesh_nvs_deinit + 0x400f069c 0x1d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + 0x25 (size before relaxing) + 0x400f069c esp_mesh_nvs_deinit + *fill* 0x400f06b9 0x3 + .text.esp_mesh_io_sem_wait + 0x400f06bc 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + 0x20 (size before relaxing) + 0x400f06bc esp_mesh_io_sem_wait + .text.esp_mesh_io_sem_signal + 0x400f06d4 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + 0x1f (size before relaxing) + 0x400f06d4 esp_mesh_io_sem_signal + *fill* 0x400f06eb 0x1 + .text.mesh_set_io_process + 0x400f06ec 0xab /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + 0xdf (size before relaxing) + 0x400f0700 mesh_set_io_process + *fill* 0x400f0797 0x1 + .text.mesh_set_router + 0x400f0798 0x1df /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + 0x22b (size before relaxing) + 0x400f07a8 mesh_set_router + *fill* 0x400f0977 0x1 + .text.mesh_set_self_organized + 0x400f0978 0x101 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + 0x145 (size before relaxing) + 0x400f0990 mesh_set_self_organized + *fill* 0x400f0a79 0x3 + .text.mesh_set_type + 0x400f0a7c 0x256 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + 0x2da (size before relaxing) + 0x400f0a88 mesh_set_type + *fill* 0x400f0cd2 0x2 + .text.mesh_csa_set_bssid + 0x400f0cd4 0x66 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + 0x92 (size before relaxing) + 0x400f0cd8 mesh_csa_set_bssid + *fill* 0x400f0d3a 0x2 + .text.mesh_switch_channel + 0x400f0d3c 0x56 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + 0x76 (size before relaxing) + 0x400f0d3c mesh_switch_channel + *fill* 0x400f0d92 0x2 + .text.mesh_look_for_network + 0x400f0d94 0x34 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + 0x48 (size before relaxing) + 0x400f0d94 mesh_look_for_network + .text.mesh_nwk_io_process + 0x400f0dc8 0x161 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + 0x1d9 (size before relaxing) + 0x400f0dd0 mesh_nwk_io_process + *fill* 0x400f0f29 0x3 + .text.mesh_process_mgmt_announce$part$6 + 0x400f0f2c 0x38d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + 0x3f1 (size before relaxing) + *fill* 0x400f12b9 0x3 + .text.mesh_process_mgmt_routing_table$part$7 + 0x400f12bc 0x342 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + 0x3ba (size before relaxing) + *fill* 0x400f15fe 0x2 + .text.esp_mesh_get_optlen + 0x400f1600 0x5c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + 0x78 (size before relaxing) + 0x400f1600 esp_mesh_get_optlen + .text.esp_mesh_mcast_cover_node + 0x400f165c 0x2e8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + 0x350 (size before relaxing) + 0x400f1670 esp_mesh_mcast_cover_node + .text.mesh_remove_myself_from_forwarding + 0x400f1944 0xe3 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + 0x113 (size before relaxing) + 0x400f1944 mesh_remove_myself_from_forwarding + *fill* 0x400f1a27 0x1 + .text.esp_mesh_delivery_toDS + 0x400f1a28 0x1b0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + 0x1fc (size before relaxing) + 0x400f1a34 esp_mesh_delivery_toDS + .text.esp_mesh_delivery_toSelf + 0x400f1bd8 0x368 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + 0x3cc (size before relaxing) + 0x400f1be8 esp_mesh_delivery_toSelf + .text.mesh_process_mcast_cover_node + 0x400f1f40 0x412 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + 0x4ca (size before relaxing) + 0x400f1f48 mesh_process_mcast_cover_node + *fill* 0x400f2352 0x2 + .text.esp_mesh_process_mcast + 0x400f2354 0x12b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + 0x17a (size before relaxing) + 0x400f2358 esp_mesh_process_mcast + *fill* 0x400f247f 0x1 + .text.esp_mesh_process_bcast + 0x400f2480 0x2d8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + 0x39c (size before relaxing) + 0x400f2484 esp_mesh_process_bcast + .text.mesh_process_mgmt_root_switch + 0x400f2758 0x136 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + 0x182 (size before relaxing) + 0x400f2758 mesh_process_mgmt_root_switch + *fill* 0x400f288e 0x2 + .text.mesh_process_mgmt_root_waive + 0x400f2890 0x1a6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + 0x1e2 (size before relaxing) + 0x400f28a4 mesh_process_mgmt_root_waive + *fill* 0x400f2a36 0x2 + .text.mesh_process_mgmt_announce + 0x400f2a38 0x4c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + 0x68 (size before relaxing) + 0x400f2a38 mesh_process_mgmt_announce + .text.mesh_process_mgmt_routing_table + 0x400f2a84 0x4c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + 0x68 (size before relaxing) + 0x400f2a84 mesh_process_mgmt_routing_table + .text.esp_mesh_process_options + 0x400f2ad0 0x1de /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + 0x226 (size before relaxing) + 0x400f2adc esp_mesh_process_options + *fill* 0x400f2cae 0x2 + .text.esp_mesh_process_ucast + 0x400f2cb0 0x8d8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + 0x9b8 (size before relaxing) + 0x400f2ce0 esp_mesh_process_ucast + .text.esp_mesh_forward_packet + 0x400f3588 0x33a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + 0x3ca (size before relaxing) + 0x400f3598 esp_mesh_forward_packet + *fill* 0x400f38c2 0x2 + .text.esp_mesh_channel_enable_jp + 0x400f38c4 0x57 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + 0x67 (size before relaxing) + 0x400f38d0 esp_mesh_channel_enable_jp + *fill* 0x400f391b 0x1 + .text.esp_mesh_scan_done_get_channel + 0x400f391c 0x737 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + 0x7ab (size before relaxing) + 0x400f3978 esp_mesh_scan_done_get_channel + *fill* 0x400f4053 0x1 + .text.mesh_nwk_process_reselect + 0x400f4054 0x26a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + 0x2c2 (size before relaxing) + 0x400f4074 mesh_nwk_process_reselect + *fill* 0x400f42be 0x2 + .text.mesh_nwk_process_look_for_network + 0x400f42c0 0x2d4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + 0x368 (size before relaxing) + 0x400f42dc mesh_nwk_process_look_for_network + .text.mesh_nwk_process_allow_switch + 0x400f4594 0x10c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + 0x13c (size before relaxing) + 0x400f459c mesh_nwk_process_allow_switch + .text.mesh_set_root_candidate$part$17 + 0x400f46a0 0x26 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x2a (size before relaxing) + *fill* 0x400f46c6 0x2 + .text.mesh_set_root_candidate_ie$part$18 + 0x400f46c8 0x4a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x56 (size before relaxing) + *fill* 0x400f4712 0x2 + .text.esp_mesh_ie_update_rssi + 0x400f4714 0x9e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0xc9 (size before relaxing) + 0x400f4714 esp_mesh_ie_update_rssi + *fill* 0x400f47b2 0x2 + .text.esp_mesh_set_ie + 0x400f47b4 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x2e (size before relaxing) + 0x400f47b4 esp_mesh_set_ie + *fill* 0x400f47ce 0x2 + .text.is_mesh_last_parent + 0x400f47d0 0x38 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x44 (size before relaxing) + 0x400f47d4 is_mesh_last_parent + .text.esp_mesh_send_root_switch + 0x400f4808 0x6c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x78 (size before relaxing) + 0x400f4808 esp_mesh_send_root_switch + .text.esp_mesh_is_switch_parent + 0x400f4874 0x1e6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x202 (size before relaxing) + 0x400f4890 esp_mesh_is_switch_parent + *fill* 0x400f4a5a 0x2 + .text.esp_mesh_compute_my_votes + 0x400f4a5c 0x75 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x85 (size before relaxing) + 0x400f4a5c esp_mesh_compute_my_votes + *fill* 0x400f4ad1 0x3 + .text.mesh_check_rc_expire + 0x400f4ad4 0x316 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x36a (size before relaxing) + 0x400f4b04 mesh_check_rc_expire + *fill* 0x400f4dea 0x2 + .text.mesh_nwk_change_layer + 0x400f4dec 0x82 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x9e (size before relaxing) + 0x400f4df0 mesh_nwk_change_layer + *fill* 0x400f4e6e 0x2 + .text.esp_mesh_set_parent_candidate_config + 0x400f4e70 0xa7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0xc3 (size before relaxing) + 0x400f4e78 esp_mesh_set_parent_candidate_config + *fill* 0x400f4f17 0x1 + .text.mesh_parent_check_root_conflict + 0x400f4f18 0x9a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0xce (size before relaxing) + 0x400f4f18 mesh_parent_check_root_conflict + *fill* 0x400f4fb2 0x2 + .text.route_announce_timer_start + 0x400f4fb4 0xaf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0xb7 (size before relaxing) + 0x400f4fc0 route_announce_timer_start + *fill* 0x400f5063 0x1 + .text.route_announce_timeout_process + 0x400f5064 0x98 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0xb4 (size before relaxing) + 0x400f5074 route_announce_timeout_process + .text.route_announce_timer_stop + 0x400f50fc 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x1b (size before relaxing) + 0x400f50fc route_announce_timer_stop + *fill* 0x400f510f 0x1 + .text.esp_mesh_ie_monitor + 0x400f5110 0x114 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x130 (size before relaxing) + 0x400f5124 esp_mesh_ie_monitor + .text.mesh_ie_monitor_timeout_process + 0x400f5224 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x25 (size before relaxing) + 0x400f5224 mesh_ie_monitor_timeout_process + *fill* 0x400f523a 0x2 + .text.mesh_bcn_change_timer_start + 0x400f523c 0x32 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x3a (size before relaxing) + 0x400f5248 mesh_bcn_change_timer_start + *fill* 0x400f526e 0x2 + .text.candidate_monitor_timer_stop + 0x400f5270 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x1b (size before relaxing) + 0x400f5274 candidate_monitor_timer_stop + *fill* 0x400f5287 0x1 + .text.mesh_disable_parent_switch_monitor + 0x400f5288 0x1d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x24 (size before relaxing) + 0x400f528c mesh_disable_parent_switch_monitor + *fill* 0x400f52a5 0x3 + .text.candidate_monitor_timer_start + 0x400f52a8 0x1ba /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x212 (size before relaxing) + 0x400f52d4 candidate_monitor_timer_start + *fill* 0x400f5462 0x2 + .text.esp_mesh_ps_control_check_awake + 0x400f5464 0x8b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0xa3 (size before relaxing) + 0x400f5468 esp_mesh_ps_control_check_awake + *fill* 0x400f54ef 0x1 + .text.mesh_ps_control_set_sleep + 0x400f54f0 0x6e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x72 (size before relaxing) + 0x400f54f0 mesh_ps_control_set_sleep + *fill* 0x400f555e 0x2 + .text.mesh_ps_control_get_min_duty + 0x400f5560 0x124 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x138 (size before relaxing) + 0x400f5568 mesh_ps_control_get_min_duty + .text.mesh_ps_control_timeout_process + 0x400f5684 0x1ca /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x1ee (size before relaxing) + 0x400f5690 mesh_ps_control_timeout_process + *fill* 0x400f584e 0x2 + .text.mesh_nwk_find_conflict_roots + 0x400f5850 0x5c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x60 (size before relaxing) + 0x400f5850 mesh_nwk_find_conflict_roots + .text.mesh_nwk_remove_conflict_roots + 0x400f58ac 0xc4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0xe0 (size before relaxing) + 0x400f58b4 mesh_nwk_remove_conflict_roots + .text.mesh_is_yield_root + 0x400f5970 0x5e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x400f5978 mesh_is_yield_root + *fill* 0x400f59ce 0x2 + .text.mesh_nwk_add_conflict_roots + 0x400f59d0 0x1d1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x20d (size before relaxing) + 0x400f59dc mesh_nwk_add_conflict_roots + *fill* 0x400f5ba1 0x3 + .text.mesh_nwk_process_yield_roots_announce + 0x400f5ba4 0x1e6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x21e (size before relaxing) + 0x400f5bb0 mesh_nwk_process_yield_roots_announce + *fill* 0x400f5d8a 0x2 + .text.mesh_nwk_process_yield_roots_monitor + 0x400f5d8c 0x192 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x1c6 (size before relaxing) + 0x400f5d98 mesh_nwk_process_yield_roots_monitor + *fill* 0x400f5f1e 0x2 + .text.mesh_nwk_delete_timers + 0x400f5f20 0xaa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0xc2 (size before relaxing) + 0x400f5f28 mesh_nwk_delete_timers + *fill* 0x400f5fca 0x2 + .text.mesh_send_roots_gone + 0x400f5fcc 0x66 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x86 (size before relaxing) + 0x400f5fd0 mesh_send_roots_gone + *fill* 0x400f6032 0x2 + .text.mesh_send_roots_fixed + 0x400f6034 0xb7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0xea (size before relaxing) + 0x400f603c mesh_send_roots_fixed + *fill* 0x400f60eb 0x1 + .text.mesh_send_roots_stop + 0x400f60ec 0x9c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0xc8 (size before relaxing) + 0x400f60f0 mesh_send_roots_stop + .text.mesh_nwk_check_conflict_roots + 0x400f6188 0x13a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x18e (size before relaxing) + 0x400f61a0 mesh_nwk_check_conflict_roots + *fill* 0x400f62c2 0x2 + .text.esp_mesh_send_rmv_announcement + 0x400f62c4 0x1b0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x1e0 (size before relaxing) + 0x400f62e8 esp_mesh_send_rmv_announcement + .text.esp_mesh_is_scan_allowed + 0x400f6474 0x2e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x32 (size before relaxing) + 0x400f647c esp_mesh_is_scan_allowed + *fill* 0x400f64a2 0x2 + .text.esp_mesh_is_rt_change_debug + 0x400f64a4 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x400f64a8 esp_mesh_is_rt_change_debug + *fill* 0x400f64b3 0x1 + .text.mesh_nwk_process_vote_done + 0x400f64b4 0xa4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0xd0 (size before relaxing) + 0x400f64bc mesh_nwk_process_vote_done + .text.mesh_nwk_process_disconnected + 0x400f6558 0x76 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0xae (size before relaxing) + 0x400f6558 mesh_nwk_process_disconnected + *fill* 0x400f65ce 0x2 + .text.mesh_nwk_process_scan_request + 0x400f65d0 0xdd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0xfd (size before relaxing) + 0x400f65e4 mesh_nwk_process_scan_request + *fill* 0x400f66ad 0x3 + .text.mesh_nwk_process_rootless + 0x400f66b0 0x80 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0xac (size before relaxing) + 0x400f66b0 mesh_nwk_process_rootless + .text.mesh_nwk_check_no_parent_found + 0x400f6730 0x7e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x9e (size before relaxing) + 0x400f6734 mesh_nwk_check_no_parent_found + *fill* 0x400f67ae 0x2 + .text.mesh_root_process_connect + 0x400f67b0 0x68 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x88 (size before relaxing) + 0x400f67b0 mesh_root_process_connect + .text.mesh_child_clr_ps_duty + 0x400f6818 0x2d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x31 (size before relaxing) + 0x400f6818 mesh_child_clr_ps_duty + *fill* 0x400f6845 0x3 + .text.esp_mesh_process_ps_type + 0x400f6848 0x7a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0xa6 (size before relaxing) + 0x400f6848 esp_mesh_process_ps_type + *fill* 0x400f68c2 0x2 + .text.is_mesh_child + 0x400f68c4 0x4e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x6a (size before relaxing) + 0x400f68d0 is_mesh_child + *fill* 0x400f6912 0x2 + .text.esp_mesh_flush_scan_result + 0x400f6914 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x1b (size before relaxing) + 0x400f6914 esp_mesh_flush_scan_result + *fill* 0x400f6927 0x1 + .text.mesh_nwk_process_scan_done + 0x400f6928 0x1ae /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x212 (size before relaxing) + 0x400f6934 mesh_nwk_process_scan_done + *fill* 0x400f6ad6 0x2 + .text.scan_result_print + 0x400f6ad8 0x250 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x29c (size before relaxing) + 0x400f6b0c scan_result_print + .text.mesh_scan_done_process_weak + 0x400f6d28 0xc5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0xf5 (size before relaxing) + 0x400f6d30 mesh_scan_done_process_weak + *fill* 0x400f6ded 0x3 + .text.esp_mesh_conn_init + 0x400f6df0 0x8e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0xca (size before relaxing) + 0x400f6dfc esp_mesh_conn_init + *fill* 0x400f6e7e 0x2 + .text.esp_mesh_conn_deinit + 0x400f6e80 0x8a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0xc2 (size before relaxing) + 0x400f6e8c esp_mesh_conn_deinit + *fill* 0x400f6f0a 0x2 + .text.mesh_parent_insert_candidate + 0x400f6f0c 0x11e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x166 (size before relaxing) + 0x400f6f14 mesh_parent_insert_candidate + *fill* 0x400f702a 0x2 + .text.esp_mesh_scan_done_vote + 0x400f702c 0x474 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x534 (size before relaxing) + 0x400f7074 esp_mesh_scan_done_vote + .text.esp_mesh_scan_done + 0x400f74a0 0x660 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x774 (size before relaxing) + 0x400f74d8 esp_mesh_scan_done + .text.mesh_update_current_parent + 0x400f7b00 0xff /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x13f (size before relaxing) + 0x400f7b0c mesh_update_current_parent + *fill* 0x400f7bff 0x1 + .text.mesh_set_root_candidate + 0x400f7c00 0x79 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x99 (size before relaxing) + 0x400f7c00 mesh_set_root_candidate + *fill* 0x400f7c79 0x3 + .text.mesh_update_ie_rssi + 0x400f7c7c 0x8d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0xa9 (size before relaxing) + 0x400f7c7c mesh_update_ie_rssi + *fill* 0x400f7d09 0x3 + .text.mesh_set_root_candidate_ie + 0x400f7d0c 0x6c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x88 (size before relaxing) + 0x400f7d0c mesh_set_root_candidate_ie + .text.esp_mesh_compute_votes + 0x400f7d78 0xc9 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0xed (size before relaxing) + 0x400f7d78 esp_mesh_compute_votes + *fill* 0x400f7e41 0x3 + .text.mesh_process_root_candidate + 0x400f7e44 0x1d9 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x24d (size before relaxing) + 0x400f7e48 mesh_process_root_candidate + *fill* 0x400f801d 0x3 + .text.mesh_process_same_root_candidate + 0x400f8020 0x5d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x65 (size before relaxing) + 0x400f8020 mesh_process_same_root_candidate + *fill* 0x400f807d 0x3 + .text.mesh_add_invalid_rc + 0x400f8080 0xe6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x116 (size before relaxing) + 0x400f808c mesh_add_invalid_rc + *fill* 0x400f8166 0x2 + .text._mesh_find_root_competitor + 0x400f8168 0x5d6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x68a (size before relaxing) + 0x400f8190 _mesh_find_root_competitor + *fill* 0x400f873e 0x2 + .text.mesh_is_last_rc_existing + 0x400f8740 0xfc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x124 (size before relaxing) + 0x400f8740 mesh_is_last_rc_existing + .text.mesh_update_rcandidate_rssi + 0x400f883c 0x75 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0xa1 (size before relaxing) + 0x400f883c mesh_update_rcandidate_rssi + *fill* 0x400f88b1 0x3 + .text.mesh_init_rcandidate + 0x400f88b4 0xd0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0xf8 (size before relaxing) + 0x400f88bc mesh_init_rcandidate + .text.mesh_check_last_rcandidate + 0x400f8984 0x21a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x26e (size before relaxing) + 0x400f89a4 mesh_check_last_rcandidate + *fill* 0x400f8b9e 0x2 + .text.mesh_find_root_competitor + 0x400f8ba0 0x16c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x1cc (size before relaxing) + 0x400f8ba4 mesh_find_root_competitor + .text.mesh_vote_root_candidate + 0x400f8d0c 0x4d4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x5a8 (size before relaxing) + 0x400f8d28 mesh_vote_root_candidate + .text.mesh_select_router + 0x400f91e0 0x40 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x48 (size before relaxing) + 0x400f91e0 mesh_select_router + .text.mesh_nwk_process_nvs_settings + 0x400f9220 0x20d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x25d (size before relaxing) + 0x400f9230 mesh_nwk_process_nvs_settings + *fill* 0x400f942d 0x3 + .text.mesh_select_is_better_parent + 0x400f9430 0x114 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x124 (size before relaxing) + 0x400f9434 mesh_select_is_better_parent + .text.mesh_select_set_ignore + 0x400f9544 0xf0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x104 (size before relaxing) + 0x400f9548 mesh_select_set_ignore + .text.mesh_select_parent_try_rssi + 0x400f9634 0x1d3 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x1fb (size before relaxing) + 0x400f964c mesh_select_parent_try_rssi + *fill* 0x400f9807 0x1 + .text.mesh_select_parent + 0x400f9808 0x1f0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x22c (size before relaxing) + 0x400f9814 mesh_select_parent + .text.esp_mesh_get_child_num + 0x400f99f8 0x50 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x60 (size before relaxing) + 0x400f9a04 esp_mesh_get_child_num + .text.mesh_nwk_process_child_event + 0x400f9a48 0xb1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0xe8 (size before relaxing) + 0x400f9a4c mesh_nwk_process_child_event + *fill* 0x400f9af9 0x3 + .text.mesh_process_child_macconnected + 0x400f9afc 0x1e8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x254 (size before relaxing) + 0x400f9b0c mesh_process_child_macconnected + .text.print_txupQ_pending + 0x400f9ce4 0x262 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x286 (size before relaxing) + 0x400f9d18 print_txupQ_pending + *fill* 0x400f9f46 0x2 + .text.esp_mesh_get_child_idx + 0x400f9f48 0x68 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x74 (size before relaxing) + 0x400f9f48 esp_mesh_get_child_idx + .text.esp_mesh_get_child_idx_lock + 0x400f9fb0 0x34 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x4c (size before relaxing) + 0x400f9fbc esp_mesh_get_child_idx_lock + .text.esp_mesh_insert_child + 0x400f9fe4 0x2ad /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x2fd (size before relaxing) + 0x400fa000 esp_mesh_insert_child + *fill* 0x400fa291 0x3 + .text.esp_mesh_remove_child + 0x400fa294 0x5d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x75 (size before relaxing) + 0x400fa294 esp_mesh_remove_child + *fill* 0x400fa2f1 0x3 + .text.esp_mesh_remove_children + 0x400fa2f4 0xe2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x125 (size before relaxing) + 0x400fa2fc esp_mesh_remove_children + *fill* 0x400fa3d6 0x2 + .text.mesh_nwk_process_leaf + 0x400fa3d8 0x58 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x6c (size before relaxing) + 0x400fa3d8 mesh_nwk_process_leaf + .text.mesh_nwk_process_no_parent + 0x400fa430 0xa5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0xdd (size before relaxing) + 0x400fa438 mesh_nwk_process_no_parent + *fill* 0x400fa4d5 0x3 + .text.esp_mesh_clear_parent + 0x400fa4d8 0x106 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x15a (size before relaxing) + 0x400fa4f4 esp_mesh_clear_parent + *fill* 0x400fa5de 0x2 + .text.mesh_node_process_disconnect + 0x400fa5e0 0x35 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x45 (size before relaxing) + 0x400fa5e8 mesh_node_process_disconnect + *fill* 0x400fa615 0x3 + .text.esp_mesh_revote_root + 0x400fa618 0x49 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x59 (size before relaxing) + 0x400fa618 esp_mesh_revote_root + *fill* 0x400fa661 0x3 + .text.mesh_node_process_healing + 0x400fa664 0xa1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0xd5 (size before relaxing) + 0x400fa668 mesh_node_process_healing + *fill* 0x400fa705 0x3 + .text.esp_mesh_push_to_nwk_queue + 0x400fa708 0x106 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x12a (size before relaxing) + 0x400fa71c esp_mesh_push_to_nwk_queue + *fill* 0x400fa80e 0x2 + .text.mesh_route_announce_timeout + 0x400fa810 0x4b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x5f (size before relaxing) + 0x400fa814 mesh_route_announce_timeout + *fill* 0x400fa85b 0x1 + .text.mesh_ie_monitor_timeout + 0x400fa85c 0x4b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x5f (size before relaxing) + 0x400fa860 mesh_ie_monitor_timeout + *fill* 0x400fa8a7 0x1 + .text.mesh_bcn_change_timeout + 0x400fa8a8 0x4b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x5f (size before relaxing) + 0x400fa8ac mesh_bcn_change_timeout + *fill* 0x400fa8f3 0x1 + .text.mesh_root_connect_timeout + 0x400fa8f4 0x4b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x5f (size before relaxing) + 0x400fa8f8 mesh_root_connect_timeout + *fill* 0x400fa93f 0x1 + .text.mesh_candidate_monitor_timeout + 0x400fa940 0x4b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x5f (size before relaxing) + 0x400fa944 mesh_candidate_monitor_timeout + *fill* 0x400fa98b 0x1 + .text.mesh_candidate_monitor_timeout_process + 0x400fa98c 0x86 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0xc6 (size before relaxing) + 0x400fa98c mesh_candidate_monitor_timeout_process + *fill* 0x400faa12 0x2 + .text.mesh_ps_control_timeout + 0x400faa14 0x50 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x64 (size before relaxing) + 0x400faa1c mesh_ps_control_timeout + .text.esp_mesh_sta_connect + 0x400faa64 0x1c5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x215 (size before relaxing) + 0x400faa90 esp_mesh_sta_connect + *fill* 0x400fac29 0x3 + .text.mesh_connect_to_router + 0x400fac2c 0x2ad /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x349 (size before relaxing) + 0x400fac3c mesh_connect_to_router + *fill* 0x400faed9 0x3 + .text.mesh_connect_to_candidate + 0x400faedc 0x364 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x404 (size before relaxing) + 0x400faee8 mesh_connect_to_candidate + .text.mesh_root_connect_timeout_process + 0x400fb240 0x5b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x72 (size before relaxing) + 0x400fb248 mesh_root_connect_timeout_process + *fill* 0x400fb29b 0x1 + .text.mesh_root_process_disconnect + 0x400fb29c 0xcb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x112 (size before relaxing) + 0x400fb2ac mesh_root_process_disconnect + *fill* 0x400fb367 0x1 + .text.mesh_nwk_manual_networking + 0x400fb368 0x2f6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x35d (size before relaxing) + 0x400fb388 mesh_nwk_manual_networking + *fill* 0x400fb65e 0x2 + .text.esp_mesh_sta_disconnect + 0x400fb660 0x5e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x7e (size before relaxing) + 0x400fb668 esp_mesh_sta_disconnect + *fill* 0x400fb6be 0x2 + .text.esp_mesh_parent_reselect + 0x400fb6c0 0xa7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0xdf (size before relaxing) + 0x400fb6c8 esp_mesh_parent_reselect + *fill* 0x400fb767 0x1 + .text.mesh_nwk_check_layer + 0x400fb768 0xce /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0xf6 (size before relaxing) + 0x400fb778 mesh_nwk_check_layer + *fill* 0x400fb836 0x2 + .text.mesh_nwk_process_ie_change + 0x400fb838 0x396 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x402 (size before relaxing) + 0x400fb844 mesh_nwk_process_ie_change + *fill* 0x400fbbce 0x2 + .text.mesh_nwk_process_conflict_discnx + 0x400fbbd0 0x5c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x80 (size before relaxing) + 0x400fbbd8 mesh_nwk_process_conflict_discnx + .text.mesh_node_process_cycle + 0x400fbc2c 0xb5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0xfd (size before relaxing) + 0x400fbc40 mesh_node_process_cycle + *fill* 0x400fbce1 0x3 + .text.mesh_wifi_event_cb + 0x400fbce4 0x46f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x4df (size before relaxing) + 0x400fbcf8 mesh_wifi_event_cb + *fill* 0x400fc153 0x1 + .text.esp_mesh_set_rssi_threshold + 0x400fc154 0x2e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x42 (size before relaxing) + 0x400fc154 esp_mesh_set_rssi_threshold + *fill* 0x400fc182 0x2 + .text.esp_mesh_get_rssi_threshold + 0x400fc184 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x2c (size before relaxing) + 0x400fc184 esp_mesh_get_rssi_threshold + .text.mesh_set_default_rssi_threshold + 0x400fc1a0 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x28 (size before relaxing) + 0x400fc1a0 mesh_set_default_rssi_threshold + .text.esp_mesh_is_nwk_inited + 0x400fc1c0 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x400fc1c4 esp_mesh_is_nwk_inited + *fill* 0x400fc1cf 0x1 + .text.esp_mesh_is_nwk_running + 0x400fc1d0 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x400fc1d4 esp_mesh_is_nwk_running + .text.mesh_process_parent_organized + 0x400fc1e8 0x5b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x73 (size before relaxing) + 0x400fc1e8 mesh_process_parent_organized + *fill* 0x400fc243 0x1 + .text.mesh_nwk_task_deinit + 0x400fc244 0x81 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0xb9 (size before relaxing) + 0x400fc244 mesh_nwk_task_deinit + *fill* 0x400fc2c5 0x3 + .text.esp_mesh_nwk_task_init + 0x400fc2c8 0x2cd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x3c9 (size before relaxing) + 0x400fc2f0 esp_mesh_nwk_task_init + *fill* 0x400fc595 0x3 + .text.esp_mesh_nwk_task_deinit + 0x400fc598 0x90 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0xc8 (size before relaxing) + 0x400fc5a0 esp_mesh_nwk_task_deinit + .text.esp_mesh_get_beacon_interval + 0x400fc628 0x51 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x6d (size before relaxing) + 0x400fc62c esp_mesh_get_beacon_interval + *fill* 0x400fc679 0x3 + .text.mesh_adjust_passive_scan_time + 0x400fc67c 0x7a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x8e (size before relaxing) + 0x400fc680 mesh_adjust_passive_scan_time + *fill* 0x400fc6f6 0x2 + .text.esp_mesh_set_beacon_interval + 0x400fc6f8 0x36 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x51 (size before relaxing) + 0x400fc6f8 esp_mesh_set_beacon_interval + *fill* 0x400fc72e 0x2 + .text.mesh_parent_select_done + 0x400fc730 0x80d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x965 (size before relaxing) + 0x400fc74c mesh_parent_select_done + *fill* 0x400fcf3d 0x3 + .text.esp_mesh_parent_select + 0x400fcf40 0x827 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x943 (size before relaxing) + 0x400fcf84 esp_mesh_parent_select + *fill* 0x400fd767 0x1 + .text.mesh_bcn_change_timeout_process + 0x400fd768 0x26 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x3a (size before relaxing) + 0x400fd768 mesh_bcn_change_timeout_process + *fill* 0x400fd78e 0x2 + .text.mesh_nwk_task_main + 0x400fd790 0x316b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x38c3 (size before relaxing) + 0x400fd950 mesh_nwk_task_main + *fill* 0x401008fb 0x1 + .text.mesh_ps_get_duties + 0x401008fc 0xee /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x11a (size before relaxing) + 0x40100904 mesh_ps_get_duties + *fill* 0x401009ea 0x2 + .text.esp_mesh_ps_duty_ext_get_process + 0x401009ec 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x1c (size before relaxing) + 0x401009f0 esp_mesh_ps_duty_ext_get_process + .text.is_esp_mesh_ssid + 0x40100a04 0x3c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.is_esp_mesh_roots_announce + 0x40100a40 0x3c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.is_esp_mesh_roots_yield + 0x40100a7c 0x3c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.is_esp_mesh_roots_fixed + 0x40100ab8 0x3c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.is_esp_mesh_roots_gone + 0x40100af4 0x3c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.is_esp_mesh_ps + 0x40100b30 0x3c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x40100b34 is_esp_mesh_ps + .text.esp_mesh_parse_ext_assoc_ie + 0x40100b6c 0x5c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x7c (size before relaxing) + 0x40100b6c esp_mesh_parse_ext_assoc_ie + .text.esp_mesh_sync_interface_tsf + 0x40100bc8 0x7a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x8e (size before relaxing) + 0x40100bd0 esp_mesh_sync_interface_tsf + *fill* 0x40100c42 0x2 + .text.is_esp_mesh_ext_assoc + 0x40100c44 0x6a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x6e (size before relaxing) + 0x40100c48 is_esp_mesh_ext_assoc + *fill* 0x40100cae 0x2 + .text._wifi_vnd_ext_mesh_roots_free$part$14 + 0x40100cb0 0x36 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x3e (size before relaxing) + *fill* 0x40100ce6 0x2 + .text._mesh_roots_process_fixed$part$15 + 0x40100ce8 0x63 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x6f (size before relaxing) + *fill* 0x40100d4b 0x1 + .text.esp_mesh_get_conflict_root_state$part$31 + 0x40100d4c 0x253 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x25b (size before relaxing) + *fill* 0x40100f9f 0x1 + .text.is_my_ie_encrypted + 0x40100fa0 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x40100fa4 is_my_ie_encrypted + *fill* 0x40100fbe 0x2 + .text.esp_mesh_get_vnd_ssid_len + 0x40100fc0 0x53 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x67 (size before relaxing) + 0x40100fc4 esp_mesh_get_vnd_ssid_len + *fill* 0x40101013 0x1 + .text.esp_mesh_encrypt_vnd_ie + 0x40101014 0x6e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x7e (size before relaxing) + 0x4010101c esp_mesh_encrypt_vnd_ie + *fill* 0x40101082 0x2 + .text.ieee80211_add_mesh_assoc_ie + 0x40101084 0x8c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0xa4 (size before relaxing) + 0x40101088 ieee80211_add_mesh_assoc_ie + .text.esp_mesh_decrypt_vnd_ie + 0x40101110 0x66 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x7e (size before relaxing) + 0x40101110 esp_mesh_decrypt_vnd_ie + *fill* 0x40101176 0x2 + .text.esp_mesh_check_vnd_ie + 0x40101178 0x79 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x85 (size before relaxing) + 0x40101178 esp_mesh_check_vnd_ie + *fill* 0x401011f1 0x3 + .text.mesh_set_ie_crypto_config + 0x401011f4 0x56 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x6a (size before relaxing) + 0x401011f4 mesh_set_ie_crypto_config + *fill* 0x4010124a 0x2 + .text.ieee80211_mesh_quick_set + 0x4010124c 0x24a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x25a (size before relaxing) + 0x40101250 ieee80211_mesh_quick_set + *fill* 0x40101496 0x2 + .text.ieee80211_mesh_quick_get + 0x40101498 0x14e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x15a (size before relaxing) + 0x4010149c ieee80211_mesh_quick_get + *fill* 0x401015e6 0x2 + .text.esp_mesh_sta_monitor_rssi + 0x401015e8 0xfc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x148 (size before relaxing) + 0x401015f0 esp_mesh_sta_monitor_rssi + .text.esp_mesh_map_reject_connection + 0x401016e4 0xa9 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0xc9 (size before relaxing) + 0x401016e8 esp_mesh_map_reject_connection + *fill* 0x4010178d 0x3 + .text.esp_mesh_map_change_beacon_interval + 0x40101790 0x74 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x9c (size before relaxing) + 0x40101790 esp_mesh_map_change_beacon_interval + .text.ieee80211_vnd_mesh_quick_set + 0x40101804 0x1a4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x1d4 (size before relaxing) + 0x40101808 ieee80211_vnd_mesh_quick_set + .text.ieee80211_vnd_mesh_quick_get + 0x401019a8 0x55 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x61 (size before relaxing) + 0x401019a8 ieee80211_vnd_mesh_quick_get + *fill* 0x401019fd 0x3 + .text.ieee80211_add_ie_esp_mesh_head + 0x40101a00 0x44 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x40101a04 ieee80211_add_ie_esp_mesh_head + .text.ieee80211_add_mesh_ssid_ie + 0x40101a44 0xce /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0xfe (size before relaxing) + 0x40101a44 ieee80211_add_mesh_ssid_ie + *fill* 0x40101b12 0x2 + .text.ieee80211_add_mesh_ext_assoc_ie + 0x40101b14 0x70 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x98 (size before relaxing) + 0x40101b14 ieee80211_add_mesh_ext_assoc_ie + .text.ieee80211_add_mesh_ps_ie + 0x40101b84 0x6a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x8e (size before relaxing) + 0x40101b84 ieee80211_add_mesh_ps_ie + *fill* 0x40101bee 0x2 + .text.ieee80211_add_mesh_duty_signaling + 0x40101bf0 0xba /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0xee (size before relaxing) + 0x40101bf4 ieee80211_add_mesh_duty_signaling + *fill* 0x40101caa 0x2 + .text.ieee80211_init_mesh_assoc_ie + 0x40101cac 0x46 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x56 (size before relaxing) + 0x40101cac ieee80211_init_mesh_assoc_ie + *fill* 0x40101cf2 0x2 + .text._wifi_vnd_ext_mesh_roots_free + 0x40101cf4 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x15 (size before relaxing) + 0x40101cf4 _wifi_vnd_ext_mesh_roots_free + *fill* 0x40101d02 0x2 + .text._wifi_vnd_ext_mesh_roots_malloc + 0x40101d04 0x60 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x70 (size before relaxing) + 0x40101d14 _wifi_vnd_ext_mesh_roots_malloc + .text._mesh_reset_window_open_time + 0x40101d64 0x7d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x85 (size before relaxing) + 0x40101d68 _mesh_reset_window_open_time + *fill* 0x40101de1 0x3 + .text._mesh_roots_process_announce + 0x40101de4 0x228 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x27c (size before relaxing) + 0x40101de4 _mesh_roots_process_announce + .text.ieee80211_is_mesh_roots_valid + 0x4010200c 0x93 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0xa7 (size before relaxing) + 0x4010200c ieee80211_is_mesh_roots_valid + *fill* 0x4010209f 0x1 + .text.ieee80211_is_mesh_roots_announce + 0x401020a0 0xa2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0xae (size before relaxing) + 0x401020a0 ieee80211_is_mesh_roots_announce + *fill* 0x40102142 0x2 + .text.ieee80211_is_mesh_roots_yield + 0x40102144 0x2f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x37 (size before relaxing) + 0x40102144 ieee80211_is_mesh_roots_yield + *fill* 0x40102173 0x1 + .text.ieee80211_is_mesh_roots_fixed + 0x40102174 0x42 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x4a (size before relaxing) + 0x40102174 ieee80211_is_mesh_roots_fixed + *fill* 0x401021b6 0x2 + .text.ieee80211_is_mesh_roots_gone + 0x401021b8 0x42 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x4a (size before relaxing) + 0x401021b8 ieee80211_is_mesh_roots_gone + *fill* 0x401021fa 0x2 + .text.mesh_get_vnd_roots_len + 0x401021fc 0x73 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x87 (size before relaxing) + 0x40102204 mesh_get_vnd_roots_len + *fill* 0x4010226f 0x1 + .text.ieee80211_add_mesh_roots_ie + 0x40102270 0x10a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x136 (size before relaxing) + 0x40102270 ieee80211_add_mesh_roots_ie + *fill* 0x4010237a 0x2 + .text.esp_mesh_map_stop_beacon + 0x4010237c 0xb2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0xde (size before relaxing) + 0x40102384 esp_mesh_map_stop_beacon + *fill* 0x4010242e 0x2 + .text._mesh_check_window_close_expire + 0x40102430 0x16a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x19a (size before relaxing) + 0x40102440 _mesh_check_window_close_expire + *fill* 0x4010259a 0x2 + .text._mesh_check_window_open_expire + 0x4010259c 0x18a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x1ca (size before relaxing) + 0x401025b4 _mesh_check_window_open_expire + *fill* 0x40102726 0x2 + .text._mesh_timer_process_fixed + 0x40102728 0x43 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x52 (size before relaxing) + 0x4010272c _mesh_timer_process_fixed + *fill* 0x4010276b 0x1 + .text._mesh_timer_process_gone + 0x4010276c 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x4a (size before relaxing) + 0x40102770 _mesh_timer_process_gone + *fill* 0x401027a7 0x1 + .text.is_esp_mesh_duty_signaling + 0x401027a8 0x3c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x401027ac is_esp_mesh_duty_signaling + .text.mesh_ps_set_new_duty + 0x401027e4 0x9e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0xa2 (size before relaxing) + 0x401027e4 mesh_ps_set_new_duty + *fill* 0x40102882 0x2 + .text.mesh_nwk_duty_post_event + 0x40102884 0xc4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0xe0 (size before relaxing) + 0x40102894 mesh_nwk_duty_post_event + .text.mesh_nwk_duty_master_is_root + 0x40102948 0x34 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x40 (size before relaxing) + 0x40102948 mesh_nwk_duty_master_is_root + .text.mesh_parse_ps_entire_rule + 0x4010297c 0x497 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x4cf (size before relaxing) + 0x40102994 mesh_parse_ps_entire_rule + *fill* 0x40102e13 0x1 + .text.mesh_parse_ps_uplink_rule + 0x40102e14 0x1d3 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x20b (size before relaxing) + 0x40102e18 mesh_parse_ps_uplink_rule + *fill* 0x40102fe7 0x1 + .text.mesh_nwk_duty_check_duration_expire + 0x40102fe8 0x47 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x4b (size before relaxing) + 0x40102fec mesh_nwk_duty_check_duration_expire + *fill* 0x4010302f 0x1 + .text.mesh_nwk_duty_set_master_identity + 0x40103030 0xcd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0xe1 (size before relaxing) + 0x40103030 mesh_nwk_duty_set_master_identity + *fill* 0x401030fd 0x3 + .text.mesh_nwk_duty_clr_master_identity + 0x40103100 0x11a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x136 (size before relaxing) + 0x40103108 mesh_nwk_duty_clr_master_identity + *fill* 0x4010321a 0x2 + .text.mesh_nwk_duty_clr_remaining + 0x4010321c 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x1c (size before relaxing) + 0x40103220 mesh_nwk_duty_clr_remaining + .text.mesh_nwk_duty_set_remaining + 0x40103234 0xa4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0xb0 (size before relaxing) + 0x40103234 mesh_nwk_duty_set_remaining + .text.mesh_nwk_duty_check_allowed + 0x401032d8 0x1ee /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x20e (size before relaxing) + 0x401032e8 mesh_nwk_duty_check_allowed + *fill* 0x401034c6 0x2 + .text.esp_mesh_ps_duty_cycle_set_process + 0x401034c8 0x2b6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x31e (size before relaxing) + 0x401034cc esp_mesh_ps_duty_cycle_set_process + *fill* 0x4010377e 0x2 + .text.esp_mesh_parse_ps_ie + 0x40103780 0x259 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x28d (size before relaxing) + 0x40103784 esp_mesh_parse_ps_ie + *fill* 0x401039d9 0x3 + .text.ieee80211_recv_mesh_duty_signaling + 0x401039dc 0xd4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x104 (size before relaxing) + 0x401039e0 ieee80211_recv_mesh_duty_signaling + .text.mesh_nwk_duty_process_remaining + 0x40103ab0 0x2d7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x33f (size before relaxing) + 0x40103ad0 mesh_nwk_duty_process_remaining + *fill* 0x40103d87 0x1 + .text.esp_mesh_root_process_duty_duration_expire + 0x40103d88 0x8a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0xaa (size before relaxing) + 0x40103d88 esp_mesh_root_process_duty_duration_expire + *fill* 0x40103e12 0x2 + .text.esp_mesh_ps_duty_cycle_get_process + 0x40103e14 0x151 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x185 (size before relaxing) + 0x40103e20 esp_mesh_ps_duty_cycle_get_process + *fill* 0x40103f65 0x3 + .text.mesh_is_new_root_found + 0x40103f68 0x122 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x19a (size before relaxing) + 0x40103f68 mesh_is_new_root_found + *fill* 0x4010408a 0x2 + .text.mesh_is_new_root_invalid + 0x4010408c 0x82 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x92 (size before relaxing) + 0x4010408c mesh_is_new_root_invalid + *fill* 0x4010410e 0x2 + .text.mesh_is_ie_ignored + 0x40104110 0x6b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x8b (size before relaxing) + 0x40104110 mesh_is_ie_ignored + *fill* 0x4010417b 0x1 + .text.esp_mesh_is_same_router + 0x4010417c 0x3d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x4d (size before relaxing) + 0x4010417c esp_mesh_is_same_router + *fill* 0x401041b9 0x3 + .text.esp_mesh_get_conflict_root_state + 0x401041bc 0x2a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x2e (size before relaxing) + 0x401041bc esp_mesh_get_conflict_root_state + *fill* 0x401041e6 0x2 + .text._mesh_check_roots_gone + 0x401041e8 0xc6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0xfe (size before relaxing) + 0x401041f0 _mesh_check_roots_gone + *fill* 0x401042ae 0x2 + .text._mesh_timer_process_announce + 0x401042b0 0xe0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x128 (size before relaxing) + 0x401042b0 _mesh_timer_process_announce + .text._mesh_timer_process_conflict_root + 0x40104390 0x123 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x13b (size before relaxing) + 0x401043a0 _mesh_timer_process_conflict_root + *fill* 0x401044b3 0x1 + .text.esp_mesh_remove_conflict_root + 0x401044b4 0x6e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x76 (size before relaxing) + 0x401044b4 esp_mesh_remove_conflict_root + *fill* 0x40104522 0x2 + .text._mesh_roots_process_yield + 0x40104524 0x121 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x161 (size before relaxing) + 0x4010452c _mesh_roots_process_yield + *fill* 0x40104645 0x3 + .text._mesh_roots_process_conflict_table + 0x40104648 0xd5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0xf5 (size before relaxing) + 0x40104648 _mesh_roots_process_conflict_table + *fill* 0x4010471d 0x3 + .text.esp_mesh_find_conflict_root + 0x40104720 0x3e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x46 (size before relaxing) + 0x40104720 esp_mesh_find_conflict_root + *fill* 0x4010475e 0x2 + .text.esp_mesh_update_conflict_root + 0x40104760 0xec /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0xf4 (size before relaxing) + 0x40104760 esp_mesh_update_conflict_root + .text.esp_mesh_add_conflict_root + 0x4010484c 0x1e3 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x207 (size before relaxing) + 0x40104860 esp_mesh_add_conflict_root + *fill* 0x40104a2f 0x1 + .text.mesh_is_new_found_conflict_root + 0x40104a30 0x41 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x51 (size before relaxing) + 0x40104a30 mesh_is_new_found_conflict_root + *fill* 0x40104a71 0x3 + .text.ieee80211_vnd_mesh_roots_set + 0x40104a74 0x47c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x53c (size before relaxing) + 0x40104a88 ieee80211_vnd_mesh_roots_set + .text._mesh_remove_gone + 0x40104ef0 0x5c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x64 (size before relaxing) + 0x40104ef0 _mesh_remove_gone + .text._mesh_roots_process_gone + 0x40104f4c 0x158 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x190 (size before relaxing) + 0x40104f4c _mesh_roots_process_gone + .text._mesh_roots_process_stop + 0x401050a4 0xe0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x120 (size before relaxing) + 0x401050a8 _mesh_roots_process_stop + .text.mesh_process_roots_ie_ttl + 0x40105184 0x9a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0xb6 (size before relaxing) + 0x4010518c mesh_process_roots_ie_ttl + *fill* 0x4010521e 0x2 + .text._mesh_timer_process_yield + 0x40105220 0x1cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x22f (size before relaxing) + 0x40105244 _mesh_timer_process_yield + *fill* 0x401053eb 0x1 + .text.mesh_root_process_roots_ie + 0x401053ec 0x2ae /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x34e (size before relaxing) + 0x40105414 mesh_root_process_roots_ie + *fill* 0x4010569a 0x2 + .text.mesh_process_roots_ie + 0x4010569c 0x320 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x39c (size before relaxing) + 0x401056ac mesh_process_roots_ie + .text.mesh_parse_conflict_roots_ie + 0x401059bc 0x400 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x450 (size before relaxing) + 0x401059f8 mesh_parse_conflict_roots_ie + .text.esp_mesh_parse_conflict_roots_ie + 0x40105dbc 0x46 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x62 (size before relaxing) + 0x40105dbc esp_mesh_parse_conflict_roots_ie + *fill* 0x40105e02 0x2 + .text.mesh_check_conflict_beacon + 0x40105e04 0xab /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0xdf (size before relaxing) + 0x40105e04 mesh_check_conflict_beacon + *fill* 0x40105eaf 0x1 + .text.esp_mesh_parse_conflict_assoc_ie + 0x40105eb0 0x3f4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x4c0 (size before relaxing) + 0x40105ed8 esp_mesh_parse_conflict_assoc_ie + .text.mesh_set_parent_candidate + 0x401062a4 0xd4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0xf8 (size before relaxing) + 0x401062a8 mesh_set_parent_candidate + .text.mesh_clear_parent_candidate + 0x40106378 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x1d (size before relaxing) + 0x40106378 mesh_clear_parent_candidate + *fill* 0x4010638d 0x3 + .text.mesh_post_parent_switch_candidate + 0x40106390 0x31f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x35b (size before relaxing) + 0x401063ac mesh_post_parent_switch_candidate + *fill* 0x401066af 0x1 + .text.mesh_post_parent_weak_rssi + 0x401066b0 0x1a3 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x1c3 (size before relaxing) + 0x401066c0 mesh_post_parent_weak_rssi + *fill* 0x40106853 0x1 + .text.mesh_post_parent_assoc_ie + 0x40106854 0xca /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0xea (size before relaxing) + 0x40106854 mesh_post_parent_assoc_ie + *fill* 0x4010691e 0x2 + .text.esp_mesh_monitor_parent_candidate_ie + 0x40106920 0x21f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x24f (size before relaxing) + 0x40106930 esp_mesh_monitor_parent_candidate_ie + *fill* 0x40106b3f 0x1 + .text.mesh_set_parent_monitor_config + 0x40106b40 0x77 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x87 (size before relaxing) + 0x40106b44 mesh_set_parent_monitor_config + *fill* 0x40106bb7 0x1 + .text.mesh_get_sub_ie + 0x40106bb8 0x8d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x99 (size before relaxing) + 0x40106bbc mesh_get_sub_ie + *fill* 0x40106c45 0x3 + .text._mesh_set_flag_roots_found + 0x40106c48 0xb2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0xde (size before relaxing) + 0x40106c48 _mesh_set_flag_roots_found + *fill* 0x40106cfa 0x2 + .text.esp_mesh_get_vnd_roots_len + 0x40106cfc 0x226 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x2ba (size before relaxing) + 0x40106d28 esp_mesh_get_vnd_roots_len + *fill* 0x40106f22 0x2 + .text.esp_mesh_monitor_parent_ie + 0x40106f24 0x3da /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x48a (size before relaxing) + 0x40106f34 esp_mesh_monitor_parent_ie + *fill* 0x401072fe 0x2 + .text.esp_mesh_map_probe_response + 0x40107300 0xdd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x121 (size before relaxing) + 0x40107300 esp_mesh_map_probe_response + *fill* 0x401073dd 0x3 + .text.esp_mesh_monitor_vote_candidate_rssi + 0x401073e0 0xd8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x110 (size before relaxing) + 0x401073e0 esp_mesh_monitor_vote_candidate_rssi + .text.esp_mesh_parse_beacon + 0x401074b8 0xee /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x14a (size before relaxing) + 0x401074b8 esp_mesh_parse_beacon + *fill* 0x401075a6 0x2 + .text.mesh_set_rssi_threshold + 0x401075a8 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x22 (size before relaxing) + 0x401075a8 mesh_set_rssi_threshold + *fill* 0x401075c2 0x2 + .text.mesh_get_rssi_threshold + 0x401075c4 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x22 (size before relaxing) + 0x401075c4 mesh_get_rssi_threshold + *fill* 0x401075de 0x2 + .text.esp_mesh_quick_funcs_init + 0x401075e0 0x1ad /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x40107690 esp_mesh_quick_funcs_init + *fill* 0x4010778d 0x3 + .text.mesh_init_cb + 0x40107790 0x73 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0xab (size before relaxing) + 0x40107790 mesh_init_cb + *fill* 0x40107803 0x1 + .text.esp_mesh_quick_funcs_deinit + 0x40107804 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x1b (size before relaxing) + 0x40107804 esp_mesh_quick_funcs_deinit + *fill* 0x40107817 0x1 + .text.mesh_deinit_cb + 0x40107818 0x24 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x37 (size before relaxing) + 0x4010781c mesh_deinit_cb + *fill* 0x4010783c 0x0 + .text.mesh_rt_change_timeout + 0x4010783c 0x48 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + 0x5c (size before relaxing) + 0x40107840 mesh_rt_change_timeout + .text.esp_mesh_route_init + 0x40107884 0x59 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + 0x65 (size before relaxing) + 0x40107894 esp_mesh_route_init + *fill* 0x401078dd 0x3 + .text.esp_mesh_route_deinit + 0x401078e0 0x94 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + 0xac (size before relaxing) + 0x401078e4 esp_mesh_route_deinit + .text.mesh_rt_change_timer_start + 0x40107974 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + 0x24 (size before relaxing) + 0x40107978 mesh_rt_change_timer_start + .text.mesh_rt_change_timeout_process + 0x40107990 0x3f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + 0x57 (size before relaxing) + 0x40107990 mesh_rt_change_timeout_process + *fill* 0x401079cf 0x1 + .text.esp_mesh_match_self + 0x401079d0 0x48 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + 0x5c (size before relaxing) + 0x401079d4 esp_mesh_match_self + .text.esp_mesh_get_total_children_num + 0x40107a18 0x61 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + 0x7d (size before relaxing) + 0x40107a1c esp_mesh_get_total_children_num + *fill* 0x40107a79 0x3 + .text.esp_mesh_lookup_sub_route + 0x40107a7c 0xb0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + 0xc4 (size before relaxing) + 0x40107a7c esp_mesh_lookup_sub_route + .text.esp_mesh_lookup_route + 0x40107b2c 0x126 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + 0x14a (size before relaxing) + 0x40107b38 esp_mesh_lookup_route + *fill* 0x40107c52 0x2 + .text.mesh_update_route_table + 0x40107c54 0x3ab /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + 0x3ff (size before relaxing) + 0x40107c68 mesh_update_route_table + *fill* 0x40107fff 0x1 + .text.esp_mesh_delete_sub_children + 0x40108000 0x59 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + 0x68 (size before relaxing) + 0x40108000 esp_mesh_delete_sub_children + *fill* 0x40108059 0x3 + .text.esp_mesh_send_add_announcement + 0x4010805c 0xc9 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + 0xed (size before relaxing) + 0x4010805c esp_mesh_send_add_announcement + *fill* 0x40108125 0x3 + .text.mesh_fill_rmv_sub_child + 0x40108128 0x370 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + 0x39c (size before relaxing) + 0x40108138 mesh_fill_rmv_sub_child + .text.mesh_malloc_rmv_announcement + 0x40108498 0xa4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + 0xbc (size before relaxing) + 0x401084a8 mesh_malloc_rmv_announcement + .text.mesh_construct_rmv_announcement + 0x4010853c 0xa0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + 0xc0 (size before relaxing) + 0x4010853c mesh_construct_rmv_announcement + .text.mesh_pack_rmv_announcement + 0x401085dc 0xb5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + 0xcd (size before relaxing) + 0x401085e0 mesh_pack_rmv_announcement + *fill* 0x40108691 0x3 + .text.esp_mesh_pack_rmv_announcement + 0x40108694 0x10a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + 0x136 (size before relaxing) + 0x40108694 esp_mesh_pack_rmv_announcement + *fill* 0x4010879e 0x2 + .text.esp_mesh_pack_multi_routing_table + 0x401087a0 0x4b7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + 0x4fb (size before relaxing) + 0x401087a8 esp_mesh_pack_multi_routing_table + *fill* 0x40108c57 0x1 + .text.esp_mesh_ie_update_capacity + 0x40108c58 0x158 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + 0x184 (size before relaxing) + 0x40108c58 esp_mesh_ie_update_capacity + .text.esp_mesh_check_nonassociated_children + 0x40108db0 0x6c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + 0x84 (size before relaxing) + 0x40108db0 esp_mesh_check_nonassociated_children + .text.esp_mesh_monitor_nonassociated_children + 0x40108e1c 0x29d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + 0x2ed (size before relaxing) + 0x40108e28 esp_mesh_monitor_nonassociated_children + *fill* 0x401090b9 0x3 + .text.esp_mesh_remove_nonassociated_children + 0x401090bc 0x18a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + 0x1c6 (size before relaxing) + 0x401090c4 esp_mesh_remove_nonassociated_children + *fill* 0x40109246 0x2 + .text.esp_mesh_copy_mgmt_announce + 0x40109248 0x29b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + 0x2df (size before relaxing) + 0x40109254 esp_mesh_copy_mgmt_announce + *fill* 0x401094e3 0x1 + .text.esp_mesh_process_redundant_subchildren + 0x401094e4 0x359 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + 0x3bd (size before relaxing) + 0x401094f8 esp_mesh_process_redundant_subchildren + *fill* 0x4010983d 0x3 + .text.esp_mesh_combine_multi_redundant_ack + 0x40109840 0x270 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + 0x2ac (size before relaxing) + 0x40109854 esp_mesh_combine_multi_redundant_ack + .text.esp_mesh_check_multi_redundant_ack + 0x40109ab0 0x291 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + 0x2b1 (size before relaxing) + 0x40109abc esp_mesh_check_multi_redundant_ack + *fill* 0x40109d41 0x3 + .text.esp_mesh_refresh_routing_table + 0x40109d44 0x63b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + 0x6fa (size before relaxing) + 0x40109d58 esp_mesh_refresh_routing_table + *fill* 0x4010a37f 0x1 + .text.esp_mesh_get_routing_table_size + 0x4010a380 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + 0x20 (size before relaxing) + 0x4010a380 esp_mesh_get_routing_table_size + .text.esp_mesh_get_routing_table + 0x4010a398 0x16e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + 0x1ba (size before relaxing) + 0x4010a3a0 esp_mesh_get_routing_table + *fill* 0x4010a506 0x2 + .text.mesh_get_subnet_nodes_num + 0x4010a508 0x9c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + 0xc0 (size before relaxing) + 0x4010a508 mesh_get_subnet_nodes_num + .text.mesh_get_subnet_nodes_list + 0x4010a5a4 0xd2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + 0xfe (size before relaxing) + 0x4010a5a4 mesh_get_subnet_nodes_list + *fill* 0x4010a676 0x2 + .text.esp_mesh_send_rtable_request + 0x4010a678 0x6a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + 0x8e (size before relaxing) + 0x4010a678 esp_mesh_send_rtable_request + *fill* 0x4010a6e2 0x2 + .text.esp_mesh_send_rtable_ack + 0x4010a6e4 0x1be /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + 0x20a (size before relaxing) + 0x4010a6ec esp_mesh_send_rtable_ack + *fill* 0x4010a8a2 0x2 + .text.esp_mesh_nwk_redundant_route + 0x4010a8a4 0x16e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + 0x1ba (size before relaxing) + 0x4010a8ac esp_mesh_nwk_redundant_route + *fill* 0x4010aa12 0x2 + .text.mesh_print_txQ_waiting + 0x4010aa14 0x132 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x13e (size before relaxing) + 0x4010aa24 mesh_print_txQ_waiting + *fill* 0x4010ab46 0x2 + .text.esp_mesh_print_txQ_waiting + 0x4010ab48 0x57 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x72 (size before relaxing) + 0x4010ab50 esp_mesh_print_txQ_waiting + *fill* 0x4010ab9f 0x1 + .text.mesh_get_tx_pending + 0x4010aba0 0x19d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x1b1 (size before relaxing) + 0x4010aba8 mesh_get_tx_pending + *fill* 0x4010ad3d 0x3 + .text.esp_mesh_send_block_event + 0x4010ad40 0x19c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x1c8 (size before relaxing) + 0x4010ad5c esp_mesh_send_block_event + .text.esp_mesh_send_block_start + 0x4010aedc 0x170 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x1b0 (size before relaxing) + 0x4010aee0 esp_mesh_send_block_start + .text.esp_mesh_forward_check_active + 0x4010b04c 0x2f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x3b (size before relaxing) + 0x4010b04c esp_mesh_forward_check_active + *fill* 0x4010b07b 0x1 + .text.mesh_check_tid_mbox_full + 0x4010b07c 0x1ac /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x1d4 (size before relaxing) + 0x4010b090 mesh_check_tid_mbox_full + .text.esp_mesh_push_to_ack_state_queue + 0x4010b228 0x90 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0xac (size before relaxing) + 0x4010b22c esp_mesh_push_to_ack_state_queue + .text.mesh_tx_cb + 0x4010b2b8 0xd3 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x10b (size before relaxing) + 0x4010b2bc mesh_tx_cb + *fill* 0x4010b38b 0x1 + .text.esp_mesh_best_effort_tx + 0x4010b38c 0x2c7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x323 (size before relaxing) + 0x4010b398 esp_mesh_best_effort_tx + *fill* 0x4010b653 0x1 + .text.esp_mesh_push_to_wnd_queue + 0x4010b654 0xe6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x102 (size before relaxing) + 0x4010b65c esp_mesh_push_to_wnd_queue + *fill* 0x4010b73a 0x2 + .text.esp_mesh_operation_rxseqno + 0x4010b73c 0x37c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x3c8 (size before relaxing) + 0x4010b74c esp_mesh_operation_rxseqno + .text.esp_mesh_txupQ_pending_get_cidx + 0x4010bab8 0x60 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x70 (size before relaxing) + 0x4010bab8 esp_mesh_txupQ_pending_get_cidx + .text.esp_mesh_txupQ_pending_insert_child + 0x4010bb18 0x74 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x94 (size before relaxing) + 0x4010bb18 esp_mesh_txupQ_pending_insert_child + .text.esp_mesh_txupQ_pending_delete_child + 0x4010bb8c 0x32 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x3a (size before relaxing) + 0x4010bb8c esp_mesh_txupQ_pending_delete_child + *fill* 0x4010bbbe 0x2 + .text.esp_mesh_txupQ_pending_get_xonseq + 0x4010bbc0 0x48 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x50 (size before relaxing) + 0x4010bbc0 esp_mesh_txupQ_pending_get_xonseq + .text.esp_mesh_txupQ_pending_clear_xonseq + 0x4010bc08 0x42 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x5e (size before relaxing) + 0x4010bc0c esp_mesh_txupQ_pending_clear_xonseq + *fill* 0x4010bc4a 0x2 + .text.esp_mesh_txupQ_pending + 0x4010bc4c 0xbaa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0xc86 (size before relaxing) + 0x4010bc8c esp_mesh_txupQ_pending + *fill* 0x4010c7f6 0x2 + .text.esp_mesh_process_txupQ_pending + 0x4010c7f8 0x230 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x270 (size before relaxing) + 0x4010c80c esp_mesh_process_txupQ_pending + .text.esp_mesh_push_to_tx_queue + 0x4010ca28 0x4bd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x535 (size before relaxing) + 0x4010ca3c esp_mesh_push_to_tx_queue + *fill* 0x4010cee5 0x3 + .text.esp_mesh_force_txupQ_pending + 0x4010cee8 0x11a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x146 (size before relaxing) + 0x4010cef8 esp_mesh_force_txupQ_pending + *fill* 0x4010d002 0x2 + .text.esp_mesh_available_txupQ_num + 0x4010d004 0x16c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x1d0 (size before relaxing) + 0x4010d00c esp_mesh_available_txupQ_num + .text.mesh_flush_txQ + 0x4010d170 0x104 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x130 (size before relaxing) + 0x4010d174 mesh_flush_txQ + .text.esp_mesh_tx_tid_flush + 0x4010d274 0x199 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x1e5 (size before relaxing) + 0x4010d284 esp_mesh_tx_tid_flush + *fill* 0x4010d40d 0x3 + .text.mesh_tx_tid_stop + 0x4010d410 0x184 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x1c8 (size before relaxing) + 0x4010d418 mesh_tx_tid_stop + .text.esp_mesh_push_to_ps_tx_queue + 0x4010d594 0x71 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x7d (size before relaxing) + 0x4010d594 esp_mesh_push_to_ps_tx_queue + *fill* 0x4010d605 0x3 + .text.mesh_ps_tx + 0x4010d608 0x118 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x138 (size before relaxing) + 0x4010d610 mesh_ps_tx + .text.tx_task_main + 0x4010d720 0x210 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x240 (size before relaxing) + 0x4010d73c tx_task_main + .text.esp_mesh_discard_context + 0x4010d930 0x12b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x16a (size before relaxing) + 0x4010d944 esp_mesh_discard_context + *fill* 0x4010da5b 0x1 + .text.esp_mesh_send_xon + 0x4010da5c 0x635 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x6e5 (size before relaxing) + 0x4010da84 esp_mesh_send_xon + *fill* 0x4010e091 0x3 + .text.esp_mesh_recv_xon + 0x4010e094 0x11b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x14f (size before relaxing) + 0x4010e094 esp_mesh_recv_xon + *fill* 0x4010e1af 0x1 + .text.mesh_tx_task_main + 0x4010e1b0 0x8be /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x9a2 (size before relaxing) + 0x4010e218 mesh_tx_task_main + *fill* 0x4010ea6e 0x2 + .text.mesh_xon_deliver_packet + 0x4010ea70 0x180 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x1c0 (size before relaxing) + 0x4010ea94 mesh_xon_deliver_packet + .text.mesh_xon_flush_packets + 0x4010ebf0 0x1e6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x23d (size before relaxing) + 0x4010ec08 mesh_xon_flush_packets + *fill* 0x4010edd6 0x2 + .text.mesh_xon_process_disconnected + 0x4010edd8 0x2a5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x309 (size before relaxing) + 0x4010ee0c mesh_xon_process_disconnected + *fill* 0x4010f07d 0x3 + .text.mesh_xon_process_expired + 0x4010f080 0x115 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x131 (size before relaxing) + 0x4010f088 mesh_xon_process_expired + *fill* 0x4010f195 0x3 + .text.xon_task_main + 0x4010f198 0x179 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x1b5 (size before relaxing) + 0x4010f1a4 xon_task_main + *fill* 0x4010f311 0x3 + .text.mesh_xon_process_no_wnd + 0x4010f314 0xe8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0xf0 (size before relaxing) + 0x4010f314 mesh_xon_process_no_wnd + .text.mesh_xon_task_main + 0x4010f3fc 0x973 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0xa8f (size before relaxing) + 0x4010f48c mesh_xon_task_main + *fill* 0x4010fd6f 0x1 + .text.mesh_tx_task_deinit + 0x4010fd70 0x192 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x1da (size before relaxing) + 0x4010fd7c mesh_tx_task_deinit + *fill* 0x4010ff02 0x2 + .text.esp_mesh_tx_task_init + 0x4010ff04 0x1e2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x252 (size before relaxing) + 0x4010ff2c esp_mesh_tx_task_init + *fill* 0x401100e6 0x2 + .text.esp_mesh_tx_task_deinit + 0x401100e8 0x88 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0xa4 (size before relaxing) + 0x401100e8 esp_mesh_tx_task_deinit + .text.esp_mesh_send_block_deinit + 0x40110170 0xae /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0xc2 (size before relaxing) + 0x40110180 esp_mesh_send_block_deinit + *fill* 0x4011021e 0x2 + .text.mesh_send_block_deinit + 0x40110220 0x79 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x91 (size before relaxing) + 0x4011022c mesh_send_block_deinit + *fill* 0x40110299 0x3 + .text.mesh_send_block_main + 0x4011029c 0x41e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x4b2 (size before relaxing) + 0x401102bc mesh_send_block_main + *fill* 0x401106ba 0x2 + .text.esp_mesh_send_block_init + 0x401106bc 0x50 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x70 (size before relaxing) + 0x401106c4 esp_mesh_send_block_init + .text.esp_mesh_flush_upstream_packets + 0x4011070c 0x15e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + 0x182 (size before relaxing) + 0x40110720 esp_mesh_flush_upstream_packets + *fill* 0x4011086a 0x2 + .text.mesh_pm_tbtt_start + 0x4011086c 0x50 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + 0x5c (size before relaxing) + 0x40110874 mesh_pm_tbtt_start + .text.esp_mesh_pm_tbtt_timeout_process + 0x401108bc 0x19f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + 0x1fb (size before relaxing) + 0x401108e4 esp_mesh_pm_tbtt_timeout_process + *fill* 0x40110a5b 0x1 + .text.esp_mesh_pm_rx_beacon_process + 0x40110a5c 0x12c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + 0x188 (size before relaxing) + 0x40110a64 esp_mesh_pm_rx_beacon_process + .text.esp_mesh_pm_tx_data_process + 0x40110b88 0x2d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + 0x31 (size before relaxing) + 0x40110b8c esp_mesh_pm_tx_data_process + *fill* 0x40110bb5 0x3 + .text.esp_mesh_pm_tx_null_process + 0x40110bb8 0x4e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + 0x5d (size before relaxing) + 0x40110bb8 esp_mesh_pm_tx_null_process + *fill* 0x40110c06 0x2 + .text.esp_mesh_pm_go_to_sleep + 0x40110c08 0x38 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + 0x3c (size before relaxing) + 0x40110c08 esp_mesh_pm_go_to_sleep + .text.esp_mesh_pm_go_to_wake + 0x40110c40 0x38 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + 0x3c (size before relaxing) + 0x40110c40 esp_mesh_pm_go_to_wake + .text.esp_mesh_is_start_pm_now + 0x40110c78 0x47 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + 0x57 (size before relaxing) + 0x40110c7c esp_mesh_is_start_pm_now + *fill* 0x40110cbf 0x1 + .text.mesh_timer_route_announce + 0x40110cc0 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + 0xf (size before relaxing) + 0x40110cc0 mesh_timer_route_announce + *fill* 0x40110cc8 0x0 + .text.mesh_timer_mie_monitor + 0x40110cc8 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + 0xf (size before relaxing) + 0x40110cc8 mesh_timer_mie_monitor + *fill* 0x40110cd0 0x0 + .text.mesh_timer_bcn_change + 0x40110cd0 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + 0xf (size before relaxing) + 0x40110cd0 mesh_timer_bcn_change + *fill* 0x40110cd8 0x0 + .text.mesh_timer_root_connect + 0x40110cd8 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + 0xf (size before relaxing) + 0x40110cd8 mesh_timer_root_connect + *fill* 0x40110ce0 0x0 + .text.mesh_timer_candidate_monitor + 0x40110ce0 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + 0xf (size before relaxing) + 0x40110ce0 mesh_timer_candidate_monitor + *fill* 0x40110ce8 0x0 + .text.mesh_timer_rt_change + 0x40110ce8 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + 0xf (size before relaxing) + 0x40110ce8 mesh_timer_rt_change + *fill* 0x40110cf0 0x0 + .text.mesh_timer_ps_control + 0x40110cf0 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + 0xf (size before relaxing) + 0x40110cf0 mesh_timer_ps_control + *fill* 0x40110cf8 0x0 + .text.mesh_timer_do_process + 0x40110cf8 0xd8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + 0xe8 (size before relaxing) + 0x40110d10 mesh_timer_do_process + .text.mesh_mutex_lock + 0x40110dd0 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + 0x18 (size before relaxing) + 0x40110dd0 mesh_mutex_lock + .text.mesh_mutex_unlock + 0x40110de4 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + 0x18 (size before relaxing) + 0x40110de4 mesh_mutex_unlock + .text.esp_mesh_create_mbox + 0x40110df8 0x98 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + 0xa4 (size before relaxing) + 0x40110e04 esp_mesh_create_mbox + .text.esp_mesh_free_mbox + 0x40110e90 0x7b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + 0x93 (size before relaxing) + 0x40110e90 esp_mesh_free_mbox + *fill* 0x40110f0b 0x1 + .text.mesh_malloc + 0x40110f0c 0x22 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + 0x2a (size before relaxing) + 0x40110f0c mesh_malloc + *fill* 0x40110f2e 0x2 + .text.mesh_free + 0x40110f30 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + 0x18 (size before relaxing) + 0x40110f30 mesh_free + .text.esp_mesh_create_context + 0x40110f44 0x50 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + 0x68 (size before relaxing) + 0x40110f48 esp_mesh_create_context + .text.esp_mesh_free_context + 0x40110f94 0x6c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + 0x8c (size before relaxing) + 0x40110f98 esp_mesh_free_context + .text.wifi_event_id2str + 0x40111000 0x144 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + 0x148 (size before relaxing) + 0x40111084 wifi_event_id2str + .text.nwk_event_id2str + 0x40111144 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + 0x4011114c nwk_event_id2str + *fill* 0x40111163 0x1 + .text.tx_msg_id2str + 0x40111164 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + 0x4011116c tx_msg_id2str + .text.tx_state_id2str + 0x40111184 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + 0x4011118c tx_state_id2str + *fill* 0x401111a3 0x1 + .text.discnx_reason_id2str + 0x401111a4 0x16c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + 0x170 (size before relaxing) + 0x40111204 discnx_reason_id2str + .text.mesh_ie_type2str + 0x40111310 0x3a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + 0x46 (size before relaxing) + 0x4011131c mesh_ie_type2str + *fill* 0x4011134a 0x2 + .text.scan_status2str + 0x4011134c 0x42 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + 0x46 (size before relaxing) + 0x40111360 scan_status2str + *fill* 0x4011138e 0x2 + .text.vote_done2str + 0x40111390 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + 0x40111398 vote_done2str + *fill* 0x401113ae 0x2 + .text.vote_start2str + 0x401113b0 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + 0x1e (size before relaxing) + 0x401113b4 vote_start2str + *fill* 0x401113ca 0x2 + .text.txq_opr2str + 0x401113cc 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + 0x1e (size before relaxing) + 0x401113d0 txq_opr2str + *fill* 0x401113e6 0x2 + .text.io_cfg2str + 0x401113e8 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + 0x1f (size before relaxing) + 0x401113ec io_cfg2str + *fill* 0x40111403 0x1 + .text.opt_type2str + 0x40111404 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + 0x1f (size before relaxing) + 0x40111408 opt_type2str + *fill* 0x4011141f 0x1 + .text.reconnect_type2str + 0x40111420 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + 0x1e (size before relaxing) + 0x40111424 reconnect_type2str + *fill* 0x4011143a 0x2 + .text.dutytype2str + 0x4011143c 0x97 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + 0x9b (size before relaxing) + 0x40111468 dutytype2str + *fill* 0x401114d3 0x1 + .text.esp_mesh_push_to_rx_queue + 0x401114d4 0xb6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + 0xca (size before relaxing) + 0x401114e4 esp_mesh_push_to_rx_queue + *fill* 0x4011158a 0x2 + .text.mesh_topo_get_ttl + 0x4011158c 0xae /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + 0xc2 (size before relaxing) + 0x40111594 mesh_topo_get_ttl + *fill* 0x4011163a 0x2 + .text.esp_mesh_wifi_recv_cb + 0x4011163c 0x6b8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + 0x748 (size before relaxing) + 0x40111678 esp_mesh_wifi_recv_cb + .text.esp_mesh_rx_task_deinit + 0x40111cf4 0x38 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + 0x48 (size before relaxing) + 0x40111cf8 esp_mesh_rx_task_deinit + .text.mesh_rx_task_deinit + 0x40111d2c 0x81 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + 0x95 (size before relaxing) + 0x40111d34 mesh_rx_task_deinit + *fill* 0x40111dad 0x3 + .text.mesh_rx_task_main + 0x40111db0 0x1f0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + 0x230 (size before relaxing) + 0x40111dc4 mesh_rx_task_main + .text.esp_mesh_rx_task_init + 0x40111fa0 0x5c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + 0x88 (size before relaxing) + 0x40111fac esp_mesh_rx_task_init + .text.esp_mesh_ap_list_clear + 0x40111ffc 0xaa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + 0xce (size before relaxing) + 0x4011200c esp_mesh_ap_list_clear + *fill* 0x401120a6 0x2 + .text.esp_mesh_ap_list_find_expire + 0x401120a8 0x4e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + 0x52 (size before relaxing) + 0x401120a8 esp_mesh_ap_list_find_expire + *fill* 0x401120f6 0x2 + .text.esp_mesh_ap_list_clear_expire + 0x401120f8 0xa2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + 0xbe (size before relaxing) + 0x401120f8 esp_mesh_ap_list_clear_expire + *fill* 0x4011219a 0x2 + .text.esp_mesh_ap_list_find_invalid + 0x4011219c 0xb6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + 0xba (size before relaxing) + 0x4011219c esp_mesh_ap_list_find_invalid + *fill* 0x40112252 0x2 + .text.esp_mesh_ap_list_update_invalid + 0x40112254 0x3e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + 0x42 (size before relaxing) + 0x40112254 esp_mesh_ap_list_update_invalid + *fill* 0x40112292 0x2 + .text.esp_mesh_ap_list_find + 0x40112294 0x88 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + 0x94 (size before relaxing) + 0x40112294 esp_mesh_ap_list_find + .text.esp_mesh_ap_enqueue + 0x4011231c 0x165 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + 0x1b9 (size before relaxing) + 0x40112320 esp_mesh_ap_enqueue + *fill* 0x40112481 0x3 + .text.esp_wifi_ap_get_sta_aid_local + 0x40112484 0x81 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x85 (size before relaxing) + 0x40112494 esp_wifi_ap_get_sta_aid_local + *fill* 0x40112505 0x3 + .text.esp_wifi_internal_reg_netstack_buf_cb_local + 0x40112508 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x16 (size before relaxing) + 0x40112508 esp_wifi_internal_reg_netstack_buf_cb_local + *fill* 0x40112516 0x2 + .text.esp_wifi_send_deauth_local + 0x40112518 0xd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x14 (size before relaxing) + 0x40112518 esp_wifi_send_deauth_local + *fill* 0x40112525 0x3 + .text.wifi_get_init_state + 0x40112528 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x4011252c wifi_get_init_state + *fill* 0x40112536 0x2 + .text.wifi_is_stop_in_progress + 0x40112538 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x4011253c wifi_is_stop_in_progress + *fill* 0x40112547 0x1 + .text.wifi_api_lock + 0x40112548 0x4e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x5a (size before relaxing) + 0x40112550 wifi_api_lock + *fill* 0x40112596 0x2 + .text.wifi_api_unlock + 0x40112598 0x21 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x2d (size before relaxing) + 0x40112598 wifi_api_unlock + *fill* 0x401125b9 0x3 + .text.wifi_init_completed + 0x401125bc 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x3a (size before relaxing) + 0x401125bc wifi_init_completed + *fill* 0x401125df 0x1 + .text.wifi_station_get_config_local$part$5 + 0x401125e0 0x1a3 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x1da (size before relaxing) + *fill* 0x40112783 0x1 + .text.wifi_softap_get_config + 0x40112784 0x19e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x1ee (size before relaxing) + 0x40112788 wifi_softap_get_config + *fill* 0x40112922 0x2 + .text.wifi_softap_deauth + 0x40112924 0x93 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0xc2 (size before relaxing) + 0x40112928 wifi_softap_deauth + *fill* 0x401129b7 0x1 + .text.wifi_check_chan_param + 0x401129b8 0x71 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x81 (size before relaxing) + 0x401129b8 wifi_check_chan_param + *fill* 0x40112a29 0x3 + .text.wifi_deinit_in_caller_task + 0x40112a2c 0x2d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x45 (size before relaxing) + 0x40112a30 wifi_deinit_in_caller_task + *fill* 0x40112a59 0x3 + .text.wifi_init_in_caller_task + 0x40112a5c 0x81 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0xb4 (size before relaxing) + 0x40112a60 wifi_init_in_caller_task + *fill* 0x40112add 0x3 + .text.wifi_osi_funcs_register + 0x40112ae0 0x55 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x65 (size before relaxing) + 0x40112af0 wifi_osi_funcs_register + *fill* 0x40112b35 0x3 + .text.net80211_softap_funcs_init + 0x40112b38 0x56 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x5a (size before relaxing) + 0x40112b58 net80211_softap_funcs_init + *fill* 0x40112b8e 0x2 + .text.net80211_funcs_init + 0x40112b90 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x52 (size before relaxing) + 0x40112b94 net80211_funcs_init + *fill* 0x40112bcb 0x1 + .text.net80211_funcs_deinit + 0x40112bcc 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x28 (size before relaxing) + 0x40112bcc net80211_funcs_deinit + .text.esp_wifi_init_internal + 0x40112bec 0xfc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x17c (size before relaxing) + 0x40112c00 esp_wifi_init_internal + .text.esp_wifi_deinit_internal + 0x40112ce8 0xe0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x154 (size before relaxing) + 0x40112cfc esp_wifi_deinit_internal + .text.esp_wifi_set_mode + 0x40112dc8 0x40 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x54 (size before relaxing) + 0x40112dcc esp_wifi_set_mode + .text.esp_wifi_get_mode + 0x40112e08 0x2a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x46 (size before relaxing) + 0x40112e08 esp_wifi_get_mode + *fill* 0x40112e32 0x2 + .text.esp_wifi_start + 0x40112e34 0x38 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x50 (size before relaxing) + 0x40112e38 esp_wifi_start + .text.esp_wifi_stop + 0x40112e6c 0x197 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x1fe (size before relaxing) + 0x40112e94 esp_wifi_stop + *fill* 0x40113003 0x1 + .text.esp_wifi_connect + 0x40113004 0x48 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x68 (size before relaxing) + 0x40113008 esp_wifi_connect + .text.esp_wifi_disconnect + 0x4011304c 0x48 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x68 (size before relaxing) + 0x40113050 esp_wifi_disconnect + .text.esp_wifi_deauth_sta + 0x40113094 0x5c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x7c (size before relaxing) + 0x40113098 esp_wifi_deauth_sta + .text.get_total_scan_time + 0x401130f0 0xc6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0xe2 (size before relaxing) + 0x401130f0 get_total_scan_time + *fill* 0x401131b6 0x2 + .text.esp_wifi_scan_start + 0x401131b8 0x15c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x1a0 (size before relaxing) + 0x401131cc esp_wifi_scan_start + .text.esp_wifi_scan_stop + 0x40113314 0x48 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x68 (size before relaxing) + 0x40113318 esp_wifi_scan_stop + .text.esp_wifi_scan_get_ap_num + 0x4011335c 0x4e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x7a (size before relaxing) + 0x40113360 esp_wifi_scan_get_ap_num + *fill* 0x401133aa 0x2 + .text.esp_wifi_set_config + 0x401133ac 0x72 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x8a (size before relaxing) + 0x401133b4 esp_wifi_set_config + *fill* 0x4011341e 0x2 + .text.esp_wifi_get_config + 0x40113420 0x38 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x50 (size before relaxing) + 0x40113420 esp_wifi_get_config + .text.esp_wifi_ap_get_sta_list + 0x40113458 0x56 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x6a (size before relaxing) + 0x4011345c esp_wifi_ap_get_sta_list + *fill* 0x401134ae 0x2 + .text.esp_wifi_set_ps + 0x401134b0 0x44 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x58 (size before relaxing) + 0x401134b4 esp_wifi_set_ps + .text.esp_wifi_get_ps + 0x401134f4 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x30 (size before relaxing) + 0x401134f4 esp_wifi_get_ps + .text.esp_wifi_set_country + 0x40113514 0x4e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x66 (size before relaxing) + 0x40113518 esp_wifi_set_country + *fill* 0x40113562 0x2 + .text.esp_wifi_get_mac + 0x40113564 0x2c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x50 (size before relaxing) + 0x40113564 esp_wifi_get_mac + .text.esp_wifi_set_storage + 0x40113590 0x40 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x58 (size before relaxing) + 0x40113590 esp_wifi_set_storage + .text.esp_wifi_internal_reg_rxcb + 0x401135d0 0x52 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x6a (size before relaxing) + 0x401135d4 esp_wifi_internal_reg_rxcb + *fill* 0x40113622 0x2 + .text.esp_wifi_internal_set_sta_ip + 0x40113624 0x2d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x41 (size before relaxing) + 0x40113624 esp_wifi_internal_set_sta_ip + *fill* 0x40113651 0x3 + .text.wifi_event_post + 0x40113654 0x3f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x4b (size before relaxing) + 0x4011365c wifi_event_post + *fill* 0x40113693 0x1 + .text.wifi_mesh_event_post + 0x40113694 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x4b (size before relaxing) + 0x40113698 wifi_mesh_event_post + *fill* 0x401136cf 0x1 + .text.esp_wifi_vnd_lora_enable + 0x401136d0 0xae /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0xc6 (size before relaxing) + 0x401136d0 esp_wifi_vnd_lora_enable + *fill* 0x4011377e 0x2 + .text.esp_wifi_vnd_lora_disable + 0x40113780 0x45 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x51 (size before relaxing) + 0x40113780 esp_wifi_vnd_lora_disable + *fill* 0x401137c5 0x3 + .text.esp_wifi_get_event_mask + 0x401137c8 0x27 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x2f (size before relaxing) + 0x401137cc esp_wifi_get_event_mask + *fill* 0x401137ef 0x1 + .text.esp_wifi_ipc_internal + 0x401137f0 0x126 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x146 (size before relaxing) + 0x401137f8 esp_wifi_ipc_internal + *fill* 0x40113916 0x2 + .text.esp_wifi_internal_set_log_level + 0x40113918 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x1b (size before relaxing) + 0x40113918 esp_wifi_internal_set_log_level + *fill* 0x4011392f 0x1 + .text.esp_wifi_internal_on_coex_start + 0x40113930 0x37 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x4f (size before relaxing) + 0x40113934 esp_wifi_internal_on_coex_start + *fill* 0x40113967 0x1 + .text.esp_wifi_internal_on_coex_schm_phase + 0x40113968 0x37 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x4f (size before relaxing) + 0x4011396c esp_wifi_internal_on_coex_schm_phase + *fill* 0x4011399f 0x1 + .text.esp_wifi_set_sleep_min_active_time + 0x401139a0 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x12 (size before relaxing) + 0x401139a0 esp_wifi_set_sleep_min_active_time + *fill* 0x401139aa 0x2 + .text.esp_wifi_set_keep_alive_time + 0x401139ac 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x12 (size before relaxing) + 0x401139ac esp_wifi_set_keep_alive_time + *fill* 0x401139b6 0x2 + .text.esp_wifi_set_sleep_wait_broadcast_data_time + 0x401139b8 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x12 (size before relaxing) + 0x401139b8 esp_wifi_set_sleep_wait_broadcast_data_time + *fill* 0x401139c2 0x2 + .text.esp_wifi_internal_reg_netstack_buf_cb + 0x401139c4 0x29 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x2d (size before relaxing) + 0x401139c8 esp_wifi_internal_reg_netstack_buf_cb + *fill* 0x401139ed 0x3 + .text.esp_wifi_internal_issue_disconnect + 0x401139f0 0x2c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x30 (size before relaxing) + 0x401139f4 esp_wifi_internal_issue_disconnect + .text.esp_wifi_ap_get_sta_aid + 0x40113a1c 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x43 (size before relaxing) + 0x40113a20 esp_wifi_ap_get_sta_aid + *fill* 0x40113a57 0x1 + .text.esp_wifi_mesh_reg_rxcb + 0x40113a58 0x2c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x34 (size before relaxing) + 0x40113a5c esp_wifi_mesh_reg_rxcb + .text.esp_mesh_set_ap_assoc_expire + 0x40113a84 0x60 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x7c (size before relaxing) + 0x40113a88 esp_mesh_set_ap_assoc_expire + .text.esp_mesh_get_ap_assoc_expire + 0x40113ae4 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x40113ae8 esp_mesh_get_ap_assoc_expire + *fill* 0x40113af2 0x2 + .text.esp_mesh_set_router_bssid + 0x40113af4 0x52 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x66 (size before relaxing) + 0x40113af8 esp_mesh_set_router_bssid + *fill* 0x40113b46 0x2 + .text.esp_mesh_get_router_bssid + 0x40113b48 0x52 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x66 (size before relaxing) + 0x40113b4c esp_mesh_get_router_bssid + *fill* 0x40113b9a 0x2 + .text.esp_wifi_get_beacon_interval + 0x40113b9c 0x3c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x57 (size before relaxing) + 0x40113b9c esp_wifi_get_beacon_interval + *fill* 0x40113bd8 0x0 + .text.esp_wifi_set_beacon_interval + 0x40113bd8 0x7c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0xa0 (size before relaxing) + 0x40113be0 esp_wifi_set_beacon_interval + .text.esp_mesh_map_deauth + 0x40113c54 0x5a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x7a (size before relaxing) + 0x40113c58 esp_mesh_map_deauth + *fill* 0x40113cae 0x2 + .text.esp_mesh_sta_disassoc + 0x40113cb0 0x48 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x68 (size before relaxing) + 0x40113cb4 esp_mesh_sta_disassoc + .text.esp_wifi_scan_get_cur_ap_info + 0x40113cf8 0xce /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0xea (size before relaxing) + 0x40113cf8 esp_wifi_scan_get_cur_ap_info + *fill* 0x40113dc6 0x2 + .text.esp_wifi_scan_get_cur_ap_record + 0x40113dc8 0x148 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x180 (size before relaxing) + 0x40113dcc esp_wifi_scan_get_cur_ap_record + .text.esp_wifi_vnd_mesh_init + 0x40113f10 0x78 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x94 (size before relaxing) + 0x40113f14 esp_wifi_vnd_mesh_init + .text.esp_wifi_vnd_mesh_deinit + 0x40113f88 0x62 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x7e (size before relaxing) + 0x40113f8c esp_wifi_vnd_mesh_deinit + *fill* 0x40113fea 0x2 + .text.esp_wifi_vnd_mesh_set + 0x40113fec 0x6c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x88 (size before relaxing) + 0x40113ff0 esp_wifi_vnd_mesh_set + .text.esp_wifi_vnd_mesh_get + 0x40114058 0x88 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0xac (size before relaxing) + 0x4011405c esp_wifi_vnd_mesh_get + .text.esp_wifi_vnd_roots_set + 0x401140e0 0x62 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x7e (size before relaxing) + 0x401140e4 esp_wifi_vnd_roots_set + *fill* 0x40114142 0x2 + .text.esp_mesh_is_root_conflicts_allowed + 0x40114144 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x40114148 esp_mesh_is_root_conflicts_allowed + *fill* 0x40114153 0x1 + .text.esp_mesh_set_parent_monitor_config + 0x40114154 0x52 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x66 (size before relaxing) + 0x40114158 esp_mesh_set_parent_monitor_config + *fill* 0x401141a6 0x2 + .text.esp_mesh_set_ie_crypto_funcs_internal + 0x401141a8 0x5a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x7a (size before relaxing) + 0x401141ac esp_mesh_set_ie_crypto_funcs_internal + *fill* 0x40114202 0x2 + .text.esp_mesh_set_ie_crypto_key_internal + 0x40114204 0x62 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x7e (size before relaxing) + 0x40114208 esp_mesh_set_ie_crypto_key_internal + *fill* 0x40114266 0x2 + .text.esp_wifi_scan_sort_ap_records + 0x40114268 0x146 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x16a (size before relaxing) + 0x4011427c esp_wifi_scan_sort_ap_records + *fill* 0x401143ae 0x2 + .text.esp_wifi_scan_sort_get_cur_ap_info + 0x401143b0 0xe9 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x109 (size before relaxing) + 0x401143b4 esp_wifi_scan_sort_get_cur_ap_info + *fill* 0x40114499 0x3 + .text.esp_wifi_scan_sort_get_cur_ap_record + 0x4011449c 0x190 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x1d0 (size before relaxing) + 0x4011449c esp_wifi_scan_sort_get_cur_ap_record + .text.esp_mesh_set_parent_candidate + 0x4011462c 0x66 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x82 (size before relaxing) + 0x40114630 esp_mesh_set_parent_candidate + *fill* 0x40114692 0x2 + .text.esp_mesh_clear_parent_candidate + 0x40114694 0x30 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x38 (size before relaxing) + 0x40114698 esp_mesh_clear_parent_candidate + .text.esp_mesh_set_rssi_threshold_internal + 0x401146c4 0x5e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x7a (size before relaxing) + 0x401146c8 esp_mesh_set_rssi_threshold_internal + *fill* 0x40114722 0x2 + .text.esp_mesh_get_rssi_threshold_internal + 0x40114724 0x5e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x7a (size before relaxing) + 0x40114728 esp_mesh_get_rssi_threshold_internal + *fill* 0x40114782 0x2 + .text.esp_mesh_is_roots_found + 0x40114784 0x49 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x55 (size before relaxing) + 0x40114788 esp_mesh_is_roots_found + *fill* 0x401147cd 0x3 + .text.esp_mesh_get_storage + 0x401147d0 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x12 (size before relaxing) + 0x401147d0 esp_mesh_get_storage + *fill* 0x401147de 0x2 + .text.esp_mesh_switch_channel_internal + 0x401147e0 0x40 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x58 (size before relaxing) + 0x401147e4 esp_mesh_switch_channel_internal + .text.esp_mesh_set_active_duty_cycle + 0x40114820 0xd4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0xfc (size before relaxing) + 0x40114828 esp_mesh_set_active_duty_cycle + .text.esp_mesh_get_active_duty_cycle + 0x401148f4 0x71 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x81 (size before relaxing) + 0x401148f8 esp_mesh_get_active_duty_cycle + *fill* 0x40114965 0x3 + .text.esp_mesh_set_network_duty_cycle + 0x40114968 0xa0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0xbc (size before relaxing) + 0x40114968 esp_mesh_set_network_duty_cycle + .text.esp_mesh_get_network_duty_cycle + 0x40114a08 0x89 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x9d (size before relaxing) + 0x40114a08 esp_mesh_get_network_duty_cycle + *fill* 0x40114a91 0x3 + .text.esp_mesh_get_running_active_duty_cycle + 0x40114a94 0x49 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x59 (size before relaxing) + 0x40114a94 esp_mesh_get_running_active_duty_cycle + *fill* 0x40114add 0x3 + .text.esp_wifi_set_non_mesh_connections + 0x40114ae0 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x23 (size before relaxing) + 0x40114ae0 esp_wifi_set_non_mesh_connections + *fill* 0x40114aff 0x1 + .text.ieee80211_freedom_inside_cb + 0x40114b00 0x34 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x38 (size before relaxing) + 0x40114b00 ieee80211_freedom_inside_cb + .text.ieee80211_send_sa_query + 0x40114b34 0xad /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0xcd (size before relaxing) + *fill* 0x40114be1 0x3 + .text.ieee80211_send_sa_query_resp + 0x40114be4 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x28 (size before relaxing) + .text.ieee80211_send_sa_query_req + 0x40114c04 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x28 (size before relaxing) + .text.ieee80211_recv_sa_query_resp + 0x40114c24 0xd0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0xe4 (size before relaxing) + .text.ieee80211_recv_sa_query_req + 0x40114cf4 0x24 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x28 (size before relaxing) + .text.ieee80211_rate_ref_init + 0x40114d18 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x22 (size before relaxing) + 0x40114d18 ieee80211_rate_ref_init + *fill* 0x40114d36 0x2 + .text.ieee80211_freedom_init + 0x40114d38 0x2a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x32 (size before relaxing) + 0x40114d3c ieee80211_freedom_init + *fill* 0x40114d62 0x2 + .text.ieee80211_user_ie_init + 0x40114d64 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x43 (size before relaxing) + 0x40114d68 ieee80211_user_ie_init + *fill* 0x40114d9f 0x1 + .text.ieee80211_ifattach + 0x40114da0 0xbf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x113 (size before relaxing) + 0x40114da0 ieee80211_ifattach + *fill* 0x40114e5f 0x1 + .text.ieee80211_ifdetach + 0x40114e60 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x1b (size before relaxing) + 0x40114e60 ieee80211_ifdetach + *fill* 0x40114e6f 0x1 + .text.wifi_create_nan + 0x40114e70 0xa4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0xc8 (size before relaxing) + 0x40114e74 wifi_create_nan + .text.wifi_destroy_nan + 0x40114f14 0x57 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x7e (size before relaxing) + 0x40114f14 wifi_destroy_nan + *fill* 0x40114f6b 0x1 + .text.wifi_destroy_softap + 0x40114f6c 0x64 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x8c (size before relaxing) + 0x40114f6c wifi_destroy_softap + .text.wifi_destroy_sta + 0x40114fd0 0x6a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x96 (size before relaxing) + 0x40114fd0 wifi_destroy_sta + *fill* 0x4011503a 0x2 + .text.ieee80211_find_elem_match + 0x4011503c 0x50 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x54 (size before relaxing) + 0x4011503c ieee80211_find_elem_match + .text.ieee80211_find_ie + 0x4011508c 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x1e (size before relaxing) + 0x4011508c ieee80211_find_ie + *fill* 0x401150a6 0x2 + .text.ieee80211_setup_pmf + 0x401150a8 0x3e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x5a (size before relaxing) + 0x401150b8 ieee80211_setup_pmf + *fill* 0x401150e6 0x2 + .text.wifi_create_softap + 0x401150e8 0xbc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0xf4 (size before relaxing) + 0x401150ec wifi_create_softap + .text.wifi_create_sta + 0x401151a4 0xc4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x104 (size before relaxing) + 0x401151ac wifi_create_sta + .text.wifi_mode_set + 0x40115268 0x190 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x1d8 (size before relaxing) + 0x40115280 wifi_mode_set + .text.ieee80211_crypto_encap + 0x401153f8 0x79 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + 0x85 (size before relaxing) + 0x40115400 ieee80211_crypto_encap + *fill* 0x40115471 0x3 + .text.ieee80211_crypto_decap + 0x40115474 0x9d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + 0xb1 (size before relaxing) + 0x40115478 ieee80211_crypto_decap + *fill* 0x40115511 0x3 + .text.ieee80211_crypto_aes_128_cmac_encrypt + 0x40115514 0x102 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + 0x12e (size before relaxing) + 0x40115518 ieee80211_crypto_aes_128_cmac_encrypt + *fill* 0x40115616 0x2 + .text.ieee80211_crypto_aes_128_cmac_decrypt + 0x40115618 0x151 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + 0x181 (size before relaxing) + 0x40115628 ieee80211_crypto_aes_128_cmac_decrypt + *fill* 0x40115769 0x3 + .text.ieee80211_crypto_gmac_decrypt + 0x4011576c 0x1c7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + 0x1fb (size before relaxing) + 0x4011577c ieee80211_crypto_gmac_decrypt + *fill* 0x40115933 0x1 + .text.wifi_log + 0x40115934 0xbc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + 0xc4 (size before relaxing) + 0x40115948 wifi_log + .text.unlikely.is_non_esp_oui + 0x401159f0 0x32 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + *fill* 0x40115a22 0x2 + .text.unlikely.is_esp_manufacturer_oui + 0x40115a24 0x3c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .text.ieee80211_hostapd_beacon_txcb + 0x40115a60 0xca /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0xf6 (size before relaxing) + 0x40115a74 ieee80211_hostapd_beacon_txcb + *fill* 0x40115b2a 0x2 + .text.ieee80211_hostap_send_beacon + 0x40115b2c 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x16 (size before relaxing) + *fill* 0x40115b3a 0x2 + .text.hostap_handle_timer + 0x40115b3c 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x16 (size before relaxing) + 0x40115b3c hostap_handle_timer + *fill* 0x40115b4a 0x2 + .text.ap_try_sa_query + 0x40115b4c 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x16 (size before relaxing) + *fill* 0x40115b5a 0x2 + .text.ap_sa_query_timeout + 0x40115b5c 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x16 (size before relaxing) + *fill* 0x40115b6a 0x2 + .text.ieee80211_hostapd_ps_txcb + 0x40115b6c 0x2a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x3a (size before relaxing) + 0x40115b6c ieee80211_hostapd_ps_txcb + *fill* 0x40115b96 0x2 + .text.ieee80211_free_beacon_eb + 0x40115b98 0x55 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x61 (size before relaxing) + 0x40115ba4 ieee80211_free_beacon_eb + *fill* 0x40115bed 0x3 + .text.ieee80211_hostap_send_beacon_process + 0x40115bf0 0x386 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x40a (size before relaxing) + 0x40115c20 ieee80211_hostap_send_beacon_process + *fill* 0x40115f76 0x2 + .text.hostap_delete_ptk + 0x40115f78 0x30 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x44 (size before relaxing) + 0x40115f78 hostap_delete_ptk + .text.ieee80211_hostap_attach + 0x40115fa8 0x1b6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x236 (size before relaxing) + 0x40115fc4 ieee80211_hostap_attach + *fill* 0x4011615e 0x2 + .text.hostap_deliver_data + 0x40116160 0xa6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0xc2 (size before relaxing) + 0x40116168 hostap_deliver_data + *fill* 0x40116206 0x2 + .text.hostap_handle_timer_process + 0x40116208 0x15b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x1b2 (size before relaxing) + 0x40116224 hostap_handle_timer_process + *fill* 0x40116363 0x1 + .text.ieee80211_hostapd_data_txcb + 0x40116364 0x41 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x50 (size before relaxing) + 0x40116364 ieee80211_hostapd_data_txcb + *fill* 0x401163a5 0x3 + .text.wifi_ap_reg_rxcb + 0x401163a8 0xd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x11 (size before relaxing) + 0x401163a8 wifi_ap_reg_rxcb + *fill* 0x401163b5 0x3 + .text.ap_rx_cb + 0x401163b8 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x26 (size before relaxing) + 0x401163b8 ap_rx_cb + *fill* 0x401163d6 0x2 + .text.hostap_auth_open + 0x401163d8 0x169 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x1c1 (size before relaxing) + 0x401163ec hostap_auth_open + *fill* 0x40116541 0x3 + .text.hostap_recv_ctl + 0x40116544 0x14b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x192 (size before relaxing) + 0x40116554 hostap_recv_ctl + *fill* 0x4011668f 0x1 + .text.wifi_softap_start + 0x40116690 0x34e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x402 (size before relaxing) + 0x401166ac wifi_softap_start + *fill* 0x401169de 0x2 + .text.wifi_softap_stop + 0x401169e0 0x158 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x1cc (size before relaxing) + 0x401169e4 wifi_softap_stop + .text.ap_sa_query_timeout_process + 0x40116b38 0x80 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0xb0 (size before relaxing) + 0x40116b40 ap_sa_query_timeout_process + .text.ap_try_sa_query_process + 0x40116bb8 0x17d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x1a5 (size before relaxing) + 0x40116bcc ap_try_sa_query_process + *fill* 0x40116d35 0x3 + .text.hostap_recv_mgmt + 0x40116d38 0x1102 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x12ca (size before relaxing) + 0x40116db4 hostap_recv_mgmt + *fill* 0x40117e3a 0x2 + .text.hostap_input + 0x40117e3c 0x6a7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x76b (size before relaxing) + 0x40117e50 hostap_input + *fill* 0x401184e3 0x1 + .text.add_mic_ie_bip + 0x401184e4 0x52 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x66 (size before relaxing) + 0x401184e8 add_mic_ie_bip + *fill* 0x40118536 0x2 + .text.addba_stop_timeout + 0x40118538 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x22 (size before relaxing) + *fill* 0x40118556 0x2 + .text.ampdu_tx_stop + 0x40118558 0x7f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x97 (size before relaxing) + *fill* 0x401185d7 0x1 + .text.addba_response_txcb + 0x401185d8 0x182 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x1ae (size before relaxing) + *fill* 0x4011875a 0x2 + .text.ieee80211_ampdu_timeout + 0x4011875c 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x16 (size before relaxing) + *fill* 0x4011876a 0x2 + .text.addba_timeout + 0x4011876c 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x16 (size before relaxing) + *fill* 0x4011877a 0x2 + .text.ieee80211_ampdu_stop_age_timer$part$0 + 0x4011877c 0x28 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x30 (size before relaxing) + .text.ieee80211_add_htcap_body + 0x401187a4 0x1fd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x20d (size before relaxing) + *fill* 0x401189a1 0x3 + .text.ht_recv_action_ba_addba_response + 0x401189a4 0x16d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x1b1 (size before relaxing) + *fill* 0x40118b11 0x3 + .text.ieee80211_ht_attach + 0x40118b14 0x210 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x294 (size before relaxing) + 0x40118b58 ieee80211_ht_attach + .text.ampdu_free_rx_ba_index + 0x40118d24 0x37 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x3f (size before relaxing) + 0x40118d28 ampdu_free_rx_ba_index + *fill* 0x40118d5b 0x1 + .text.ampdu_rx_stop + 0x40118d5c 0xc5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0xe1 (size before relaxing) + *fill* 0x40118e21 0x3 + .text.ht_recv_action_ba_delba + 0x40118e24 0x66 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x8d (size before relaxing) + *fill* 0x40118e8a 0x2 + .text.ampdu_alloc_rx_ba_index + 0x40118e8c 0x7a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x8a (size before relaxing) + 0x40118e90 ampdu_alloc_rx_ba_index + *fill* 0x40118f06 0x2 + .text.ampdu_rx_start + 0x40118f08 0x104 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x134 (size before relaxing) + .text.ht_recv_action_ba_addba_request + 0x4011900c 0x180 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x1bc (size before relaxing) + .text.ieee80211_ht_deattach + 0x4011918c 0x7a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x9e (size before relaxing) + 0x40119190 ieee80211_ht_deattach + *fill* 0x40119206 0x2 + .text.ieee80211_ampdu_enable + 0x40119208 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x1a (size before relaxing) + 0x40119208 ieee80211_ampdu_enable + *fill* 0x4011921a 0x2 + .text.ieee80211_ampdu_request + 0x4011921c 0x164 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x188 (size before relaxing) + 0x40119230 ieee80211_ampdu_request + .text.ieee80211_ampdu_age_bss + 0x40119380 0xd9 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0xe1 (size before relaxing) + *fill* 0x40119459 0x3 + .text.ieee80211_ampdu_start_age_timer + 0x4011945c 0x4d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x69 (size before relaxing) + 0x40119460 ieee80211_ampdu_start_age_timer + *fill* 0x401194a9 0x3 + .text.ieee80211_ampdu_age_all + 0x401194ac 0xa0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0xd4 (size before relaxing) + 0x401194ac ieee80211_ampdu_age_all + .text.ampdu_process_multicast_address_qos_frame + 0x4011954c 0xaa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0xae (size before relaxing) + 0x4011954c ampdu_process_multicast_address_qos_frame + *fill* 0x401195f6 0x2 + .text.ieee80211_recv_bar + 0x401195f8 0x73 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x87 (size before relaxing) + 0x401195fc ieee80211_recv_bar + *fill* 0x4011966b 0x1 + .text.ieee80211_ht_node_cleanup + 0x4011966c 0x32 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x42 (size before relaxing) + 0x4011966c ieee80211_ht_node_cleanup + *fill* 0x4011969e 0x2 + .text.ieee80211_ht_node_init + 0x401196a0 0x72 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x8a (size before relaxing) + 0x401196ac ieee80211_ht_node_init + *fill* 0x40119712 0x2 + .text.ieee80211_parse_htcap + 0x40119714 0x12c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x148 (size before relaxing) + 0x40119724 ieee80211_parse_htcap + .text.ieee80211_has_ht40_bss + 0x40119840 0xa8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0xb0 (size before relaxing) + 0x40119840 ieee80211_has_ht40_bss + .text.ieee80211_update_channel + 0x401198e8 0x36a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x3e2 (size before relaxing) + 0x40119900 ieee80211_update_channel + *fill* 0x40119c52 0x2 + .text.ieee80211_ht_updatehtcap + 0x40119c54 0x31 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x40 (size before relaxing) + 0x40119c54 ieee80211_ht_updatehtcap + *fill* 0x40119c85 0x3 + .text.ieee80211_ht_updateparams + 0x40119c88 0x187 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x1c3 (size before relaxing) + 0x40119ca8 ieee80211_ht_updateparams + *fill* 0x40119e0f 0x1 + .text.ieee80211_setup_htrates + 0x40119e10 0xc1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0xd5 (size before relaxing) + 0x40119e18 ieee80211_setup_htrates + *fill* 0x40119ed1 0x3 + .text.ieee80211_setup_basic_htrates + 0x40119ed4 0x94 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0xac (size before relaxing) + 0x40119edc ieee80211_setup_basic_htrates + .text.ieee80211_add_htcap + 0x40119f68 0x44 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x54 (size before relaxing) + 0x40119f70 ieee80211_add_htcap + .text.ieee80211_add_htcap_vendor + 0x40119fac 0x34 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x3c (size before relaxing) + 0x40119fac ieee80211_add_htcap_vendor + .text.ieee80211_add_htinfo_body + 0x40119fe0 0x141 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x159 (size before relaxing) + 0x40119fec ieee80211_add_htinfo_body + *fill* 0x4011a121 0x3 + .text.ieee80211_add_htinfo + 0x4011a124 0x40 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x54 (size before relaxing) + 0x4011a128 ieee80211_add_htinfo + .text.ieee80211_add_htinfo_vendor + 0x4011a164 0x5a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x6a (size before relaxing) + 0x4011a16c ieee80211_add_htinfo_vendor + *fill* 0x4011a1be 0x2 + .text.ht_action_output + 0x4011a1c0 0x21 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x2d (size before relaxing) + 0x4011a1c0 ht_action_output + *fill* 0x4011a1e1 0x3 + .text.ht_send_action_ba_delba + 0x4011a1e4 0xdd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0xf9 (size before relaxing) + *fill* 0x4011a2c1 0x3 + .text.ht_send_action_ba_addba + 0x4011a2c4 0x141 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x165 (size before relaxing) + *fill* 0x4011a405 0x3 + .text.ieee80211_decap1 + 0x4011a408 0x6f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x4011a40c ieee80211_decap1 + *fill* 0x4011a477 0x1 + .text.ieee80211_decap_amsdu + 0x4011a478 0x108 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x134 (size before relaxing) + 0x4011a47c ieee80211_decap_amsdu + .text.ieee80211_add_ie_vendor_esp_head + 0x4011a580 0x38 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + 0x4011a584 ieee80211_add_ie_vendor_esp_head + .text.ieee80211_add_ie_vendor_esp_manufacturer + 0x4011a5b8 0x46 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + 0x52 (size before relaxing) + 0x4011a5b8 ieee80211_add_ie_vendor_esp_manufacturer + *fill* 0x4011a5fe 0x2 + .text.wpa_cipher + 0x4011a600 0x77 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x83 (size before relaxing) + *fill* 0x4011a677 0x1 + .text.rsn_cipher + 0x4011a678 0xcf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0xde (size before relaxing) + *fill* 0x4011a747 0x1 + .text.ieee80211_decap + 0x4011a748 0x1d3 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x1f7 (size before relaxing) + 0x4011a75c ieee80211_decap + *fill* 0x4011a91b 0x1 + .text.ieee80211_setup_rates + 0x4011a91c 0xdc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0xe4 (size before relaxing) + 0x4011a91c ieee80211_setup_rates + .text.ieee80211_set_max_rate + 0x4011a9f8 0x114 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x130 (size before relaxing) + 0x4011aa04 ieee80211_set_max_rate + .text.ieee80211_setup_phy_mode + 0x4011ab0c 0xe6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0xf6 (size before relaxing) + 0x4011ab18 ieee80211_setup_phy_mode + *fill* 0x4011abf2 0x2 + .text.ieee80211_setup_lr_rates + 0x4011abf4 0x70 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x74 (size before relaxing) + 0x4011abf4 ieee80211_setup_lr_rates + .text.ieee80211_alloc_challenge + 0x4011ac64 0x3e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x4a (size before relaxing) + 0x4011ac68 ieee80211_alloc_challenge + *fill* 0x4011aca2 0x2 + .text.ieee80211_parse_beacon + 0x4011aca4 0x5f2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x632 (size before relaxing) + 0x4011acc4 ieee80211_parse_beacon + *fill* 0x4011b296 0x2 + .text.ieee80211_parse_wpa + 0x4011b298 0x100 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x11c (size before relaxing) + 0x4011b298 ieee80211_parse_wpa + .text.ieee80211_rsn_cipher_priority + 0x4011b398 0x2a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x2e (size before relaxing) + 0x4011b39c ieee80211_rsn_cipher_priority + *fill* 0x4011b3c2 0x2 + .text.ieee80211_better_rsn_pairwise_cipher + 0x4011b3c4 0x25 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x35 (size before relaxing) + 0x4011b3c4 ieee80211_better_rsn_pairwise_cipher + *fill* 0x4011b3e9 0x3 + .text.ieee80211_amsdu_negotiate + 0x4011b3ec 0xba /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0xca (size before relaxing) + 0x4011b3f4 ieee80211_amsdu_negotiate + *fill* 0x4011b4a6 0x2 + .text.ieee80211_parse_rsn + 0x4011b4a8 0x8bc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x974 (size before relaxing) + 0x4011b578 ieee80211_parse_rsn + .text.ieee80211_is_ht_cipher + 0x4011bd64 0x27 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x2b (size before relaxing) + 0x4011bd64 ieee80211_is_ht_cipher + *fill* 0x4011bd8b 0x1 + .text.ieee80211_parse_wapi + 0x4011bd8c 0x8c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x9c (size before relaxing) + 0x4011bd90 ieee80211_parse_wapi + .text.ieee80211_parse_action + 0x4011be18 0xb2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0xb6 (size before relaxing) + 0x4011be18 ieee80211_parse_action + *fill* 0x4011beca 0x2 + .text.wifi_pmk_is_valid + 0x4011becc 0x25 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x2d (size before relaxing) + *fill* 0x4011bef1 0x3 + .text.ieee80211_ioctl_process + 0x4011bef4 0xe6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x106 (size before relaxing) + 0x4011befc ieee80211_ioctl_process + *fill* 0x4011bfda 0x2 + .text.wifi_station_set_config_local_2 + 0x4011bfdc 0x4f6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x5ea (size before relaxing) + *fill* 0x4011c4d2 0x2 + .text.current_task_is_wifi_task + 0x4011c4d4 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x27 (size before relaxing) + 0x4011c4d8 current_task_is_wifi_task + *fill* 0x4011c4f7 0x1 + .text._do_wifi_stop + 0x4011c4f8 0x78 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x98 (size before relaxing) + 0x4011c500 _do_wifi_stop + .text._do_wifi_start + 0x4011c570 0xb2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0xd6 (size before relaxing) + 0x4011c57c _do_wifi_start + *fill* 0x4011c622 0x2 + .text.ieee80211_set_phy_bw + 0x4011c624 0x1b7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x1ff (size before relaxing) + 0x4011c624 ieee80211_set_phy_bw + *fill* 0x4011c7db 0x1 + .text.wifi_station_save_ap_channel + 0x4011c7dc 0x62 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x82 (size before relaxing) + 0x4011c7dc wifi_station_save_ap_channel + *fill* 0x4011c83e 0x2 + .text.ieee80211_sta_connect + 0x4011c840 0xd0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x108 (size before relaxing) + 0x4011c854 ieee80211_sta_connect + .text.ieee80211_sta_disconnect + 0x4011c910 0x70 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0xa0 (size before relaxing) + 0x4011c910 ieee80211_sta_disconnect + .text._do_wifi_disconnect + 0x4011c980 0x87 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0xb3 (size before relaxing) + *fill* 0x4011ca07 0x1 + .text.ieee80211_sta_scan + 0x4011ca08 0x30 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x3c (size before relaxing) + 0x4011ca0c ieee80211_sta_scan + .text.wifi_softap_max_support_num + 0x4011ca38 0x22 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x32 (size before relaxing) + 0x4011ca38 wifi_softap_max_support_num + *fill* 0x4011ca5a 0x2 + .text.wifi_softap_set_config + 0x4011ca5c 0x825 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x999 (size before relaxing) + 0x4011ca84 wifi_softap_set_config + *fill* 0x4011d281 0x3 + .text.wifi_get_macaddr + 0x4011d284 0x32 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x3e (size before relaxing) + 0x4011d288 wifi_get_macaddr + *fill* 0x4011d2b6 0x2 + .text.chip_enable + 0x4011d2b8 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x34 (size before relaxing) + 0x4011d2bc chip_enable + .text.chip_disable + 0x4011d2d8 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x34 (size before relaxing) + 0x4011d2dc chip_disable + .text.wifi_reset_mac + 0x4011d2f8 0x64 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x68 (size before relaxing) + 0x4011d30c wifi_reset_mac + .text.wifi_hw_start + 0x4011d35c 0x11b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x16a (size before relaxing) + 0x4011d370 wifi_hw_start + *fill* 0x4011d477 0x1 + .text.wifi_txq_empty + 0x4011d478 0x24 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x34 (size before relaxing) + 0x4011d478 wifi_txq_empty + .text.wifi_stop_sw_txq + 0x4011d49c 0x2c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x4c (size before relaxing) + 0x4011d4a0 wifi_stop_sw_txq + .text.wifi_hw_stop + 0x4011d4c8 0x108 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x164 (size before relaxing) + 0x4011d4dc wifi_hw_stop + .text.wifi_set_mode_process + 0x4011d5d0 0x1ee /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x266 (size before relaxing) + 0x4011d5d4 wifi_set_mode_process + *fill* 0x4011d7be 0x2 + .text.wifi_menuconfig_init + 0x4011d7c0 0x1b1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x1c5 (size before relaxing) + 0x4011d7f4 wifi_menuconfig_init + *fill* 0x4011d971 0x3 + .text.wpa_crypto_funcs_init + 0x4011d974 0x37 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x43 (size before relaxing) + 0x4011d97c wpa_crypto_funcs_init + *fill* 0x4011d9ab 0x1 + .text.wifi_crypto_init + 0x4011d9ac 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x14 (size before relaxing) + 0x4011d9ac wifi_crypto_init + .text.wifi_hmac_init + 0x4011d9b8 0x2c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x54 (size before relaxing) + 0x4011d9c0 wifi_hmac_init + .text.wifi_lmac_init + 0x4011d9e4 0xd2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x126 (size before relaxing) + 0x4011da04 wifi_lmac_init + *fill* 0x4011dab6 0x2 + .text.wifi_deinit + 0x4011dab8 0x22 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x3a (size before relaxing) + 0x4011dab8 wifi_deinit + *fill* 0x4011dada 0x2 + .text.wifi_init_process + 0x4011dadc 0x111 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x154 (size before relaxing) + 0x4011dae8 wifi_init_process + *fill* 0x4011dbed 0x3 + .text.wifi_deinit_process + 0x4011dbf0 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x11 (size before relaxing) + 0x4011dbf0 wifi_deinit_process + *fill* 0x4011dbfa 0x2 + .text.wifi_start_process + 0x4011dbfc 0x6f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0xab (size before relaxing) + 0x4011dbfc wifi_start_process + *fill* 0x4011dc6b 0x1 + .text.wifi_stop_process + 0x4011dc6c 0x10a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x16e (size before relaxing) + 0x4011dc70 wifi_stop_process + *fill* 0x4011dd76 0x2 + .text.wifi_connect_process + 0x4011dd78 0x4a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x6a (size before relaxing) + 0x4011dd80 wifi_connect_process + *fill* 0x4011ddc2 0x2 + .text.wifi_disconnect_process + 0x4011ddc4 0x5d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x81 (size before relaxing) + 0x4011ddcc wifi_disconnect_process + *fill* 0x4011de21 0x3 + .text.wifi_scan_start_process + 0x4011de24 0x6c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x88 (size before relaxing) + 0x4011de2c wifi_scan_start_process + .text.wifi_scan_stop_process + 0x4011de90 0x25 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x39 (size before relaxing) + 0x4011de94 wifi_scan_stop_process + *fill* 0x4011deb5 0x3 + .text.wifi_get_sta_list_process + 0x4011deb8 0x14c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x168 (size before relaxing) + 0x4011deb8 wifi_get_sta_list_process + .text.wifi_set_chan_range + 0x4011e004 0x5d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x99 (size before relaxing) + 0x4011e004 wifi_set_chan_range + *fill* 0x4011e061 0x3 + .text.wifi_set_ps_process + 0x4011e064 0xd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x14 (size before relaxing) + 0x4011e064 wifi_set_ps_process + *fill* 0x4011e071 0x3 + .text.wifi_set_country + 0x4011e074 0x1a4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x20c (size before relaxing) + 0x4011e088 wifi_set_country + .text.wifi_set_rxcb_process + 0x4011e218 0x2c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x3c (size before relaxing) + 0x4011e218 wifi_set_rxcb_process + .text.wifi_deauth_sta_process + 0x4011e244 0x103 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x147 (size before relaxing) + 0x4011e248 wifi_deauth_sta_process + *fill* 0x4011e347 0x1 + .text.wifi_wps_is_started + 0x4011e348 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x4011e34c wifi_wps_is_started + *fill* 0x4011e357 0x1 + .text.wifi_wpa2_is_started + 0x4011e358 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x4011e35c wifi_wpa2_is_started + *fill* 0x4011e367 0x1 + .text.wifi_ipc_process + 0x4011e368 0x5f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x67 (size before relaxing) + 0x4011e36c wifi_ipc_process + *fill* 0x4011e3c7 0x1 + .text.ieee80211_set_appie + 0x4011e3c8 0x183 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x193 (size before relaxing) + 0x4011e3d0 ieee80211_set_appie + *fill* 0x4011e54b 0x1 + .text.wifi_set_appie_process + 0x4011e54c 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x1c (size before relaxing) + 0x4011e54c wifi_set_appie_process + .text.wifi_send_mgmt_frame + 0x4011e564 0x13e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x192 (size before relaxing) + 0x4011e578 wifi_send_mgmt_frame + *fill* 0x4011e6a2 0x2 + .text.wifi_register_mgmt_frame + 0x4011e6a4 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x1b (size before relaxing) + 0x4011e6a4 wifi_register_mgmt_frame + *fill* 0x4011e6bb 0x1 + .text.wifi_nan_set_config_local + 0x4011e6bc 0x6e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x8e (size before relaxing) + 0x4011e6c8 wifi_nan_set_config_local + *fill* 0x4011e72a 0x2 + .text.wifi_set_config_process + 0x4011e72c 0x488 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x518 (size before relaxing) + 0x4011e748 wifi_set_config_process + .text.wifi_ap_remove_sta_node_process + 0x4011ebb4 0x82 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x9e (size before relaxing) + 0x4011ebbc wifi_ap_remove_sta_node_process + *fill* 0x4011ec36 0x2 + .text.wifi_ap_sta_sae_auth_done_process + 0x4011ec38 0xe2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x10e (size before relaxing) + 0x4011ec40 wifi_ap_sta_sae_auth_done_process + *fill* 0x4011ed1a 0x2 + .text.wifi_on_coex_start_process + 0x4011ed1c 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x2e (size before relaxing) + 0x4011ed1c wifi_on_coex_start_process + *fill* 0x4011ed3a 0x2 + .text.wifi_on_coex_schm_phase_process + 0x4011ed3c 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x11 (size before relaxing) + 0x4011ed3c wifi_on_coex_schm_phase_process + *fill* 0x4011ed46 0x2 + .text.wifi_mesh_ie_set_progress + 0x4011ed48 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x1e (size before relaxing) + 0x4011ed48 wifi_mesh_ie_set_progress + *fill* 0x4011ed62 0x2 + .text.wifi_mesh_ie_get_progress + 0x4011ed64 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x1e (size before relaxing) + 0x4011ed64 wifi_mesh_ie_get_progress + *fill* 0x4011ed7e 0x2 + .text.wifi_mesh_roots_ie_set_progress + 0x4011ed80 0x29 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x2d (size before relaxing) + 0x4011ed80 wifi_mesh_roots_ie_set_progress + *fill* 0x4011eda9 0x3 + .text.wifi_mesh_ie_init_progress + 0x4011edac 0x24 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x30 (size before relaxing) + 0x4011edac wifi_mesh_ie_init_progress + .text.wifi_mesh_ie_deinit_progress + 0x4011edd0 0x11 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x18 (size before relaxing) + 0x4011edd0 wifi_mesh_ie_deinit_progress + *fill* 0x4011ede1 0x3 + .text.wifi_mesh_sta_disassoc + 0x4011ede4 0x46 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x5e (size before relaxing) + 0x4011ede4 wifi_mesh_sta_disassoc + *fill* 0x4011ee2a 0x2 + .text.wifi_mesh_map_deauth_progress + 0x4011ee2c 0x7b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x97 (size before relaxing) + 0x4011ee2c wifi_mesh_map_deauth_progress + *fill* 0x4011eea7 0x1 + .text.wifi_mesh_sta_disassoc_progress + 0x4011eea8 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x11 (size before relaxing) + 0x4011eea8 wifi_mesh_sta_disassoc_progress + *fill* 0x4011eeb2 0x2 + .text.wifi_mesh_set_beacon_interval_progress + 0x4011eeb4 0x73 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x9b (size before relaxing) + 0x4011eeb4 wifi_mesh_set_beacon_interval_progress + *fill* 0x4011ef27 0x1 + .text.wifi_mesh_assoc_expire_set_progress + 0x4011ef28 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x1f (size before relaxing) + 0x4011ef28 wifi_mesh_assoc_expire_set_progress + *fill* 0x4011ef43 0x1 + .text.wifi_mesh_router_bssid_set_progress + 0x4011ef44 0x22 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x26 (size before relaxing) + 0x4011ef48 wifi_mesh_router_bssid_set_progress + *fill* 0x4011ef66 0x2 + .text.wifi_mesh_router_bssid_get_progress + 0x4011ef68 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x26 (size before relaxing) + 0x4011ef68 wifi_mesh_router_bssid_get_progress + *fill* 0x4011ef86 0x2 + .text.wifi_mesh_ie_crypto_funcs_set_progress + 0x4011ef88 0x28 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x34 (size before relaxing) + 0x4011ef88 wifi_mesh_ie_crypto_funcs_set_progress + .text.wifi_mesh_ie_crypto_key_set_progress + 0x4011efb0 0x30 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x40 (size before relaxing) + 0x4011efb0 wifi_mesh_ie_crypto_key_set_progress + .text.wifi_mesh_parent_monitor_set_progress + 0x4011efe0 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x1a (size before relaxing) + 0x4011efe0 wifi_mesh_parent_monitor_set_progress + *fill* 0x4011eff6 0x2 + .text.wifi_mesh_parent_candidate_set_progress + 0x4011eff8 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x24 (size before relaxing) + 0x4011eff8 wifi_mesh_parent_candidate_set_progress + .text.wifi_mesh_parent_candidate_clear_progress + 0x4011f018 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x11 (size before relaxing) + 0x4011f018 wifi_mesh_parent_candidate_clear_progress + *fill* 0x4011f022 0x2 + .text.wifi_mesh_rssi_threshold_set_progress + 0x4011f024 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x1a (size before relaxing) + 0x4011f024 wifi_mesh_rssi_threshold_set_progress + *fill* 0x4011f03a 0x2 + .text.wifi_mesh_rssi_threshold_get_progress + 0x4011f03c 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x1a (size before relaxing) + 0x4011f03c wifi_mesh_rssi_threshold_get_progress + *fill* 0x4011f052 0x2 + .text.wifi_mesh_is_roots_found_progress + 0x4011f054 0x31 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x35 (size before relaxing) + 0x4011f054 wifi_mesh_is_roots_found_progress + *fill* 0x4011f085 0x3 + .text.wifi_mesh_switch_channel_progress + 0x4011f088 0x2a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x2e (size before relaxing) + 0x4011f088 wifi_mesh_switch_channel_progress + *fill* 0x4011f0b2 0x2 + .text.wifi_mesh_ps_duty_cycle_set_process + 0x4011f0b4 0x44 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x4c (size before relaxing) + 0x4011f0b4 wifi_mesh_ps_duty_cycle_set_process + .text.wifi_mesh_ps_duty_cycle_get_process + 0x4011f0f8 0x25 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x2d (size before relaxing) + 0x4011f0f8 wifi_mesh_ps_duty_cycle_get_process + *fill* 0x4011f11d 0x3 + .text.ieee80211_ioctl_init + 0x4011f120 0x27 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x3f (size before relaxing) + 0x4011f128 ieee80211_ioctl_init + *fill* 0x4011f147 0x1 + .text.ieee80211_ioctl_deinit + 0x4011f148 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x13 (size before relaxing) + 0x4011f148 ieee80211_ioctl_deinit + *fill* 0x4011f157 0x1 + .text.ieee80211_ioctl + 0x4011f158 0x196 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x1ea (size before relaxing) + 0x4011f168 ieee80211_ioctl + *fill* 0x4011f2ee 0x2 + .text.ieee80211_public_action_recv_mesh_awake + 0x4011f2f0 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + 0x20 (size before relaxing) + 0x4011f2f0 ieee80211_public_action_recv_mesh_awake + .text.ieee80211_mesh_quick_init + 0x4011f30c 0x152 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + 0x1b2 (size before relaxing) + 0x4011f314 ieee80211_mesh_quick_init + *fill* 0x4011f45e 0x2 + .text.ieee80211_mesh_quick_deinit + 0x4011f460 0x82 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + 0xb2 (size before relaxing) + 0x4011f460 ieee80211_mesh_quick_deinit + *fill* 0x4011f4e2 0x2 + .text.ieee80211_vnd_mesh_update_beacon + 0x4011f4e4 0x3e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + 0x4a (size before relaxing) + 0x4011f4e4 ieee80211_vnd_mesh_update_beacon + *fill* 0x4011f522 0x2 + .text.ieee80211_vnd_mesh_fully_associated + 0x4011f524 0x45 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + 0x4d (size before relaxing) + 0x4011f524 ieee80211_vnd_mesh_fully_associated + *fill* 0x4011f569 0x3 + .text.is_esp_mesh_assoc + 0x4011f56c 0xd0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + 0xd8 (size before relaxing) + 0x4011f574 is_esp_mesh_assoc + .text.ieee80211_public_action_send_mesh_awake + 0x4011f63c 0x15c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + 0x190 (size before relaxing) + 0x4011f654 ieee80211_public_action_send_mesh_awake + .text.nan_get_tsf + 0x4011f798 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + 0x16 (size before relaxing) + 0x4011f798 nan_get_tsf + *fill* 0x4011f7a6 0x2 + .text.nan_get_clust_id + 0x4011f7a8 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + 0x4011f7ac nan_get_clust_id + .text.wifi_nan_reg_rxcb + 0x4011f7b4 0x11 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + 0x4011f7b8 wifi_nan_reg_rxcb + *fill* 0x4011f7c5 0x3 + .text.nan_set_update_sdf_pending + 0x4011f7c8 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + 0x4011f7cc nan_set_update_sdf_pending + .text.nan_set_trc + 0x4011f7e0 0x76 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + 0x8a (size before relaxing) + 0x4011f7e0 nan_set_trc + *fill* 0x4011f856 0x2 + .text.nan_rx_cb + 0x4011f858 0x10 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + 0x18 (size before relaxing) + 0x4011f858 nan_rx_cb + .text.nan_post_event + 0x4011f868 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + 0x16 (size before relaxing) + 0x4011f868 nan_post_event + *fill* 0x4011f876 0x2 + .text.nan_set_config_local + 0x4011f878 0xa8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + 0xd4 (size before relaxing) + 0x4011f884 nan_set_config_local + .text.nan_dp_clear_tmp_data + 0x4011f920 0x6a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + 0x72 (size before relaxing) + *fill* 0x4011f98a 0x2 + .text.nan_sched_in_ndc_slot + 0x4011f98c 0x39 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + 0x3d (size before relaxing) + 0x4011f994 nan_sched_in_ndc_slot + *fill* 0x4011f9c5 0x3 + .text.nan_sched_is_peer_available + 0x4011f9c8 0x38 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + 0x40 (size before relaxing) + 0x4011f9cc nan_sched_is_peer_available + .text.nan_dp_send_confirm_event + 0x4011fa00 0x57 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + 0x6b (size before relaxing) + 0x4011fa00 nan_dp_send_confirm_event + *fill* 0x4011fa57 0x1 + .text.nan_dp_remove_node + 0x4011fa58 0x41 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + 0x55 (size before relaxing) + 0x4011fa58 nan_dp_remove_node + *fill* 0x4011fa99 0x3 + .text.nan_dp_delete_peer + 0x4011fa9c 0xef /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + 0x127 (size before relaxing) + 0x4011faa4 nan_dp_delete_peer + *fill* 0x4011fb8b 0x1 + .text.nan_dp_post_tx + 0x4011fb8c 0xc4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + 0xe0 (size before relaxing) + 0x4011fb94 nan_dp_post_tx + .text.nan_ndp_resp_timeout_process + 0x4011fc50 0xa7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + 0xcb (size before relaxing) + 0x4011fc60 nan_ndp_resp_timeout_process + *fill* 0x4011fcf7 0x1 + .text.nan_warmup_timeout_process + 0x4011fcf8 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + 0x13 (size before relaxing) + 0x4011fcf8 nan_warmup_timeout_process + *fill* 0x4011fd07 0x1 + .text.nan_scan_timeout_process + 0x4011fd08 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + 0x13 (size before relaxing) + 0x4011fd08 nan_scan_timeout_process + *fill* 0x4011fd17 0x1 + .text.nan_dw_start_process + 0x4011fd18 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + 0x13 (size before relaxing) + 0x4011fd18 nan_dw_start_process + *fill* 0x4011fd27 0x1 + .text.nan_dw_end_process + 0x4011fd28 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + 0x13 (size before relaxing) + 0x4011fd28 nan_dw_end_process + *fill* 0x4011fd37 0x1 + .text.nan_send_disc_bcn_process + 0x4011fd38 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + 0x17 (size before relaxing) + 0x4011fd38 nan_send_disc_bcn_process + *fill* 0x4011fd4b 0x1 + .text.nan_send_sync_bcn_process + 0x4011fd4c 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + 0x17 (size before relaxing) + 0x4011fd4c nan_send_sync_bcn_process + *fill* 0x4011fd5f 0x1 + .text.nan_send_action_process + 0x4011fd60 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + 0x17 (size before relaxing) + 0x4011fd60 nan_send_action_process + *fill* 0x4011fd73 0x1 + .text.nan_faw_start_process + 0x4011fd74 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + 0x17 (size before relaxing) + 0x4011fd74 nan_faw_start_process + *fill* 0x4011fd87 0x1 + .text.nan_faw_end_process + 0x4011fd88 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + 0x17 (size before relaxing) + 0x4011fd88 nan_faw_end_process + *fill* 0x4011fd9b 0x1 + .text.nan_ndc_start_process + 0x4011fd9c 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + 0x17 (size before relaxing) + 0x4011fd9c nan_ndc_start_process + *fill* 0x4011fdaf 0x1 + .text.nan_sm_init + 0x4011fdb0 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + 0x1b (size before relaxing) + 0x4011fdb0 nan_sm_init + *fill* 0x4011fdc7 0x1 + .text.nan_sm_start + 0x4011fdc8 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + 0x16 (size before relaxing) + 0x4011fdc8 nan_sm_start + *fill* 0x4011fdd7 0x1 + .text.wifi_nvs_cfg_item_init + 0x4011fdd8 0x88 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x98 (size before relaxing) + 0x4011fde4 wifi_nvs_cfg_item_init + .text.wifi_nvs_cfg_init + 0x4011fe60 0x965 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0xb41 (size before relaxing) + 0x4012004c wifi_nvs_cfg_init + *fill* 0x401207c5 0x3 + .text.wifi_nvs_get + 0x401207c8 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0xe (size before relaxing) + 0x401207c8 wifi_nvs_get + *fill* 0x401207d2 0x2 + .text.wifi_nvs_commit + 0x401207d4 0x3a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x4a (size before relaxing) + 0x401207d4 wifi_nvs_commit + *fill* 0x4012080e 0x2 + .text.wifi_nvs_set + 0x40120810 0x186 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x1b2 (size before relaxing) + 0x4012082c wifi_nvs_set + *fill* 0x40120996 0x2 + .text.ieee80211_adjust_2nd_chan + 0x40120998 0x64 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x7c (size before relaxing) + 0x40120998 ieee80211_adjust_2nd_chan + .text.wifi_nvs_compare_cfg_diff + 0x401209fc 0x18a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x1a2 (size before relaxing) + 0x40120a00 wifi_nvs_compare_cfg_diff + *fill* 0x40120b86 0x2 + .text.wifi_set_default_ssid + 0x40120b88 0x44 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x58 (size before relaxing) + 0x40120b8c wifi_set_default_ssid + .text.wifi_nvs_validate_ap_ssid + 0x40120bcc 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x22 (size before relaxing) + 0x40120bcc wifi_nvs_validate_ap_ssid + *fill* 0x40120be6 0x2 + .text.wifi_nvs_validate_ap_password + 0x40120be8 0x38 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x48 (size before relaxing) + 0x40120be8 wifi_nvs_validate_ap_password + .text.wifi_nvs_validate_sta_password + 0x40120c20 0x41 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x51 (size before relaxing) + 0x40120c20 wifi_nvs_validate_sta_password + *fill* 0x40120c61 0x3 + .text.wifi_nvs_validate_country + 0x40120c64 0x54 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x58 (size before relaxing) + 0x40120c64 wifi_nvs_validate_country + .text.wifi_nvs_validate_ap_chan + 0x40120cb8 0x4b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x6b (size before relaxing) + 0x40120cb8 wifi_nvs_validate_ap_chan + *fill* 0x40120d03 0x1 + .text.wifi_nvs_validate_ap_num + 0x40120d04 0x1d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x21 (size before relaxing) + 0x40120d04 wifi_nvs_validate_ap_num + *fill* 0x40120d21 0x3 + .text.wifi_nvs_validate_sta_listen_interval + 0x40120d24 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x20 (size before relaxing) + 0x40120d24 wifi_nvs_validate_sta_listen_interval + .text.wifi_nvs_load + 0x40120d40 0x2ca /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x34e (size before relaxing) + *fill* 0x4012100a 0x2 + .text.wifi_nvs_get_sta_listen_interval + 0x4012100c 0xd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x11 (size before relaxing) + 0x4012100c wifi_nvs_get_sta_listen_interval + *fill* 0x40121019 0x3 + .text.wifi_nvs_reset_current_ap_info + 0x4012101c 0x72 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x8e (size before relaxing) + 0x4012101c wifi_nvs_reset_current_ap_info + *fill* 0x4012108e 0x2 + .text.wifi_nvs_deinit + 0x40121090 0x49 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x59 (size before relaxing) + 0x40121090 wifi_nvs_deinit + *fill* 0x401210d9 0x3 + .text.wifi_nvs_init + 0x401210dc 0x75 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0xa1 (size before relaxing) + 0x401210e8 wifi_nvs_init + *fill* 0x40121151 0x3 + .text.add_appie + 0x40121154 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x1b (size before relaxing) + *fill* 0x4012116b 0x1 + .text.ieee80211_vnd_ie_size$part$5 + 0x4012116c 0x31 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x35 (size before relaxing) + *fill* 0x4012119d 0x3 + .text.ieee80211_reg_netstack_buf_cb + 0x401211a0 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x401211a8 ieee80211_reg_netstack_buf_cb + *fill* 0x401211ba 0x2 + .text.ieee80211_set_hmac_stop + 0x401211bc 0x33 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x3f (size before relaxing) + 0x401211bc ieee80211_set_hmac_stop + *fill* 0x401211ef 0x1 + .text.ieee80211_recycle_cache_eb + 0x401211f0 0x24 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x2f (size before relaxing) + 0x401211f0 ieee80211_recycle_cache_eb + *fill* 0x40121214 0x0 + .text.ieee80211_empty_txq + 0x40121214 0x85 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x95 (size before relaxing) + 0x40121218 ieee80211_empty_txq + *fill* 0x40121299 0x3 + .text.is_wapi_alloc_tx_buf + 0x4012129c 0x36 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x3a (size before relaxing) + 0x4012129c is_wapi_alloc_tx_buf + *fill* 0x401212d2 0x2 + .text.ieee80211_wapi_alloc_tx_buf + 0x401212d4 0x54 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x58 (size before relaxing) + 0x401212d8 ieee80211_wapi_alloc_tx_buf + .text.get_wifi_internal_state + 0x40121328 0x46 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x52 (size before relaxing) + 0x40121328 get_wifi_internal_state + *fill* 0x4012136e 0x2 + .text.ieee80211_copy_eb_header + 0x40121370 0x8d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x95 (size before relaxing) + 0x40121374 ieee80211_copy_eb_header + *fill* 0x401213fd 0x3 + .text.ieee80211_amsdu_adjust_head + 0x40121400 0xdb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0xeb (size before relaxing) + 0x40121404 ieee80211_amsdu_adjust_head + *fill* 0x401214db 0x1 + .text.ieee80211_amsdu_length_check + 0x401214dc 0x29 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x2d (size before relaxing) + 0x401214dc ieee80211_amsdu_length_check + *fill* 0x40121505 0x3 + .text.ieee80211_output_init + 0x40121508 0x31 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x39 (size before relaxing) + 0x40121514 ieee80211_output_init + *fill* 0x40121539 0x3 + .text.ieee80211_send_setup + 0x4012153c 0x141 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x16d (size before relaxing) + 0x40121548 ieee80211_send_setup + *fill* 0x4012167d 0x3 + .text.ieee80211_tx_mgt_cb + 0x40121680 0x162 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x196 (size before relaxing) + 0x40121688 ieee80211_tx_mgt_cb + *fill* 0x401217e2 0x2 + .text.ieee80211_classify + 0x401217e4 0x17e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x19e (size before relaxing) + 0x401217fc ieee80211_classify + *fill* 0x40121962 0x2 + .text.ieee80211_add_rates + 0x40121964 0x30 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x34 (size before relaxing) + 0x40121964 ieee80211_add_rates + .text.ieee80211_add_dsparams + 0x40121994 0x26 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x2a (size before relaxing) + 0x40121994 ieee80211_add_dsparams + *fill* 0x401219ba 0x2 + .text.ieee80211_add_xrates + 0x401219bc 0x56 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x5e (size before relaxing) + 0x401219bc ieee80211_add_xrates + *fill* 0x40121a12 0x2 + .text.ieee80211_add_probe_resp_app_ies + 0x40121a14 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x23 (size before relaxing) + 0x40121a14 ieee80211_add_probe_resp_app_ies + *fill* 0x40121a33 0x1 + .text.ieee80211_add_beacon_app_ies + 0x40121a34 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x23 (size before relaxing) + 0x40121a34 ieee80211_add_beacon_app_ies + *fill* 0x40121a53 0x1 + .text.ieee80211_add_assoc_resp_ies + 0x40121a54 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x22 (size before relaxing) + 0x40121a54 ieee80211_add_assoc_resp_ies + *fill* 0x40121a72 0x2 + .text.ieee80211_add_assoc_req_ies + 0x40121a74 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x22 (size before relaxing) + 0x40121a74 ieee80211_add_assoc_req_ies + *fill* 0x40121a92 0x2 + .text.ieee80211_add_probe_req_ies + 0x40121a94 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x22 (size before relaxing) + 0x40121a94 ieee80211_add_probe_req_ies + *fill* 0x40121ab2 0x2 + .text.ieee80211_add_wme_param + 0x40121ab4 0x8c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x90 (size before relaxing) + 0x40121abc ieee80211_add_wme_param + .text.ieee80211_add_csa + 0x40121b40 0x34 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x38 (size before relaxing) + 0x40121b40 ieee80211_add_csa + .text.ieee80211_add_extcap + 0x40121b74 0x7f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x9f (size before relaxing) + 0x40121b7c ieee80211_add_extcap + *fill* 0x40121bf3 0x1 + .text.ieee80211_vnd_ie_set + 0x40121bf4 0x38 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x40 (size before relaxing) + 0x40121bf4 ieee80211_vnd_ie_set + .text.ieee80211_vnd_lora_ie_size + 0x40121c2c 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x1c (size before relaxing) + 0x40121c2c ieee80211_vnd_lora_ie_size + .text.ieee80211_vnd_lora_ie_set + 0x40121c44 0x32 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x3a (size before relaxing) + 0x40121c44 ieee80211_vnd_lora_ie_set + *fill* 0x40121c76 0x2 + .text.ieee80211_setup_robust_mgmtframe + 0x40121c78 0x6d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x7c (size before relaxing) + 0x40121c78 ieee80211_setup_robust_mgmtframe + *fill* 0x40121ce5 0x3 + .text.ieee80211_mgmt_output + 0x40121ce8 0x223 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x27f (size before relaxing) + 0x40121cec ieee80211_mgmt_output + *fill* 0x40121f0b 0x1 + .text.ieee80211_getcapinfo + 0x40121f0c 0x93 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0xaf (size before relaxing) + 0x40121f14 ieee80211_getcapinfo + *fill* 0x40121f9f 0x1 + .text.ieee80211_assoc_req_construct + 0x40121fa0 0x490 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x56c (size before relaxing) + 0x40121fc4 ieee80211_assoc_req_construct + .text.ieee80211_assoc_resp_construct + 0x40122430 0x362 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x41a (size before relaxing) + 0x40122440 ieee80211_assoc_resp_construct + *fill* 0x40122792 0x2 + .text.ieee80211_auth_construct + 0x40122794 0x31e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x356 (size before relaxing) + 0x401227a0 ieee80211_auth_construct + *fill* 0x40122ab2 0x2 + .text.ieee80211_get_robustmgtframe + 0x40122ab4 0x31 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x39 (size before relaxing) + 0x40122ab4 ieee80211_get_robustmgtframe + *fill* 0x40122ae5 0x3 + .text.ieee80211_deauth_construct + 0x40122ae8 0x5d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x65 (size before relaxing) + 0x40122aec ieee80211_deauth_construct + *fill* 0x40122b45 0x3 + .text.ieee80211_disassoc_construct + 0x40122b48 0x5c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x64 (size before relaxing) + 0x40122b4c ieee80211_disassoc_construct + .text.ieee80211_search_node + 0x40122ba4 0xea /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x102 (size before relaxing) + 0x40122bbc ieee80211_search_node + *fill* 0x40122c8e 0x2 + .text.ieee80211_output + 0x40122c90 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x1d (size before relaxing) + 0x40122c90 ieee80211_output + *fill* 0x40122ca9 0x3 + .text.esp_wifi_mesh_tx + 0x40122cac 0x82 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0xa6 (size before relaxing) + 0x40122cac esp_wifi_mesh_tx + *fill* 0x40122d2e 0x2 + .text.ieee80211_output_pending_eb + 0x40122d30 0x70 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x94 (size before relaxing) + 0x40122d34 ieee80211_output_pending_eb + .text.ieee80211_amsdu_send_check + 0x40122da0 0xab /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0xb7 (size before relaxing) + 0x40122da8 ieee80211_amsdu_send_check + *fill* 0x40122e4b 0x1 + .text.ieee80211_amsdu_encap_check + 0x40122e4c 0x60 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x70 (size before relaxing) + 0x40122e4c ieee80211_amsdu_encap_check + .text.ieee80211_encap_amsdu + 0x40122eac 0x1ad /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x201 (size before relaxing) + 0x40122eac ieee80211_encap_amsdu + *fill* 0x40123059 0x3 + .text.ieee80211_alloc_proberesp + 0x4012305c 0x2ae /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x362 (size before relaxing) + 0x4012306c ieee80211_alloc_proberesp + *fill* 0x4012330a 0x2 + .text.ieee80211_alloc_deauth + 0x4012330c 0x4c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x58 (size before relaxing) + 0x40123310 ieee80211_alloc_deauth + .text.ieee80211_output_raw_process + 0x40123358 0x194 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x1d8 (size before relaxing) + 0x40123364 ieee80211_output_raw_process + .text.ieee80211_beacon_construct + 0x401234ec 0x276 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x302 (size before relaxing) + 0x401234ec ieee80211_beacon_construct + *fill* 0x40123762 0x2 + .text.ieee80211_send_nulldata + 0x40123764 0x140 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x1a0 (size before relaxing) + 0x4012376c ieee80211_send_nulldata + .text.ieee80211_send_probereq + 0x401238a4 0x23d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x2c1 (size before relaxing) + 0x401238ac ieee80211_send_probereq + *fill* 0x40123ae1 0x3 + .text.ieee80211_send_mgmt + 0x40123ae4 0xe2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x12a (size before relaxing) + 0x40123aec ieee80211_send_mgmt + *fill* 0x40123bc6 0x2 + .text.ieee80211_send_proberesp + 0x40123bc8 0xec /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x13c (size before relaxing) + 0x40123bd0 ieee80211_send_proberesp + .text.ieee80211_send_deauth + 0x40123cb4 0xf8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x144 (size before relaxing) + 0x40123cbc ieee80211_send_deauth + .text.ieee80211_beacon_alloc + 0x40123dac 0x202 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x26e (size before relaxing) + 0x40123dc8 ieee80211_beacon_alloc + *fill* 0x40123fae 0x2 + .text.ieee80211_encap_null_data + 0x40123fb0 0x10b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x143 (size before relaxing) + 0x40123fb8 ieee80211_encap_null_data + *fill* 0x401240bb 0x1 + .text.ieee80211_pm_tx_null_process + 0x401240bc 0x37 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x3f (size before relaxing) + 0x401240bc ieee80211_pm_tx_null_process + *fill* 0x401240f3 0x1 + .text.ieee80211_phy_deinit + 0x401240f4 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + 0x11 (size before relaxing) + 0x401240f4 ieee80211_phy_deinit + *fill* 0x401240fe 0x2 + .text.ieee80211_phy_type_get + 0x40124100 0x5b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + 0x5f (size before relaxing) + 0x40124100 ieee80211_phy_type_get + *fill* 0x4012415b 0x1 + .text.ieee80211_phy_mode_show + 0x4012415c 0x7d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + 0x4012417c ieee80211_phy_mode_show + *fill* 0x401241d9 0x3 + .text.ieee80211_setup_ratetable + 0x401241dc 0x119 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + 0x135 (size before relaxing) + 0x401241f8 ieee80211_setup_ratetable + *fill* 0x401242f5 0x3 + .text.ieee80211_phy_init + 0x401242f8 0xa0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + 0xee (size before relaxing) + 0x401242fc ieee80211_phy_init + *fill* 0x40124398 0x0 + .text.ieee80211_psq_init + 0x40124398 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x1d (size before relaxing) + 0x40124398 ieee80211_psq_init + *fill* 0x401243b1 0x3 + .text.ieee80211_gpsq_init + 0x401243b4 0x3e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x5a (size before relaxing) + 0x401243b8 ieee80211_gpsq_init + *fill* 0x401243f2 0x2 + .text.ieee80211_psq_find_max_bss + 0x401243f4 0x33 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x3b (size before relaxing) + 0x401243f4 ieee80211_psq_find_max_bss + *fill* 0x40124427 0x1 + .text.ieee80211_set_tim + 0x40124428 0x7f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x87 (size before relaxing) + 0x40124428 ieee80211_set_tim + *fill* 0x401244a7 0x1 + .text.ieee80211_psq_take_head + 0x401244a8 0x41 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x45 (size before relaxing) + 0x401244a8 ieee80211_psq_take_head + *fill* 0x401244e9 0x3 + .text.ieee80211_psq_drop_one_pkt + 0x401244ec 0x4f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x6b (size before relaxing) + 0x401244ec ieee80211_psq_drop_one_pkt + *fill* 0x4012453b 0x1 + .text.ieee80211_psq_send_one_pkt + 0x4012453c 0x5d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x79 (size before relaxing) + 0x4012453c ieee80211_psq_send_one_pkt + *fill* 0x40124599 0x3 + .text.ieee80211_psq_is_buff_pkt + 0x4012459c 0x35 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x4c (size before relaxing) + 0x4012459c ieee80211_psq_is_buff_pkt + *fill* 0x401245d1 0x3 + .text.ieee80211_pwrsave + 0x401245d4 0x6e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x82 (size before relaxing) + 0x401245d4 ieee80211_pwrsave + *fill* 0x40124642 0x2 + .text.pwrsave_flushq + 0x40124644 0xc9 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0xe9 (size before relaxing) + 0x40124644 pwrsave_flushq + *fill* 0x4012470d 0x3 + .text.ieee80211_node_pwrsave + 0x40124710 0x62 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x7a (size before relaxing) + 0x40124710 ieee80211_node_pwrsave + *fill* 0x40124772 0x2 + .text.ieee80211_pwrsave_node_cleanup + 0x40124774 0x37 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x47 (size before relaxing) + 0x40124774 ieee80211_pwrsave_node_cleanup + *fill* 0x401247ab 0x1 + .text.ieee80211_pwrsave_txcb + 0x401247ac 0x83 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x9f (size before relaxing) + 0x401247b0 ieee80211_pwrsave_txcb + *fill* 0x4012482f 0x1 + .text.ieee80211_proto_attach + 0x40124830 0x27 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + 0x2f (size before relaxing) + 0x40124834 ieee80211_proto_attach + *fill* 0x40124857 0x1 + .text.ieee80211_wme_updateparams + 0x40124858 0x3e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + 0x4a (size before relaxing) + 0x4012485c ieee80211_wme_updateparams + *fill* 0x40124896 0x2 + .text.ieee80211_mlme_connect_bss + 0x40124898 0xf7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + 0x11f (size before relaxing) + 0x401248a8 ieee80211_mlme_connect_bss + *fill* 0x4012498f 0x1 + .text.get_country_chan_info + 0x40124990 0x2c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + 0x30 (size before relaxing) + .text.ieee80211_get_chan_info + 0x401249bc 0x68 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + 0x74 (size before relaxing) + 0x401249c4 ieee80211_get_chan_info + .text.ieee80211_is_40mhz_valid_bw + 0x40124a24 0x54 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + 0x64 (size before relaxing) + 0x40124a2c ieee80211_is_40mhz_valid_bw + .text.ieee80211_regdomain_get_country + 0x40124a78 0x36 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x3e (size before relaxing) + 0x40124a78 ieee80211_regdomain_get_country + *fill* 0x40124aae 0x2 + .text.ieee80211_update_phy_country + 0x40124ab0 0x24 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x30 (size before relaxing) + 0x40124ab0 ieee80211_update_phy_country + .text.ieee80211_regdomain_update + 0x40124ad4 0x134 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x15c (size before relaxing) + 0x40124ad4 ieee80211_regdomain_update + .text.ieee80211_regdomain_update_in_scan + 0x40124c08 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x16 (size before relaxing) + 0x40124c08 ieee80211_regdomain_update_in_scan + *fill* 0x40124c1a 0x2 + .text.ieee80211_regdomain_update_in_connect + 0x40124c1c 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x18 (size before relaxing) + 0x40124c1c ieee80211_regdomain_update_in_connect + .text.ieee80211_add_countryie + 0x40124c30 0x65 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x71 (size before relaxing) + 0x40124c34 ieee80211_add_countryie + *fill* 0x40124c95 0x3 + .text.ieee80211_regdomain_max_chan + 0x40124c98 0x26 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x2e (size before relaxing) + 0x40124c98 ieee80211_regdomain_max_chan + *fill* 0x40124cbe 0x2 + .text.ieee80211_regdomain_ap_max_chan + 0x40124cc0 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x1c (size before relaxing) + 0x40124cc0 ieee80211_regdomain_ap_max_chan + .text.ieee80211_regdomain_min_chan + 0x40124cd8 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x24 (size before relaxing) + 0x40124cd8 ieee80211_regdomain_min_chan + .text.ieee80211_regdomain_ap_min_chan + 0x40124cf4 0xb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x12 (size before relaxing) + 0x40124cf4 ieee80211_regdomain_ap_min_chan + *fill* 0x40124cff 0x1 + .text.ieee80211_regdomain_policy + 0x40124d00 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x11 (size before relaxing) + 0x40124d00 ieee80211_regdomain_policy + *fill* 0x40124d0a 0x2 + .text.ieee80211_regdomain_chan_in_range + 0x40124d0c 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x2e (size before relaxing) + 0x40124d0c ieee80211_regdomain_chan_in_range + *fill* 0x40124d2a 0x2 + .text.ieee80211_regdomain_is_active_scan + 0x40124d2c 0x2f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x33 (size before relaxing) + 0x40124d2c ieee80211_regdomain_is_active_scan + *fill* 0x40124d5b 0x1 + .text.ieee80211_rfid_locp_recv_reset + 0x40124d5c 0x10 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + 0x14 (size before relaxing) + 0x40124d5c ieee80211_rfid_locp_recv_reset + .text.ieee80211_rfid_locp_recv + 0x40124d6c 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + 0x20 (size before relaxing) + 0x40124d6c ieee80211_rfid_locp_recv + .text.scan_enter_oper_channel + 0x40124d88 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x16 (size before relaxing) + *fill* 0x40124d96 0x2 + .text.scan_inter_channel_timeout + 0x40124d98 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x16 (size before relaxing) + *fill* 0x40124da6 0x2 + .text.scan_op_start + 0x40124da8 0x1d2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x232 (size before relaxing) + *fill* 0x40124f7a 0x2 + .text.unlikely.sta_update_owe_bssid + 0x40124f7c 0x5b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x77 (size before relaxing) + *fill* 0x40124fd7 0x1 + .text.ieee80211_scan_attach + 0x40124fd8 0xab /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0xbb (size before relaxing) + 0x40124fe8 ieee80211_scan_attach + *fill* 0x40125083 0x1 + .text.ieee80211_scan_deattach + 0x40125084 0x24 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x2c (size before relaxing) + 0x40125084 ieee80211_scan_deattach + .text.scan_get_apnum + 0x401250a8 0xb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0xf (size before relaxing) + 0x401250a8 scan_get_apnum + *fill* 0x401250b3 0x1 + .text.scan_flush_all_tx_buf + 0x401250b4 0x68 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x84 (size before relaxing) + 0x401250bc scan_flush_all_tx_buf + .text.scan_cancel + 0x4012511c 0x7c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x94 (size before relaxing) + 0x40125120 scan_cancel + .text.scan_add_bssid + 0x40125198 0x25 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x2d (size before relaxing) + 0x40125198 scan_add_bssid + *fill* 0x401251bd 0x3 + .text.scan_remove_bssid + 0x401251c0 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x19 (size before relaxing) + 0x401251c0 scan_remove_bssid + *fill* 0x401251d5 0x3 + .text.scan_hidden_ssid + 0x401251d8 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x17 (size before relaxing) + 0x401251d8 scan_hidden_ssid + *fill* 0x401251eb 0x1 + .text.scan_set_act_duration + 0x401251ec 0x11 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x15 (size before relaxing) + 0x401251ec scan_set_act_duration + *fill* 0x401251fd 0x3 + .text.scan_set_pas_duration + 0x40125200 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x13 (size before relaxing) + 0x40125200 scan_set_pas_duration + *fill* 0x4012520f 0x1 + .text.scan_set_home_chan_dwell_time + 0x40125210 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x1a (size before relaxing) + 0x40125210 scan_set_home_chan_dwell_time + *fill* 0x40125226 0x2 + .text.scan_add_probe_ssid + 0x40125228 0x66 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x72 (size before relaxing) + 0x40125228 scan_add_probe_ssid + *fill* 0x4012528e 0x2 + .text.scan_remove_probe_ssid + 0x40125290 0x2d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x31 (size before relaxing) + 0x40125290 scan_remove_probe_ssid + *fill* 0x401252bd 0x3 + .text.scan_prefer_chan + 0x401252c0 0x1cd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x225 (size before relaxing) + 0x401252e0 scan_prefer_chan + *fill* 0x4012548d 0x3 + .text.scan_update_scan_history + 0x40125490 0x184 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x1a8 (size before relaxing) + 0x401254a0 scan_update_scan_history + .text.scan_build_chan_list + 0x40125614 0x90 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0xa0 (size before relaxing) + 0x4012561c scan_build_chan_list + .text.scan_set_desChan + 0x401256a4 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x19 (size before relaxing) + 0x401256a4 scan_set_desChan + *fill* 0x401256b9 0x3 + .text.scan_get_type + 0x401256bc 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x10 (size before relaxing) + 0x401256bc scan_get_type + .text.unlikely.scan_add_ssid_do + 0x401256c8 0x47a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x4c2 (size before relaxing) + *fill* 0x40125b42 0x2 + .text.unlikely.scan_add_ssid + 0x40125b44 0x177 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x19f (size before relaxing) + *fill* 0x40125cbb 0x1 + .text.scan_reset_cipher_and_akm + 0x40125cbc 0x2f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x33 (size before relaxing) + 0x40125cbc scan_reset_cipher_and_akm + *fill* 0x40125ceb 0x1 + .text.scan_profile_check + 0x40125cec 0x59a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x646 (size before relaxing) + 0x40125d30 scan_profile_check + *fill* 0x40126286 0x2 + .text.free_bss_info + 0x40126288 0x42 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x4a (size before relaxing) + 0x4012628c free_bss_info + *fill* 0x401262ca 0x2 + .text.clear_bss_queue + 0x401262cc 0x5f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x7f (size before relaxing) + 0x401262d0 clear_bss_queue + *fill* 0x4012632b 0x1 + .text.scan_done + 0x4012632c 0x246 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x2da (size before relaxing) + *fill* 0x40126572 0x2 + .text.scan_next_channel + 0x40126574 0x1c4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x21c (size before relaxing) + .text.scan_enter_oper_channel_process + 0x40126738 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x34 (size before relaxing) + 0x4012673c scan_enter_oper_channel_process + .text.scan_inter_channel_timeout_process + 0x40126758 0x70 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x8c (size before relaxing) + 0x40126760 scan_inter_channel_timeout_process + .text.scan_op_end + 0x401267c8 0x170 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x1cc (size before relaxing) + .text.scan_start + 0x40126938 0x13b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x197 (size before relaxing) + 0x40126950 scan_start + *fill* 0x40126a73 0x1 + .text.check_bss_queue + 0x40126a74 0x4c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x5c (size before relaxing) + 0x40126a74 check_bss_queue + .text.scan_set_scan_id + 0x40126ac0 0x43 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x57 (size before relaxing) + 0x40126ac4 scan_set_scan_id + *fill* 0x40126b03 0x1 + .text.scan_get_scan_id + 0x40126b04 0x3f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x53 (size before relaxing) + 0x40126b08 scan_get_scan_id + *fill* 0x40126b43 0x1 + .text.scan_parse_ht2040_coex + 0x40126b44 0x74 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x84 (size before relaxing) + 0x40126b4c scan_parse_ht2040_coex + .text.scan_get_owe_channel_info + 0x40126bb8 0x81 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x8d (size before relaxing) + 0x40126bb8 scan_get_owe_channel_info + *fill* 0x40126c39 0x3 + .text.scan_validate_owe_scenarios + 0x40126c3c 0x8c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0xa4 (size before relaxing) + 0x40126c48 scan_validate_owe_scenarios + .text.scan_parse_beacon + 0x40126cc8 0xc5f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0xe7f (size before relaxing) + 0x40126d34 scan_parse_beacon + *fill* 0x40127927 0x1 + .text.sta_eapol_txdone_cb + 0x40127928 0xb3 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0xbf (size before relaxing) + 0x4012792c sta_eapol_txdone_cb + *fill* 0x401279db 0x1 + .text.sta_assoc_comeback + 0x401279dc 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x16 (size before relaxing) + *fill* 0x401279ea 0x2 + .text.sta_try_sa_query + 0x401279ec 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x16 (size before relaxing) + *fill* 0x401279fa 0x2 + .text.sta_sa_query_timeout + 0x401279fc 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x16 (size before relaxing) + *fill* 0x40127a0a 0x2 + .text.wifi_sta_reg_eapol_txdone_cb + 0x40127a0c 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x26 (size before relaxing) + 0x40127a10 wifi_sta_reg_eapol_txdone_cb + *fill* 0x40127a2a 0x2 + .text.wifi_sta_reg_rxcb + 0x40127a2c 0xd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x11 (size before relaxing) + 0x40127a2c wifi_sta_reg_rxcb + *fill* 0x40127a39 0x3 + .text.sta_michael_mic_failure + 0x40127a3c 0x36 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x3e (size before relaxing) + 0x40127a40 sta_michael_mic_failure + *fill* 0x40127a72 0x2 + .text.ieee80211_wme_standard_ac_to_esp_ac + 0x40127a74 0x4f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x53 (size before relaxing) + 0x40127a7c ieee80211_wme_standard_ac_to_esp_ac + *fill* 0x40127ac3 0x1 + .text.ieee80211_parse_wmeparams + 0x40127ac4 0x9c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0xa0 (size before relaxing) + 0x40127ac4 ieee80211_parse_wmeparams + .text.sta_rx_csa + 0x40127b60 0x24c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x278 (size before relaxing) + 0x40127b90 sta_rx_csa + .text.reset_cs_thres + 0x40127dac 0x2e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x3a (size before relaxing) + 0x40127db0 reset_cs_thres + *fill* 0x40127dda 0x2 + .text.ieee80211_parse_obss_scan_param + 0x40127ddc 0x26 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x2a (size before relaxing) + 0x40127ddc ieee80211_parse_obss_scan_param + *fill* 0x40127e02 0x2 + .text.sta_recv_ctl + 0x40127e04 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x16 (size before relaxing) + 0x40127e04 sta_recv_ctl + *fill* 0x40127e13 0x1 + .text.wifi_station_start + 0x40127e14 0xaa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0xda (size before relaxing) + 0x40127e1c wifi_station_start + *fill* 0x40127ebe 0x2 + .text.wifi_station_stop + 0x40127ec0 0x86 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0xae (size before relaxing) + 0x40127ec4 wifi_station_stop + *fill* 0x40127f46 0x2 + .text.sta_bip_check + 0x40127f48 0x72 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x96 (size before relaxing) + 0x40127f48 sta_bip_check + *fill* 0x40127fba 0x2 + .text.sta_is_wpa3_enabled + 0x40127fbc 0x25 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x31 (size before relaxing) + 0x40127fbc sta_is_wpa3_enabled + *fill* 0x40127fe1 0x3 + .text.sta_is_11r_enabled + 0x40127fe4 0xb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x12 (size before relaxing) + 0x40127fe4 sta_is_11r_enabled + *fill* 0x40127fef 0x1 + .text.sta_is_wifi_ent_enabled + 0x40127ff0 0xb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x12 (size before relaxing) + 0x40127ff0 sta_is_wifi_ent_enabled + *fill* 0x40127ffb 0x1 + .text.sta_get_owe_data + 0x40127ffc 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x13 (size before relaxing) + 0x40127ffc sta_get_owe_data + *fill* 0x4012800b 0x1 + .text.sta_update_power_off_reset_flag + 0x4012800c 0x65 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x81 (size before relaxing) + 0x4012800c sta_update_power_off_reset_flag + *fill* 0x40128071 0x3 + .text.ieee80211_sta_new_state + 0x40128074 0xb51 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0xd39 (size before relaxing) + 0x40128124 ieee80211_sta_new_state + *fill* 0x40128bc5 0x3 + .text.sta_auth_ft + 0x40128bc8 0xba /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0xe6 (size before relaxing) + 0x40128bd4 sta_auth_ft + *fill* 0x40128c82 0x2 + .text.sta_auth_open + 0x40128c84 0x12b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x16f (size before relaxing) + 0x40128c94 sta_auth_open + *fill* 0x40128daf 0x1 + .text.sta_auth_shared + 0x40128db0 0x142 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x16a (size before relaxing) + 0x40128db8 sta_auth_shared + *fill* 0x40128ef2 0x2 + .text.sta_auth_sae + 0x40128ef4 0x17f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x1b7 (size before relaxing) + 0x40128ef8 sta_auth_sae + *fill* 0x40129073 0x1 + .text.sta_retry_assoc + 0x40129074 0x86 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x9e (size before relaxing) + 0x40129074 sta_retry_assoc + *fill* 0x401290fa 0x2 + .text.sta_recv_assoc + 0x401290fc 0x6ba /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x7a2 (size before relaxing) + 0x40129140 sta_recv_assoc + *fill* 0x401297b6 0x2 + .text.sta_sa_query_process_timeout + 0x401297b8 0x76 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x92 (size before relaxing) + 0x401297c4 sta_sa_query_process_timeout + *fill* 0x4012982e 0x2 + .text.sta_try_sa_query_process + 0x40129830 0x179 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x1a1 (size before relaxing) + 0x40129840 sta_try_sa_query_process + *fill* 0x401299a9 0x3 + .text.sta_recv_mgmt + 0x401299ac 0xbcb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0xd23 (size before relaxing) + 0x401299ec sta_recv_mgmt + *fill* 0x4012a577 0x1 + .text.wifi_sta_connect_internal_process + 0x4012a578 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x2b (size before relaxing) + 0x4012a578 wifi_sta_connect_internal_process + *fill* 0x4012a59b 0x1 + .text.esp_wifi_ap_get_prof_pmk_internal + 0x4012a59c 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x13 (size before relaxing) + 0x4012a59c esp_wifi_ap_get_prof_pmk_internal + *fill* 0x4012a5ab 0x1 + .text.esp_wifi_sta_update_ap_info_internal + 0x4012a5ac 0x29 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x3d (size before relaxing) + 0x4012a5ac esp_wifi_sta_update_ap_info_internal + *fill* 0x4012a5d5 0x3 + .text.esp_wifi_sta_get_ap_info_prof_pmk_internal + 0x4012a5d8 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x22 (size before relaxing) + 0x4012a5d8 esp_wifi_sta_get_ap_info_prof_pmk_internal + *fill* 0x4012a5f6 0x2 + .text.esp_wifi_ap_get_prof_ap_ssid_internal + 0x4012a5f8 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x13 (size before relaxing) + 0x4012a5f8 esp_wifi_ap_get_prof_ap_ssid_internal + *fill* 0x4012a607 0x1 + .text.esp_wifi_sta_get_prof_ssid_internal + 0x4012a608 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x10 (size before relaxing) + 0x4012a608 esp_wifi_sta_get_prof_ssid_internal + .text.esp_wifi_ap_get_prof_authmode_internal + 0x4012a614 0x10 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x14 (size before relaxing) + 0x4012a614 esp_wifi_ap_get_prof_authmode_internal + .text.esp_wifi_ap_get_max_sta_conn + 0x4012a624 0x10 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x14 (size before relaxing) + 0x4012a624 esp_wifi_ap_get_max_sta_conn + .text.esp_wifi_ap_get_prof_pairwise_cipher_internal + 0x4012a634 0x10 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x14 (size before relaxing) + 0x4012a634 esp_wifi_ap_get_prof_pairwise_cipher_internal + .text.esp_wifi_sta_get_prof_authmode_internal + 0x4012a644 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x12 (size before relaxing) + 0x4012a644 esp_wifi_sta_get_prof_authmode_internal + *fill* 0x4012a652 0x2 + .text.esp_wifi_get_pmf_config_internal + 0x4012a654 0x56 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x5a (size before relaxing) + 0x4012a654 esp_wifi_get_pmf_config_internal + *fill* 0x4012a6aa 0x2 + .text.esp_wifi_get_config_sae_pwe_h2e_internal + 0x4012a6ac 0x3c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x44 (size before relaxing) + 0x4012a6b0 esp_wifi_get_config_sae_pwe_h2e_internal + .text.esp_wifi_sta_get_rsnxe + 0x4012a6e8 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x26 (size before relaxing) + 0x4012a6e8 esp_wifi_sta_get_rsnxe + *fill* 0x4012a703 0x1 + .text.esp_wifi_sta_disable_wpa2_authmode_internal + 0x4012a704 0x4a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x5e (size before relaxing) + 0x4012a70c esp_wifi_sta_disable_wpa2_authmode_internal + *fill* 0x4012a74e 0x2 + .text.esp_wifi_sta_get_config_sae_pk_internal + 0x4012a750 0x10 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x14 (size before relaxing) + 0x4012a750 esp_wifi_sta_get_config_sae_pk_internal + .text.esp_wifi_enable_sae_pk_only_mode_internal + 0x4012a760 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x47 (size before relaxing) + 0x4012a764 esp_wifi_enable_sae_pk_only_mode_internal + *fill* 0x4012a79b 0x1 + .text.esp_wifi_sta_disable_owe_trans_internal + 0x4012a79c 0x4e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x5e (size before relaxing) + 0x4012a7a4 esp_wifi_sta_disable_owe_trans_internal + *fill* 0x4012a7ea 0x2 + .text.esp_wifi_ap_notify_node_sae_auth_done + 0x4012a7ec 0x4e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x5a (size before relaxing) + 0x4012a7f0 esp_wifi_ap_notify_node_sae_auth_done + *fill* 0x4012a83a 0x2 + .text.esp_wifi_ap_is_sta_sae_reauth_node + 0x4012a83c 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x20 (size before relaxing) + 0x4012a83c esp_wifi_ap_is_sta_sae_reauth_node + .text.esp_wifi_sta_get_sae_identifier_internal + 0x4012a858 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x13 (size before relaxing) + 0x4012a858 esp_wifi_sta_get_sae_identifier_internal + *fill* 0x4012a867 0x1 + .text.esp_wifi_sta_is_ap_notify_completed_rsne_internal + 0x4012a868 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x19 (size before relaxing) + 0x4012a868 esp_wifi_sta_is_ap_notify_completed_rsne_internal + *fill* 0x4012a87d 0x3 + .text.esp_wifi_ap_get_prof_password_internal + 0x4012a880 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x13 (size before relaxing) + 0x4012a880 esp_wifi_ap_get_prof_password_internal + *fill* 0x4012a88f 0x1 + .text.wifi_sta_get_prof_password + 0x4012a890 0xd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x11 (size before relaxing) + 0x4012a890 wifi_sta_get_prof_password + *fill* 0x4012a89d 0x3 + .text.wifi_ap_pmf_enabled + 0x4012a8a0 0x40 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x48 (size before relaxing) + 0x4012a8a0 wifi_ap_pmf_enabled + .text.esp_wifi_sta_get_prof_password_internal + 0x4012a8e0 0xd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x11 (size before relaxing) + 0x4012a8e0 esp_wifi_sta_get_prof_password_internal + *fill* 0x4012a8ed 0x3 + .text.esp_wifi_sta_get_reset_param_internal + 0x4012a8f0 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x12 (size before relaxing) + 0x4012a8f0 esp_wifi_sta_get_reset_param_internal + *fill* 0x4012a8fe 0x2 + .text.esp_wifi_sta_set_reset_param_internal + 0x4012a900 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x1a (size before relaxing) + 0x4012a900 esp_wifi_sta_set_reset_param_internal + *fill* 0x4012a916 0x2 + .text.esp_wifi_sta_prof_is_wpa_internal + 0x4012a918 0x2b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x2f (size before relaxing) + 0x4012a918 esp_wifi_sta_prof_is_wpa_internal + *fill* 0x4012a943 0x1 + .text.esp_wifi_sta_prof_is_wpa2_internal + 0x4012a944 0x2d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x31 (size before relaxing) + 0x4012a948 esp_wifi_sta_prof_is_wpa2_internal + *fill* 0x4012a971 0x3 + .text.esp_wifi_sta_prof_is_wapi_internal + 0x4012a974 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x22 (size before relaxing) + 0x4012a974 esp_wifi_sta_prof_is_wapi_internal + *fill* 0x4012a992 0x2 + .text.esp_wifi_sta_prof_is_rsn_internal + 0x4012a994 0x2d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x31 (size before relaxing) + 0x4012a998 esp_wifi_sta_prof_is_rsn_internal + *fill* 0x4012a9c1 0x3 + .text.esp_wifi_sta_get_pairwise_cipher_internal + 0x4012a9c4 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x12 (size before relaxing) + 0x4012a9c4 esp_wifi_sta_get_pairwise_cipher_internal + *fill* 0x4012a9d2 0x2 + .text.esp_wifi_sta_get_group_cipher_internal + 0x4012a9d4 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x12 (size before relaxing) + 0x4012a9d4 esp_wifi_sta_get_group_cipher_internal + *fill* 0x4012a9e2 0x2 + .text.ieee80211_get_key + 0x4012a9e4 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x1c (size before relaxing) + 0x4012a9e4 ieee80211_get_key + .text.ieee80211_set_key + 0x4012a9fc 0x3c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x44 (size before relaxing) + 0x4012a9fc ieee80211_set_key + .text.ieee80211_set_sta_gtk_index + 0x4012aa38 0x29 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x2d (size before relaxing) + 0x4012aa38 ieee80211_set_sta_gtk_index + *fill* 0x4012aa61 0x3 + .text.ieee80211_set_gtk + 0x4012aa64 0x45 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x55 (size before relaxing) + 0x4012aa6c ieee80211_set_gtk + *fill* 0x4012aaa9 0x3 + .text.ieee80211_get_ptk + 0x4012aaac 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x1c (size before relaxing) + 0x4012aaac ieee80211_get_ptk + .text.ieee80211_get_spp + 0x4012aac4 0x2c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x34 (size before relaxing) + 0x4012aac4 ieee80211_get_spp + .text.esp_wifi_wpa_ptk_init_done_internal + 0x4012aaf0 0x83 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0xa7 (size before relaxing) + 0x4012aaf4 esp_wifi_wpa_ptk_init_done_internal + *fill* 0x4012ab73 0x1 + .text.esp_wifi_auth_done_internal + 0x4012ab74 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x11 (size before relaxing) + 0x4012ab74 esp_wifi_auth_done_internal + *fill* 0x4012ab7e 0x2 + .text.esp_wifi_unregister_wpa_cb_internal + 0x4012ab80 0x22 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x2a (size before relaxing) + 0x4012ab80 esp_wifi_unregister_wpa_cb_internal + *fill* 0x4012aba2 0x2 + .text.esp_wifi_register_wpa_cb_internal + 0x4012aba4 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x1e (size before relaxing) + 0x4012aba4 esp_wifi_register_wpa_cb_internal + *fill* 0x4012abb7 0x1 + .text.ieee80211_sta_is_connected + 0x4012abb8 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x4012abbc ieee80211_sta_is_connected + .text.esp_wifi_get_hostap_private_internal + 0x4012abd0 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x16 (size before relaxing) + 0x4012abd0 esp_wifi_get_hostap_private_internal + *fill* 0x4012abe2 0x2 + .text.esp_wifi_deauthenticate_internal + 0x4012abe4 0x2b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x36 (size before relaxing) + 0x4012abe4 esp_wifi_deauthenticate_internal + *fill* 0x4012ac0f 0x1 + .text.esp_wifi_get_spp_attrubute_internal + 0x4012ac10 0x24 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x28 (size before relaxing) + 0x4012ac10 esp_wifi_get_spp_attrubute_internal + .text.esp_wifi_get_user_init_flag_internal + 0x4012ac34 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x1d (size before relaxing) + 0x4012ac34 esp_wifi_get_user_init_flag_internal + *fill* 0x4012ac4d 0x3 + .text.wifi_set_rx_policy + 0x4012ac50 0x178 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x1fb (size before relaxing) + 0x4012ac54 wifi_set_rx_policy + *fill* 0x4012adc8 0x0 + .text.esp_wifi_register_eapol_txdonecb_internal + 0x4012adc8 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x14 (size before relaxing) + 0x4012adc8 esp_wifi_register_eapol_txdonecb_internal + .text.esp_wifi_get_macaddr_internal + 0x4012add4 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x1f (size before relaxing) + 0x4012add4 esp_wifi_get_macaddr_internal + *fill* 0x4012adef 0x1 + .text.esp_wifi_ap_deauth_internal + 0x4012adf0 0x58 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x6c (size before relaxing) + 0x4012adf4 esp_wifi_ap_deauth_internal + .text.wifi_init_key + 0x4012ae48 0x2c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x34 (size before relaxing) + 0x4012ae4c wifi_init_key + .text.esp_wifi_set_ap_key_internal + 0x4012ae74 0x15c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x1b4 (size before relaxing) + 0x4012ae80 esp_wifi_set_ap_key_internal + .text.ppInstallKey + 0x4012afd0 0x12e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x176 (size before relaxing) + 0x4012afd4 ppInstallKey + *fill* 0x4012b0fe 0x2 + .text.esp_wifi_set_sta_key_internal + 0x4012b100 0x60 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x68 (size before relaxing) + 0x4012b100 esp_wifi_set_sta_key_internal + .text.esp_wifi_get_sta_key_internal + 0x4012b160 0x48 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x50 (size before relaxing) + 0x4012b160 esp_wifi_get_sta_key_internal + .text.esp_wifi_set_appie_internal + 0x4012b1a8 0x56 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x6a (size before relaxing) + 0x4012b1ac esp_wifi_set_appie_internal + *fill* 0x4012b1fe 0x2 + .text.esp_wifi_unset_appie_internal + 0x4012b200 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x1a (size before relaxing) + 0x4012b200 esp_wifi_unset_appie_internal + *fill* 0x4012b216 0x2 + .text.esp_wifi_get_wps_status_internal + 0x4012b218 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x10 (size before relaxing) + 0x4012b218 esp_wifi_get_wps_status_internal + .text.esp_wifi_sta_pmf_enabled + 0x4012b224 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x12 (size before relaxing) + 0x4012b224 esp_wifi_sta_pmf_enabled + *fill* 0x4012b232 0x2 + .text.esp_wifi_sta_get_mgmt_group_cipher + 0x4012b234 0x26 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x2a (size before relaxing) + 0x4012b238 esp_wifi_sta_get_mgmt_group_cipher + *fill* 0x4012b25a 0x2 + .text.esp_wifi_set_igtk_internal + 0x4012b25c 0xd0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0xd8 (size before relaxing) + 0x4012b270 esp_wifi_set_igtk_internal + .text.ieee80211w_get_active_igtk_key_id + 0x4012b32c 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x26 (size before relaxing) + 0x4012b32c ieee80211w_get_active_igtk_key_id + *fill* 0x4012b346 0x2 + .text.ieee80211w_get_igtk_from_keyidx + 0x4012b348 0x3c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x44 (size before relaxing) + 0x4012b350 ieee80211w_get_igtk_from_keyidx + .text.esp_wifi_skip_supp_pmkcaching + 0x4012b384 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x12 (size before relaxing) + 0x4012b384 esp_wifi_skip_supp_pmkcaching + *fill* 0x4012b392 0x2 + .text.esp_wifi_register_mgmt_frame_internal + 0x4012b394 0x4c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x64 (size before relaxing) + 0x4012b398 esp_wifi_register_mgmt_frame_internal + .text.esp_wifi_send_mgmt_frm_internal + 0x4012b3e0 0x6e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x8e (size before relaxing) + 0x4012b3e4 esp_wifi_send_mgmt_frm_internal + *fill* 0x4012b44e 0x2 + .text.esp_wifi_sta_connect_internal + 0x4012b450 0x32 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x42 (size before relaxing) + 0x4012b454 esp_wifi_sta_connect_internal + *fill* 0x4012b482 0x2 + .text.ieee80211_nan_ndp_resp_timeout + 0x4012b484 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x13 (size before relaxing) + *fill* 0x4012b493 0x1 + .text.ieee80211_nan_ndc_start + 0x4012b494 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x13 (size before relaxing) + *fill* 0x4012b4a3 0x1 + .text.ieee80211_nan_faw_end + 0x4012b4a4 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x13 (size before relaxing) + *fill* 0x4012b4b3 0x1 + .text.ieee80211_nan_faw_start + 0x4012b4b4 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x13 (size before relaxing) + *fill* 0x4012b4c3 0x1 + .text.ieee80211_nan_send_action + 0x4012b4c4 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x13 (size before relaxing) + *fill* 0x4012b4d3 0x1 + .text.ieee80211_nan_send_sync_bcn + 0x4012b4d4 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x13 (size before relaxing) + *fill* 0x4012b4e3 0x1 + .text.ieee80211_nan_send_disc_bcn + 0x4012b4e4 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x13 (size before relaxing) + *fill* 0x4012b4f3 0x1 + .text.ieee80211_nan_dw_end + 0x4012b4f4 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x13 (size before relaxing) + *fill* 0x4012b503 0x1 + .text.ieee80211_nan_dw_start + 0x4012b504 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x13 (size before relaxing) + *fill* 0x4012b513 0x1 + .text.ieee80211_nan_scan_timeout + 0x4012b514 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x13 (size before relaxing) + *fill* 0x4012b523 0x1 + .text.ieee80211_nan_warmup_timeout + 0x4012b524 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x13 (size before relaxing) + *fill* 0x4012b533 0x1 + .text.ieee80211_ampdu_age_handle + 0x4012b534 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x13 (size before relaxing) + *fill* 0x4012b543 0x1 + .text.ieee80211_addba + 0x4012b544 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x13 (size before relaxing) + *fill* 0x4012b553 0x1 + .text.ieee80211_ap_try_sa_query + 0x4012b554 0x32 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x46 (size before relaxing) + 0x4012b55c ieee80211_ap_try_sa_query + *fill* 0x4012b586 0x2 + .text.ieee80211_ap_sa_query_timeout + 0x4012b588 0x32 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x46 (size before relaxing) + 0x4012b590 ieee80211_ap_sa_query_timeout + *fill* 0x4012b5ba 0x2 + .text.ieee80211_sta_retry_assoc + 0x4012b5bc 0x2f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x42 (size before relaxing) + *fill* 0x4012b5eb 0x1 + .text.ieee80211_sta_sa_query_timeout + 0x4012b5ec 0x2f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x42 (size before relaxing) + *fill* 0x4012b61b 0x1 + .text.ieee80211_sta_try_sa_query + 0x4012b61c 0x2e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x41 (size before relaxing) + *fill* 0x4012b64a 0x2 + .text.ieee80211_assoc + 0x4012b64c 0x2f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x42 (size before relaxing) + *fill* 0x4012b67b 0x1 + .text.ieee80211_auth + 0x4012b67c 0x2f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x42 (size before relaxing) + *fill* 0x4012b6ab 0x1 + .text.ieee80211_chm_dwell + 0x4012b6ac 0x32 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x46 (size before relaxing) + *fill* 0x4012b6de 0x2 + .text.ieee80211_handshake + 0x4012b6e0 0x2f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x42 (size before relaxing) + *fill* 0x4012b70f 0x1 + .text.ieee80211_beacon + 0x4012b710 0x3f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x52 (size before relaxing) + *fill* 0x4012b74f 0x1 + .text.ieee80211_probe_send + 0x4012b750 0x3f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x52 (size before relaxing) + *fill* 0x4012b78f 0x1 + .text.ieee80211_csa + 0x4012b790 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x4e (size before relaxing) + *fill* 0x4012b7cb 0x1 + .text.ieee80211_scan_enter_op_chan + 0x4012b7cc 0x32 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x46 (size before relaxing) + *fill* 0x4012b7fe 0x2 + .text.ieee80211_scan_inter_chan + 0x4012b800 0x32 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x46 (size before relaxing) + *fill* 0x4012b832 0x2 + .text.ieee80211_timer_connect + 0x4012b834 0x2f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x42 (size before relaxing) + *fill* 0x4012b863 0x1 + .text.ieee80211_hostap_handle + 0x4012b864 0x32 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x46 (size before relaxing) + *fill* 0x4012b896 0x2 + .text.ieee80211_send_beacon + 0x4012b898 0x34 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x44 (size before relaxing) + .text.ieee80211_register_hostap_timer + 0x4012b8cc 0x3c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x4012b8d8 ieee80211_register_hostap_timer + .text.ieee80211_timer_do_process + 0x4012b908 0x92 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0xa6 (size before relaxing) + 0x4012b910 ieee80211_timer_do_process + *fill* 0x4012b99a 0x2 + .text.ieee80211_timer_process + 0x4012b99c 0xb0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0xf8 (size before relaxing) + 0x4012b9ac ieee80211_timer_process + .text.chm_end_op_timeout + 0x4012ba4c 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x16 (size before relaxing) + *fill* 0x4012ba5a 0x2 + .text.chm_phy_change_channel$constprop$2 + 0x4012ba5c 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x57 (size before relaxing) + *fill* 0x4012ba97 0x1 + .text.chm_mhz2num + 0x4012ba98 0x64 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x68 (size before relaxing) + 0x4012baac chm_mhz2num + .text.chm_deinit + 0x4012bafc 0x26 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x2e (size before relaxing) + 0x4012bafc chm_deinit + *fill* 0x4012bb22 0x2 + .text.chm_release_lock + 0x4012bb24 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x20 (size before relaxing) + 0x4012bb24 chm_release_lock + .text.chm_end_op + 0x4012bb40 0x30 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x38 (size before relaxing) + 0x4012bb40 chm_end_op + .text.chm_end_op_timeout_process + 0x4012bb70 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x2e (size before relaxing) + 0x4012bb70 chm_end_op_timeout_process + *fill* 0x4012bb8f 0x1 + .text.chm_cancel_op + 0x4012bb90 0x40 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x50 (size before relaxing) + 0x4012bb90 chm_cancel_op + .text.chm_acquire_lock + 0x4012bbd0 0x35 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x41 (size before relaxing) + 0x4012bbd0 chm_acquire_lock + *fill* 0x4012bc05 0x3 + .text.chm_get_current_channel + 0x4012bc08 0xd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x11 (size before relaxing) + 0x4012bc08 chm_get_current_channel + *fill* 0x4012bc15 0x3 + .text.chm_get_home_channel + 0x4012bc18 0xd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x11 (size before relaxing) + 0x4012bc18 chm_get_home_channel + *fill* 0x4012bc25 0x3 + .text.chm_set_home_channel + 0x4012bc28 0xad /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0xd1 (size before relaxing) + 0x4012bc30 chm_set_home_channel + *fill* 0x4012bcd5 0x3 + .text.chm_get_chan_info + 0x4012bcd8 0x22 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x26 (size before relaxing) + 0x4012bcd8 chm_get_chan_info + *fill* 0x4012bcfa 0x2 + .text.chm_set_current_channel + 0x4012bcfc 0xfb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x12f (size before relaxing) + 0x4012bd10 chm_set_current_channel + *fill* 0x4012bdf7 0x1 + .text.chm_init + 0x4012bdf8 0xdb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0xfb (size before relaxing) + 0x4012be00 chm_init + *fill* 0x4012bed3 0x1 + .text.chm_change_channel + 0x4012bed4 0xe3 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x113 (size before relaxing) + *fill* 0x4012bfb7 0x1 + .text.chm_start_op + 0x4012bfb8 0x3e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x46 (size before relaxing) + 0x4012bfb8 chm_start_op + *fill* 0x4012bff6 0x2 + .text.chm_return_home_channel + 0x4012bff8 0x49 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x59 (size before relaxing) + 0x4012bffc chm_return_home_channel + *fill* 0x4012c041 0x3 + .text.cnx_sta_connect_led_timer_cb + 0x4012c044 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x23 (size before relaxing) + 0x4012c044 cnx_sta_connect_led_timer_cb + *fill* 0x4012c063 0x1 + .text.cnx_cal_rc_util + 0x4012c064 0x5a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x5e (size before relaxing) + *fill* 0x4012c0be 0x2 + .text.cnx_get_next_rc + 0x4012c0c0 0x3a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x46 (size before relaxing) + *fill* 0x4012c0fa 0x2 + .text.cnx_traverse_rc_lis_done + 0x4012c0fc 0x33 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x43 (size before relaxing) + *fill* 0x4012c12f 0x1 + .text.cnx_connect_timeout + 0x4012c130 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x16 (size before relaxing) + 0x4012c130 cnx_connect_timeout + *fill* 0x4012c13e 0x2 + .text.cnx_handshake_timeout + 0x4012c140 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x16 (size before relaxing) + 0x4012c140 cnx_handshake_timeout + *fill* 0x4012c14e 0x2 + .text.cnx_csa_fn + 0x4012c150 0x10 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x18 (size before relaxing) + 0x4012c150 cnx_csa_fn + .text.mgd_probe_send_timeout + 0x4012c160 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x16 (size before relaxing) + *fill* 0x4012c16e 0x2 + .text.cnx_beacon_timeout + 0x4012c170 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x16 (size before relaxing) + *fill* 0x4012c17e 0x2 + .text.cnx_connect_op + 0x4012c180 0x1d6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x23e (size before relaxing) + *fill* 0x4012c356 0x2 + .text.cnx_probe_rc + 0x4012c358 0x5b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x77 (size before relaxing) + *fill* 0x4012c3b3 0x1 + .text.cnx_connect_to_bss + 0x4012c3b4 0x382 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x416 (size before relaxing) + *fill* 0x4012c736 0x2 + .text.ieee80211_cnx_attach + 0x4012c738 0x3e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x52 (size before relaxing) + 0x4012c740 ieee80211_cnx_attach + *fill* 0x4012c776 0x2 + .text._cnx_start_connect_without_scan + 0x4012c778 0x60 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x78 (size before relaxing) + 0x4012c77c _cnx_start_connect_without_scan + .text.cnx_can_do_obss_scan + 0x4012c7d8 0x66 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x72 (size before relaxing) + 0x4012c7e8 cnx_can_do_obss_scan + *fill* 0x4012c83e 0x2 + .text.cnx_obss_scan + 0x4012c840 0x76 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xb6 (size before relaxing) + 0x4012c850 cnx_obss_scan + *fill* 0x4012c8b6 0x2 + .text.cnx_obss_scan_timeout + 0x4012c8b8 0x5d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x75 (size before relaxing) + 0x4012c8c8 cnx_obss_scan_timeout + *fill* 0x4012c915 0x3 + .text.cnx_sta_scan_cmd + 0x4012c918 0x2f2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x402 (size before relaxing) + 0x4012c94c cnx_sta_scan_cmd + *fill* 0x4012cc0a 0x2 + .text.cnx_auth_timeout + 0x4012cc0c 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x16 (size before relaxing) + 0x4012cc0c cnx_auth_timeout + *fill* 0x4012cc1a 0x2 + .text.cnx_assoc_timeout + 0x4012cc1c 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x16 (size before relaxing) + 0x4012cc1c cnx_assoc_timeout + *fill* 0x4012cc2a 0x2 + .text.wl_is_ap_no_lr + 0x4012cc2c 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x4012cc30 wl_is_ap_no_lr + *fill* 0x4012cc3b 0x1 + .text.wl_clear_ap_no_lr + 0x4012cc3c 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x17 (size before relaxing) + 0x4012cc3c wl_clear_ap_no_lr + *fill* 0x4012cc4f 0x1 + .text.cnx_csa_fn_process + 0x4012cc50 0xe0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x128 (size before relaxing) + 0x4012cc5c cnx_csa_fn_process + .text.cnx_validate_owe_bss + 0x4012cd30 0x108 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x14c (size before relaxing) + 0x4012cd30 cnx_validate_owe_bss + .text.cnx_bss_init + 0x4012ce38 0xbe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xd2 (size before relaxing) + 0x4012ce44 cnx_bss_init + *fill* 0x4012cef6 0x2 + .text.cnx_get_authtype_strength + 0x4012cef8 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x4012cefc cnx_get_authtype_strength + *fill* 0x4012cf16 0x2 + .text.cnx_check_bssid_in_blacklist + 0x4012cf18 0x2c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x34 (size before relaxing) + 0x4012cf18 cnx_check_bssid_in_blacklist + .text.cnx_remove_from_blacklist + 0x4012cf44 0x8d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x9d (size before relaxing) + 0x4012cf48 cnx_remove_from_blacklist + *fill* 0x4012cfd1 0x3 + .text.cnx_add_to_blacklist + 0x4012cfd4 0xb8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xdc (size before relaxing) + 0x4012cfe0 cnx_add_to_blacklist + .text.cnx_clear_blacklist + 0x4012d08c 0x63 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x77 (size before relaxing) + 0x4012d090 cnx_clear_blacklist + *fill* 0x4012d0ef 0x1 + .text.cnx_choose_rc + 0x4012d0f0 0x1de /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x242 (size before relaxing) + *fill* 0x4012d2ce 0x2 + .text.cnx_rc_search + 0x4012d2d0 0x39 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x45 (size before relaxing) + 0x4012d2d0 cnx_rc_search + *fill* 0x4012d309 0x3 + .text.cnx_do_handoff_internal + 0x4012d30c 0xa4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xc0 (size before relaxing) + 0x4012d314 cnx_do_handoff_internal + .text.cnx_add_rc + 0x4012d3b0 0x8e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x92 (size before relaxing) + 0x4012d3b4 cnx_add_rc + *fill* 0x4012d43e 0x2 + .text.cnx_remove_all_rc + 0x4012d440 0x71 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x81 (size before relaxing) + 0x4012d444 cnx_remove_all_rc + *fill* 0x4012d4b1 0x3 + .text.cnx_do_handoff + 0x4012d4b4 0x345 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x409 (size before relaxing) + *fill* 0x4012d7f9 0x3 + .text.cnx_connect_next_ap + 0x4012d7fc 0x3c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x54 (size before relaxing) + 0x4012d800 cnx_connect_next_ap + .text.cnx_start_handoff_cb + 0x4012d838 0x5a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x86 (size before relaxing) + 0x4012d840 cnx_start_handoff_cb + *fill* 0x4012d892 0x2 + .text.cnx_remove_rc + 0x4012d894 0xc7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xdf (size before relaxing) + 0x4012d89c cnx_remove_rc + *fill* 0x4012d95b 0x1 + .text.cnx_sta_connect_cmd + 0x4012d95c 0x234 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x308 (size before relaxing) + 0x4012d970 cnx_sta_connect_cmd + .text.cnx_connect_timeout_process + 0x4012db90 0x84 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xab (size before relaxing) + 0x4012db98 cnx_connect_timeout_process + *fill* 0x4012dc14 0x0 + .text.cnx_auth_timeout_process + 0x4012dc14 0x39 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x61 (size before relaxing) + 0x4012dc1c cnx_auth_timeout_process + *fill* 0x4012dc4d 0x3 + .text.cnx_assoc_timeout_process + 0x4012dc50 0x2c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x4c (size before relaxing) + 0x4012dc58 cnx_assoc_timeout_process + .text.cnx_handshake_timeout_process + 0x4012dc7c 0x4e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x76 (size before relaxing) + 0x4012dc84 cnx_handshake_timeout_process + *fill* 0x4012dcca 0x2 + .text.cnx_bss_alloc + 0x4012dccc 0x2e0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x360 (size before relaxing) + 0x4012dcf0 cnx_bss_alloc + .text.cnx_remove_rc_except + 0x4012dfac 0x8c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xa0 (size before relaxing) + 0x4012dfb0 cnx_remove_rc_except + .text.cnx_rc_update_rssi + 0x4012e038 0x71 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x75 (size before relaxing) + 0x4012e038 cnx_rc_update_rssi + *fill* 0x4012e0a9 0x3 + .text.cnx_rc_update_state_metric + 0x4012e0ac 0x72 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x7a (size before relaxing) + 0x4012e0ac cnx_rc_update_state_metric + *fill* 0x4012e11e 0x2 + .text.cnx_probe_rc_tx_cb + 0x4012e120 0x55 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x7c (size before relaxing) + *fill* 0x4012e175 0x3 + .text.cnx_update_bss + 0x4012e178 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x2a (size before relaxing) + 0x4012e178 cnx_update_bss + *fill* 0x4012e196 0x2 + .text.send_ap_probe + 0x4012e198 0x96 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xc2 (size before relaxing) + 0x4012e198 send_ap_probe + *fill* 0x4012e22e 0x2 + .text.mgd_probe_send_timeout_process + 0x4012e230 0x134 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x178 (size before relaxing) + 0x4012e248 mgd_probe_send_timeout_process + .text.cnx_node_alloc + 0x4012e364 0xca /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xe6 (size before relaxing) + 0x4012e364 cnx_node_alloc + *fill* 0x4012e42e 0x2 + .text.cnx_node_remove + 0x4012e430 0xbf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xe3 (size before relaxing) + 0x4012e430 cnx_node_remove + *fill* 0x4012e4ef 0x1 + .text.cnx_sta_pm + 0x4012e4f0 0x2f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x3a (size before relaxing) + 0x4012e4f0 cnx_sta_pm + *fill* 0x4012e51f 0x1 + .text.cnx_update_bss_more + 0x4012e520 0x383 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x417 (size before relaxing) + 0x4012e524 cnx_update_bss_more + *fill* 0x4012e8a3 0x1 + .text.cnx_beacon_timeout_process + 0x4012e8a4 0x98 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xd4 (size before relaxing) + 0x4012e8ac cnx_beacon_timeout_process + .text.ic_set_sta + 0x4012e93c 0xc6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xe6 (size before relaxing) + 0x4012e93c ic_set_sta + *fill* 0x4012ea02 0x2 + .text.cnx_sta_leave + 0x4012ea04 0x2a6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x34a (size before relaxing) + 0x4012ea14 cnx_sta_leave + *fill* 0x4012ecaa 0x2 + .text.cnx_sta_associated + 0x4012ecac 0x16e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x1a2 (size before relaxing) + 0x4012eccc cnx_sta_associated + *fill* 0x4012ee1a 0x2 + .text.cnx_node_leave + 0x4012ee1c 0x1d0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x22a (size before relaxing) + 0x4012ee2c cnx_node_leave + *fill* 0x4012efec 0x0 + .text.cnx_node_join + 0x4012efec 0x30a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x38e (size before relaxing) + 0x4012f01c cnx_node_join + *fill* 0x4012f2f6 0x2 + .text.cnx_start_obss_scan + 0x4012f2f8 0xd8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xf8 (size before relaxing) + 0x4012f308 cnx_start_obss_scan + .text.cnx_obss_scan_done_cb + 0x4012f3d0 0x12d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x16d (size before relaxing) + 0x4012f3e4 cnx_obss_scan_done_cb + *fill* 0x4012f4fd 0x3 + .text.cnx_auth_done + 0x4012f500 0x2c6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x37e (size before relaxing) + 0x4012f530 cnx_auth_done + *fill* 0x4012f7c6 0x2 + .text.offchan_in_progress + 0x4012f7c8 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + 0x4012f7cc offchan_in_progress + *fill* 0x4012f7d7 0x1 + .text.offchan_recv_action + 0x4012f7d8 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + 0x20 (size before relaxing) + 0x4012f7d8 offchan_recv_action + .text.offchan_send_action_tx_status + 0x4012f7f4 0x37 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + 0x3f (size before relaxing) + 0x4012f7f4 offchan_send_action_tx_status + *fill* 0x4012f82b 0x1 + .text.ieee80211_send_action_register + 0x4012f82c 0x6f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + 0x4012f83c ieee80211_send_action_register + *fill* 0x4012f89b 0x1 + .text.ieee80211_send_action + 0x4012f89c 0x72 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + 0x82 (size before relaxing) + 0x4012f8a0 ieee80211_send_action + *fill* 0x4012f90e 0x2 + .text.ieee80211_recv_action_register + 0x4012f910 0x83 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + 0x4012f924 ieee80211_recv_action_register + *fill* 0x4012f993 0x1 + .text.ieee80211_recv_action + 0x4012f994 0xa7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + 0xc7 (size before relaxing) + 0x4012f9a0 ieee80211_recv_action + *fill* 0x4012fa3b 0x1 + .text.get_iav_key + 0x4012fa3c 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + 0x4012fa40 get_iav_key + .text.ieee80211_recv_action_vendor_spec + 0x4012fa58 0xf2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + 0x102 (size before relaxing) + 0x4012fa60 ieee80211_recv_action_vendor_spec + *fill* 0x4012fb4a 0x2 + .text.ieee80211_action_vendor_spec_attach + 0x4012fb4c 0x30 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + 0x38 (size before relaxing) + 0x4012fb50 ieee80211_action_vendor_spec_attach + .text.ccmp_encap + 0x4012fb7c 0x83 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + 0x87 (size before relaxing) + 0x4012fb7c ccmp_encap + *fill* 0x4012fbff 0x1 + .text.ccmp_decap + 0x4012fc00 0x94 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + 0x9b (size before relaxing) + 0x4012fc00 ccmp_decap + *fill* 0x4012fc94 0x0 + .text.ieee80211_decrypt_espnow_pkt + 0x4012fc94 0x74 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + 0x84 (size before relaxing) + 0x4012fc98 ieee80211_decrypt_espnow_pkt + .text.ieee80211_ccmp_decrypt + 0x4012fd08 0x1d1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + 0x1e9 (size before relaxing) + 0x4012fd14 ieee80211_ccmp_decrypt + *fill* 0x4012fed9 0x3 + .text.ieee80211_ccmp_encrypt + 0x4012fedc 0xea /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + 0x102 (size before relaxing) + 0x4012fee0 ieee80211_ccmp_encrypt + *fill* 0x4012ffc6 0x2 + .text.sms4_decap + 0x4012ffc8 0x86 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + 0x8e (size before relaxing) + *fill* 0x4013004e 0x2 + .text.sms4_encap + 0x40130050 0xca /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + 0xd2 (size before relaxing) + *fill* 0x4013011a 0x2 + .text.tkip_decap + 0x4013011c 0x9f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + 0xa7 (size before relaxing) + 0x4013011c tkip_decap + *fill* 0x401301bb 0x1 + .text.tkip_encap + 0x401301bc 0x9d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + 0xa5 (size before relaxing) + 0x401301c0 tkip_encap + *fill* 0x40130259 0x3 + .text.wep_encap + 0x4013025c 0x65 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + 0x69 (size before relaxing) + 0x4013025c wep_encap + *fill* 0x401302c1 0x3 + .text.ieee80211_getmgtframe + 0x401302c4 0x3f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + 0x47 (size before relaxing) + 0x401302c4 ieee80211_getmgtframe + *fill* 0x40130303 0x1 + .text.ieee80211_getbcnframe + 0x40130304 0x6e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + 0x8e (size before relaxing) + 0x4013030c ieee80211_getbcnframe + *fill* 0x40130372 0x2 + .text.esf_buf_alloc_dynamic_default_handler + 0x40130374 0x1d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x21 (size before relaxing) + 0x40130378 esf_buf_alloc_dynamic_default_handler + *fill* 0x40130391 0x3 + .text.esf_buf_alloc_default_handler + 0x40130394 0x1d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x21 (size before relaxing) + 0x40130398 esf_buf_alloc_default_handler + *fill* 0x401303b1 0x3 + .text.esf_buf_recycle_default_handler + 0x401303b4 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x22 (size before relaxing) + 0x401303b8 esf_buf_recycle_default_handler + *fill* 0x401303d2 0x2 + .text.esf_buf_setup_for_mesh + 0x401303d4 0x22 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x401303d8 esf_buf_setup_for_mesh + *fill* 0x401303f6 0x2 + .text.esf_buf_setup_static + 0x401303f8 0x4e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x62 (size before relaxing) + 0x40130400 esf_buf_setup_static + *fill* 0x40130446 0x2 + .text.esf_buf_free_static + 0x40130448 0x96 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0xaa (size before relaxing) + 0x40130448 esf_buf_free_static + *fill* 0x401304de 0x2 + .text.esf_buf_setdown + 0x401304e0 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x19 (size before relaxing) + 0x401304e0 esf_buf_setdown + *fill* 0x401304f5 0x3 + .text.esf_buf_setup + 0x401304f8 0x1eb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x27f (size before relaxing) + 0x4013051c esf_buf_setup + *fill* 0x401306e3 0x1 + .text.ic_get_addr + 0x401306e4 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x401306e8 ic_get_addr + *fill* 0x401306f9 0x3 + .text.ic_get_ptk_alg + 0x401306fc 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x18 (size before relaxing) + 0x401306fc ic_get_ptk_alg + .text.ic_disable_crypto + 0x40130710 0x28 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x30 (size before relaxing) + 0x40130710 ic_disable_crypto + .text.ic_set_key + 0x40130738 0x8e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x9e (size before relaxing) + 0x40130738 ic_set_key + *fill* 0x401307c6 0x2 + .text.ic_get_key + 0x401307c8 0x50 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x5c (size before relaxing) + 0x401307c8 ic_get_key + .text.ic_obtain_key + 0x40130818 0x6f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x7f (size before relaxing) + 0x40130818 ic_obtain_key + *fill* 0x40130887 0x1 + .text.ic_tx_pkt + 0x40130888 0x11 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x15 (size before relaxing) + 0x40130888 ic_tx_pkt + *fill* 0x40130899 0x3 + .text.ic_ebuf_alloc + 0x4013089c 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x401308a0 ic_ebuf_alloc + .text.ic_ebuf_recycle_tx + 0x401308b4 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x401308b4 ic_ebuf_recycle_tx + *fill* 0x401308c2 0x2 + .text.ic_ebuf_recycle_rx + 0x401308c4 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x401308c4 ic_ebuf_recycle_rx + *fill* 0x401308ce 0x2 + .text.esp_wifi_internal_free_rx_buffer + 0x401308d0 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x401308d0 esp_wifi_internal_free_rx_buffer + *fill* 0x401308da 0x2 + .text.ic_register_tx_cb + 0x401308dc 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x19 (size before relaxing) + 0x401308dc ic_register_tx_cb + *fill* 0x401308f1 0x3 + .text.ic_register_rx_cb + 0x401308f4 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x16 (size before relaxing) + 0x401308f4 ic_register_rx_cb + *fill* 0x40130906 0x2 + .text.ic_register_timer_post_cb + 0x40130908 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x40130908 ic_register_timer_post_cb + .text.ic_register_michael_mic_failure_cb + 0x40130914 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x40130914 ic_register_michael_mic_failure_cb + .text.ic_register_config_cb + 0x40130920 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x18 (size before relaxing) + 0x40130920 ic_register_config_cb + .text.ic_is_mgmt_hwdecr_enabled + 0x40130934 0xd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x40130934 ic_is_mgmt_hwdecr_enabled + *fill* 0x40130941 0x3 + .text.ic_register_pm_tx_null_cb + 0x40130944 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x18 (size before relaxing) + 0x40130944 ic_register_pm_tx_null_cb + .text.ic_register_net80211_tx_cb + 0x40130958 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x18 (size before relaxing) + 0x40130958 ic_register_net80211_tx_cb + .text.ic_register_timer_cb + 0x4013096c 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x18 (size before relaxing) + 0x4013096c ic_register_timer_cb + .text.ic_enable_sniffer + 0x40130980 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x40130980 ic_enable_sniffer + *fill* 0x4013098a 0x2 + .text.ic_disable_sniffer + 0x4013098c 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x4013098c ic_disable_sniffer + *fill* 0x40130996 0x2 + .text.ic_set_vif + 0x40130998 0x1bf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x22b (size before relaxing) + 0x401309bc ic_set_vif + *fill* 0x40130b57 0x1 + .text.ic_get_next_tbtt + 0x40130b58 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x40130b58 ic_get_next_tbtt + *fill* 0x40130b62 0x2 + .text.ic_del_rx_ba + 0x40130b64 0xb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x40130b64 ic_del_rx_ba + *fill* 0x40130b6f 0x1 + .text.ic_reset_rx_ba + 0x40130b70 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x1b (size before relaxing) + 0x40130b70 ic_reset_rx_ba + *fill* 0x40130b84 0x0 + .text.ic_add_rx_ba + 0x40130b84 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x20 (size before relaxing) + 0x40130b84 ic_add_rx_ba + *fill* 0x40130b9d 0x3 + .text.ic_reset_tbtt + 0x40130ba0 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0xf (size before relaxing) + 0x40130ba0 ic_reset_tbtt + *fill* 0x40130ba8 0x0 + .text.ic_del_key_all + 0x40130ba8 0xd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x40130ba8 ic_del_key_all + *fill* 0x40130bb5 0x3 + .text.ic_del_key + 0x40130bb8 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x28 (size before relaxing) + 0x40130bb8 ic_del_key + .text.ic_set_ac_param + 0x40130bd8 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x1e (size before relaxing) + 0x40130bd8 ic_set_ac_param + *fill* 0x40130bef 0x1 + .text.ic_ampdu_op + 0x40130bf0 0x1d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x2c (size before relaxing) + 0x40130bf0 ic_ampdu_op + *fill* 0x40130c0d 0x3 + .text.ic_set_trc + 0x40130c10 0xac /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0xd0 (size before relaxing) + 0x40130c14 ic_set_trc + .text.ic_deinit + 0x40130cbc 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x2f (size before relaxing) + 0x40130cbc ic_deinit + *fill* 0x40130ccf 0x1 + .text.ic_init 0x40130cd0 0x5b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x9a (size before relaxing) + 0x40130cd8 ic_init + *fill* 0x40130d2b 0x1 + .text.ic_set_interrupt_handler + 0x40130d2c 0x36 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x4a (size before relaxing) + 0x40130d30 ic_set_interrupt_handler + *fill* 0x40130d62 0x2 + .text.ic_clear_interrupt_handler + 0x40130d64 0x2c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x38 (size before relaxing) + 0x40130d64 ic_clear_interrupt_handler + .text.ic_enable_rx + 0x40130d90 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x23 (size before relaxing) + 0x40130d90 ic_enable_rx + *fill* 0x40130dab 0x1 + .text.ic_disable_rx + 0x40130dac 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x23 (size before relaxing) + 0x40130dac ic_disable_rx + *fill* 0x40130dc7 0x1 + .text.ic_set_beacon_int + 0x40130dc8 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x40130dc8 ic_set_beacon_int + *fill* 0x40130dd2 0x2 + .text.ic_set_mac + 0x40130dd4 0xd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x40130dd4 ic_set_mac + *fill* 0x40130de1 0x3 + .text.ic_set_bssid + 0x40130de4 0xd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x40130de4 ic_set_bssid + *fill* 0x40130df1 0x3 + .text.ic_set_current_channel + 0x40130df4 0xc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x13 (size before relaxing) + 0x40130df4 ic_set_current_channel + *fill* 0x40130e00 0x0 + .text.ic_get_random + 0x40130e00 0x11 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x40130e04 ic_get_random + *fill* 0x40130e11 0x3 + .text.ic_get_trc + 0x40130e14 0x10 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x17 (size before relaxing) + 0x40130e14 ic_get_trc + *fill* 0x40130e24 0x0 + .text.ic_get_pp_hdl + 0x40130e24 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x40130e24 ic_get_pp_hdl + *fill* 0x40130e2e 0x2 + .text.ic_set_rx_policy_ubssid_check + 0x40130e30 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x1c (size before relaxing) + 0x40130e30 ic_set_rx_policy_ubssid_check + .text.ic_set_rx_policy + 0x40130e48 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x1d (size before relaxing) + 0x40130e48 ic_set_rx_policy + *fill* 0x40130e5e 0x2 + .text.ic_set_sta_auth_flag + 0x40130e60 0xb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x40130e60 ic_set_sta_auth_flag + *fill* 0x40130e6b 0x1 + .text.ic_set_interface + 0x40130e6c 0xd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x40130e6c ic_set_interface + *fill* 0x40130e79 0x3 + .text.ic_trc_set_per_pkt_rate + 0x40130e7c 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x13 (size before relaxing) + 0x40130e7c ic_trc_set_per_pkt_rate + *fill* 0x40130e8b 0x1 + .text.ic_trc_update_ifx_phy_mode + 0x40130e8c 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x13 (size before relaxing) + 0x40130e8c ic_trc_update_ifx_phy_mode + *fill* 0x40130e9b 0x1 + .text.ic_stop_hw_txq + 0x40130e9c 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x40130e9c ic_stop_hw_txq + *fill* 0x40130ea6 0x2 + .text.ic_stop_sw_txq + 0x40130ea8 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x2a (size before relaxing) + 0x40130eac ic_stop_sw_txq + *fill* 0x40130ec2 0x2 + .text.ic_txq_empty + 0x40130ec4 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x40130ec4 ic_txq_empty + *fill* 0x40130ece 0x2 + .text.ic_create_wifi_task + 0x40130ed0 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x40130ed0 ic_create_wifi_task + *fill* 0x40130eda 0x2 + .text.ic_delete_wifi_task + 0x40130edc 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x40130edc ic_delete_wifi_task + *fill* 0x40130ee6 0x2 + .text.ic_set_sleep_min_active_time + 0x40130ee8 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x40130ee8 ic_set_sleep_min_active_time + *fill* 0x40130ef2 0x2 + .text.ic_set_keep_alive_time + 0x40130ef4 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x40130ef4 ic_set_keep_alive_time + *fill* 0x40130efe 0x2 + .text.ic_set_sleep_wait_broadcast_data_time + 0x40130f00 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x40130f00 ic_set_sleep_wait_broadcast_data_time + *fill* 0x40130f0a 0x2 + .text.lmacIsIdle + 0x40130f0c 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x40130f10 lmacIsIdle + *fill* 0x40130f2b 0x1 + .text.lmacGetTxFrame + 0x40130f2c 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x1e (size before relaxing) + 0x40130f2c lmacGetTxFrame + *fill* 0x40130f46 0x2 + .text.lmacIsLongFrame + 0x40130f48 0x21 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x40130f4c lmacIsLongFrame + *fill* 0x40130f69 0x3 + .text.lmacSetAcParam + 0x40130f6c 0x4d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x51 (size before relaxing) + 0x40130f6c lmacSetAcParam + *fill* 0x40130fb9 0x3 + .text.lmacInitAc + 0x40130fbc 0x3d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x41 (size before relaxing) + 0x40130fbc lmacInitAc + *fill* 0x40130ff9 0x3 + .text.lmacInit + 0x40130ffc 0xa0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0xdc (size before relaxing) + 0x40131004 lmacInit + .text.lmacEndRetryAMPDUFail + 0x4013109c 0x73 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x8f (size before relaxing) + 0x401310a0 lmacEndRetryAMPDUFail + *fill* 0x4013110f 0x1 + .text.esp_wifi_internal_set_retry_counter + 0x40131110 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x1a (size before relaxing) + 0x40131110 esp_wifi_internal_set_retry_counter + *fill* 0x40131126 0x2 + .text.esp_wifi_internal_set_msdu_lifetime + 0x40131128 0x11 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x15 (size before relaxing) + 0x40131128 esp_wifi_internal_set_msdu_lifetime + *fill* 0x40131139 0x3 + .text.lmacDiscardMSDU + 0x4013113c 0xd3 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0xdb (size before relaxing) + 0x40131148 lmacDiscardMSDU + *fill* 0x4013120f 0x1 + .text.lmacRetryTxFrame + 0x40131210 0xb8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0xc8 (size before relaxing) + 0x40131220 lmacRetryTxFrame + .text.lmacProcessShortRetryFail + 0x401312c8 0x21b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x256 (size before relaxing) + 0x401312ec lmacProcessShortRetryFail + *fill* 0x401314e3 0x1 + .text.lmacProcessCtsTimeout + 0x401314e4 0x60 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x78 (size before relaxing) + 0x401314ec lmacProcessCtsTimeout + .text.lmacProcessLongRetryFail + 0x40131544 0x18f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x1bf (size before relaxing) + 0x40131554 lmacProcessLongRetryFail + *fill* 0x401316d3 0x1 + .text.lmacProcessCollision + 0x401316d4 0xc4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0xec (size before relaxing) + 0x401316e4 lmacProcessCollision + .text.lmacProcessCollisions_task + 0x40131798 0x44 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x60 (size before relaxing) + 0x40131798 lmacProcessCollisions_task + .text.lmacProcessAckTimeout + 0x401317dc 0xc4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0xec (size before relaxing) + 0x401317ec lmacProcessAckTimeout + .text.lmacProcessTxRtsError + 0x401318a0 0xb9 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0xe1 (size before relaxing) + 0x401318b0 lmacProcessTxRtsError + *fill* 0x40131959 0x3 + .text.lmacProcessTxseckiderr + 0x4013195c 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x16 (size before relaxing) + 0x4013195c lmacProcessTxseckiderr + *fill* 0x4013196e 0x2 + .text.lmacProcessTxError + 0x40131970 0x9c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0xc4 (size before relaxing) + 0x40131978 lmacProcessTxError + .text.lmacRxDone + 0x40131a0c 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x20 (size before relaxing) + 0x40131a10 lmacRxDone + .text.lmacDisableTransmit + 0x40131a28 0x69 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x9d (size before relaxing) + 0x40131a2c lmacDisableTransmit + *fill* 0x40131a91 0x3 + .text.lmacProcessTxTimeout + 0x40131a94 0x3e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x52 (size before relaxing) + 0x40131a94 lmacProcessTxTimeout + *fill* 0x40131ad2 0x2 + .text.lmacStopTransmit + 0x40131ad4 0xc6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x106 (size before relaxing) + 0x40131ad8 lmacStopTransmit + *fill* 0x40131b9a 0x2 + .text.lmac_stop_hw_txq + 0x40131b9c 0x44 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x5c (size before relaxing) + 0x40131ba4 lmac_stop_hw_txq + .text.hal_pm_unblock_txq + 0x40131be0 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x23 (size before relaxing) + *fill* 0x40131bff 0x1 + .text.pm_incr_active_cnt + 0x40131c00 0x21 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + *fill* 0x40131c21 0x3 + .text.pm_incr_coex_active_cnt + 0x40131c24 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x23 (size before relaxing) + *fill* 0x40131c43 0x1 + .text.pm_disable_active_timer + 0x40131c44 0x21 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x29 (size before relaxing) + *fill* 0x40131c65 0x3 + .text.pm_beacon_monitor_tbtt_timeout + 0x40131c68 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x40131c77 0x1 + .text.pm_beacon_monitor_timeout + 0x40131c78 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x40131c87 0x1 + .text.pm_connectionless_wake_window_timeout + 0x40131c88 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x40131c97 0x1 + .text.pm_connectionless_wake_interval_timeout + 0x40131c98 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x40131ca7 0x1 + .text.pm_disconnected_sleep_delay_timeout + 0x40131ca8 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x40131cb7 0x1 + .text.pm_coex_slice_wifi_timeout + 0x40131cb8 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x40131cc7 0x1 + .text.pm_sleep_delay_timeout + 0x40131cc8 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x40131cd7 0x1 + .text.pm_active_timeout + 0x40131cd8 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x40131ce7 0x1 + .text.pm_dream_timeout + 0x40131ce8 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x40131cf7 0x1 + .text.pm_tbtt_timeout + 0x40131cf8 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x40131d07 0x1 + .text.pm_is_dream + 0x40131d08 0x14 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x18 (size before relaxing) + 0x40131d08 pm_is_dream + .text.pm_is_sleeping + 0x40131d1c 0x22 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x26 (size before relaxing) + 0x40131d1c pm_is_sleeping + *fill* 0x40131d3e 0x2 + .text.pm_is_open + 0x40131d40 0xb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0xf (size before relaxing) + 0x40131d40 pm_is_open + *fill* 0x40131d4b 0x1 + .text.pm_allow_tx + 0x40131d4c 0x60 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x70 (size before relaxing) + 0x40131d4c pm_allow_tx + .text.pm_noise_check_disable + 0x40131dac 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x17 (size before relaxing) + 0x40131dac pm_noise_check_disable + *fill* 0x40131dbf 0x1 + .text.pm_noise_check_enable + 0x40131dc0 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x17 (size before relaxing) + 0x40131dc0 pm_noise_check_enable + *fill* 0x40131dd3 0x1 + .text.pm_enable_sleep_delay_timer + 0x40131dd4 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x43 (size before relaxing) + 0x40131dd8 pm_enable_sleep_delay_timer + *fill* 0x40131e0f 0x1 + .text.pm_disable_disconnected_sleep_delay_timer + 0x40131e10 0x28 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x30 (size before relaxing) + 0x40131e14 pm_disable_disconnected_sleep_delay_timer + .text.pm_enable_disconnected_sleep_delay_timer + 0x40131e38 0x47 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x57 (size before relaxing) + 0x40131e38 pm_enable_disconnected_sleep_delay_timer + *fill* 0x40131e7f 0x1 + .text.pm_noise_check + 0x40131e80 0x5e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x7a (size before relaxing) + 0x40131e80 pm_noise_check + *fill* 0x40131ede 0x2 + .text.pm_register_pm_tx_null_cb + 0x40131ee0 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x40131ee4 pm_register_pm_tx_null_cb + *fill* 0x40131ef3 0x1 + .text.pm_send_nullfunc + 0x40131ef4 0x4d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x55 (size before relaxing) + 0x40131ef4 pm_send_nullfunc + *fill* 0x40131f41 0x3 + .text.pm_mac_wakeup + 0x40131f44 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x40131f48 pm_mac_wakeup + *fill* 0x40131f53 0x1 + .text.pm_mac_sleep + 0x40131f54 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x40131f58 pm_mac_sleep + *fill* 0x40131f63 0x1 + .text.pm_disconnected_wake + 0x40131f64 0x35 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x3d (size before relaxing) + 0x40131f68 pm_disconnected_wake + *fill* 0x40131f99 0x3 + .text.pm_disconnected_sleep + 0x40131f9c 0x86 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x9e (size before relaxing) + 0x40131fa4 pm_disconnected_sleep + *fill* 0x40132022 0x2 + .text.pm_wake_up + 0x40132024 0x3e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x4d (size before relaxing) + 0x4013202c pm_wake_up + *fill* 0x40132062 0x2 + .text.pm_send_probe_start + 0x40132064 0x35 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x45 (size before relaxing) + 0x40132064 pm_send_probe_start + *fill* 0x40132099 0x3 + .text.pm_off_channel + 0x4013209c 0xb9 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0xd9 (size before relaxing) + 0x4013209c pm_off_channel + *fill* 0x40132155 0x3 + .text.pm_wake_done + 0x40132158 0x50 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x5b (size before relaxing) + 0x4013215c pm_wake_done + *fill* 0x401321a8 0x0 + .text.pm_coex_separate_connectionless_window + 0x401321a8 0x2b3 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x2c3 (size before relaxing) + 0x401321b8 pm_coex_separate_connectionless_window + *fill* 0x4013245b 0x1 + .text.pm_go_to_sleep + 0x4013245c 0x68 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x87 (size before relaxing) + 0x40132464 pm_go_to_sleep + *fill* 0x401324c4 0x0 + .text.pm_set_next_tbtt + 0x401324c4 0x24c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x26c (size before relaxing) + 0x401324d8 pm_set_next_tbtt + .text.pm_mesh_set_next_tbtt + 0x40132710 0x62 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x7e (size before relaxing) + 0x40132710 pm_mesh_set_next_tbtt + *fill* 0x40132772 0x2 + .text.pm_beacon_timestamp_statistic + 0x40132774 0x35 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x39 (size before relaxing) + 0x4013277c pm_beacon_timestamp_statistic + *fill* 0x401327a9 0x3 + .text.pm_is_in_wifi_slice_threshold + 0x401327ac 0x45 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x4d (size before relaxing) + 0x401327ac pm_is_in_wifi_slice_threshold + *fill* 0x401327f1 0x3 + .text.pm_coex_schm_process + 0x401327f4 0x1ad /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x1e5 (size before relaxing) + 0x401327fc pm_coex_schm_process + *fill* 0x401329a1 0x3 + .text.pm_coex_schm_process_restart + 0x401329a4 0x10 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x14 (size before relaxing) + 0x401329a4 pm_coex_schm_process_restart + .text.pm_coex_slice_timeout_process + 0x401329b4 0xc2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0xf6 (size before relaxing) + 0x401329b8 pm_coex_slice_timeout_process + *fill* 0x40132a76 0x2 + .text.pm_dream_timeout_process + 0x40132a78 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x22 (size before relaxing) + 0x40132a78 pm_dream_timeout_process + *fill* 0x40132a8e 0x2 + .text.pm_sleep_delay_timeout_process + 0x40132a90 0x22 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x2a (size before relaxing) + 0x40132a90 pm_sleep_delay_timeout_process + *fill* 0x40132ab2 0x2 + .text.pm_disconnected_sleep_delay_timeout_process + 0x40132ab4 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x2a (size before relaxing) + 0x40132ab4 pm_disconnected_sleep_delay_timeout_process + *fill* 0x40132ad3 0x1 + .text.pm_tx_data_done_process + 0x40132ad4 0x80 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0xa8 (size before relaxing) + 0x40132ae0 pm_tx_data_done_process + .text.pm_tx_null_data_done_process + 0x40132b54 0x194 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x1e0 (size before relaxing) + 0x40132b54 pm_tx_null_data_done_process + .text.pm_go_to_wake + 0x40132ce8 0xdc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x128 (size before relaxing) + 0x40132ce8 pm_go_to_wake + .text.pm_send_probe_stop + 0x40132dc4 0x58 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x70 (size before relaxing) + 0x40132dc4 pm_send_probe_stop + .text.pm_on_channel + 0x40132e1c 0x8a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0xb2 (size before relaxing) + 0x40132e1c pm_on_channel + *fill* 0x40132ea6 0x2 + .text.pm_update_params + 0x40132ea8 0x88 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x9c (size before relaxing) + 0x40132ea8 pm_update_params + .text.pm_coex_tbtt_process + 0x40132f30 0xcc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x104 (size before relaxing) + 0x40132f30 pm_coex_tbtt_process + .text.pm_active_timeout_process + 0x40132ffc 0x59 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x79 (size before relaxing) + 0x40132ffc pm_active_timeout_process + *fill* 0x40133055 0x3 + .text.pm_send_sleep_null_cb + 0x40133058 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x16 (size before relaxing) + 0x40133058 pm_send_sleep_null_cb + *fill* 0x4013306a 0x2 + .text.pm_send_wake_null_cb + 0x4013306c 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x16 (size before relaxing) + 0x4013306c pm_send_wake_null_cb + *fill* 0x4013307e 0x2 + .text.pm_on_coex_schm_process_restart + 0x40133080 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0xf (size before relaxing) + 0x40133080 pm_on_coex_schm_process_restart + *fill* 0x40133088 0x0 + .text.pm_on_coex_schm_status_config + 0x40133088 0x66 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x72 (size before relaxing) + 0x40133088 pm_on_coex_schm_status_config + *fill* 0x401330ee 0x2 + .text.pm_on_coex_start + 0x401330f0 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x5b (size before relaxing) + 0x401330f4 pm_on_coex_start + *fill* 0x4013312b 0x1 + .text.pm_on_probe_resp_rx + 0x4013312c 0x6f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x7f (size before relaxing) + 0x40133134 pm_on_probe_resp_rx + *fill* 0x4013319b 0x1 + .text.pm_on_data_tx_done + 0x4013319c 0x11 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x18 (size before relaxing) + 0x4013319c pm_on_data_tx_done + *fill* 0x401331ad 0x3 + .text.pm_disconnected_start + 0x401331b0 0x56 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x7a (size before relaxing) + 0x401331b0 pm_disconnected_start + *fill* 0x40133206 0x2 + .text.pm_disconnected_stop + 0x40133208 0x37 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x53 (size before relaxing) + 0x40133208 pm_disconnected_stop + *fill* 0x4013323f 0x1 + .text.pm_start + 0x40133240 0x1c7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x21a (size before relaxing) + 0x4013324c pm_start + *fill* 0x40133407 0x1 + .text.pm_stop 0x40133408 0x1d6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x252 (size before relaxing) + 0x40133420 pm_stop + *fill* 0x401335de 0x2 + .text.pm_attach + 0x401335e0 0x145 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x191 (size before relaxing) + 0x40133610 pm_attach + *fill* 0x40133725 0x3 + .text.pm_deattach + 0x40133728 0x85 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0xb1 (size before relaxing) + 0x40133728 pm_deattach + *fill* 0x401337ad 0x3 + .text.pm_set_sleep_type + 0x401337b0 0xa4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0xcc (size before relaxing) + 0x401337b8 pm_set_sleep_type + .text.pm_get_sleep_type + 0x40133854 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0xe (size before relaxing) + 0x40133854 pm_get_sleep_type + *fill* 0x4013385e 0x2 + .text.pm_set_sleep_min_active_time + 0x40133860 0xd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x11 (size before relaxing) + 0x40133860 pm_set_sleep_min_active_time + *fill* 0x4013386d 0x3 + .text.pm_set_keep_alive_time + 0x40133870 0xd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x11 (size before relaxing) + 0x40133870 pm_set_keep_alive_time + *fill* 0x4013387d 0x3 + .text.pm_set_sleep_wait_broadcast_data_time + 0x40133880 0xd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x11 (size before relaxing) + 0x40133880 pm_set_sleep_wait_broadcast_data_time + *fill* 0x4013388d 0x3 + .text.pm_enable_sta_disconnected_power_management + 0x40133890 0x2d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x31 (size before relaxing) + 0x40133890 pm_enable_sta_disconnected_power_management + *fill* 0x401338bd 0x3 + .text.pm_coex_reconnect_policy + 0x401338c0 0x16 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_coex.o) + 0x1a (size before relaxing) + 0x401338c0 pm_coex_reconnect_policy + *fill* 0x401338d6 0x2 + .text.pm_coex_set_reconnect_policy + 0x401338d8 0x37 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_coex.o) + 0x47 (size before relaxing) + 0x401338dc pm_coex_set_reconnect_policy + *fill* 0x4013390f 0x1 + .text.pp_delete_task_manually + 0x40133910 0x41 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x45 (size before relaxing) + *fill* 0x40133951 0x3 + .text.xswap 0x40133954 0x22 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x4013395c xswap + *fill* 0x40133976 0x2 + .text.pp_register_net80211_tx_cb + 0x40133978 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x4013397c pp_register_net80211_tx_cb + *fill* 0x4013398b 0x1 + .text.pp_register_config_cb + 0x4013398c 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x40133990 pp_register_config_cb + *fill* 0x4013399f 0x1 + .text.pp_register_timer_cb + 0x401339a0 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x401339a4 pp_register_timer_cb + *fill* 0x401339b3 0x1 + .text.pp_register_michael_mic_failure_cb + 0x401339b4 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x401339b8 pp_register_michael_mic_failure_cb + *fill* 0x401339c7 0x1 + .text.pp_default_event_handler + 0x401339c8 0x21 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x2c (size before relaxing) + 0x401339d0 pp_default_event_handler + *fill* 0x401339e9 0x3 + .text.ppRegisterRxCallback + 0x401339ec 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x23 (size before relaxing) + 0x401339ec ppRegisterRxCallback + *fill* 0x40133a0b 0x1 + .text.ppRegisterTxCallback + 0x40133a0c 0x49 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x4d (size before relaxing) + 0x40133a0c ppRegisterTxCallback + *fill* 0x40133a55 0x3 + .text.ppUnregisterTxCallback + 0x40133a58 0x42 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x46 (size before relaxing) + 0x40133a58 ppUnregisterTxCallback + *fill* 0x40133a9a 0x2 + .text.pp_register_tx_cb + 0x40133a9c 0x15 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x19 (size before relaxing) + 0x40133a9c pp_register_tx_cb + *fill* 0x40133ab1 0x3 + .text.pp_unregister_tx_cb + 0x40133ab4 0xd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x14 (size before relaxing) + 0x40133ab4 pp_unregister_tx_cb + *fill* 0x40133ac1 0x3 + .text.ppCheckTxQIdle + 0x40133ac4 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x1f (size before relaxing) + 0x40133ac4 ppCheckTxQIdle + *fill* 0x40133adf 0x1 + .text.ppCheckIsConnTraffic + 0x40133ae0 0x50 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x54 (size before relaxing) + 0x40133ae0 ppCheckIsConnTraffic + .text.ppCheckTxConnTrafficIdle + 0x40133b30 0xc4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0xe8 (size before relaxing) + 0x40133b30 ppCheckTxConnTrafficIdle + .text.ppAssembleMicHdr + 0x40133bf4 0x88 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x9c (size before relaxing) + 0x40133bf4 ppAssembleMicHdr + .text.ppCalTkipMic + 0x40133c7c 0x104 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x138 (size before relaxing) + 0x40133c80 ppCalTkipMic + .text.ppClearRxFragment + 0x40133d80 0x2a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x3a (size before relaxing) + 0x40133d84 ppClearRxFragment + *fill* 0x40133daa 0x2 + .text.ppDequeueTxQ + 0x40133dac 0x35 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x39 (size before relaxing) + 0x40133dac ppDequeueTxQ + *fill* 0x40133de1 0x3 + .text.ppFillAMPDUBar + 0x40133de4 0xfa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x11a (size before relaxing) + 0x40133de8 ppFillAMPDUBar + *fill* 0x40133ede 0x2 + .text.ppCheckTxAMPDUlength + 0x40133ee0 0x7f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x87 (size before relaxing) + 0x40133ee0 ppCheckTxAMPDUlength + *fill* 0x40133f5f 0x1 + .text.ppReSendBar + 0x40133f60 0x127 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x15f (size before relaxing) + 0x40133f64 ppReSendBar + *fill* 0x40134087 0x1 + .text.ppRecordBarRRC + 0x40134088 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x22 (size before relaxing) + 0x40134088 ppRecordBarRRC + *fill* 0x401340a6 0x2 + .text.pp_create_task + 0x401340a8 0x189 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x1d1 (size before relaxing) + 0x401340d4 pp_create_task + *fill* 0x40134231 0x3 + .text.pp_deattach + 0x40134234 0x36 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x42 (size before relaxing) + 0x40134234 pp_deattach + *fill* 0x4013426a 0x2 + .text.ppInitTxq + 0x4013426c 0x62 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x66 (size before relaxing) + 0x4013426c ppInitTxq + *fill* 0x401342ce 0x2 + .text.ppEnableQueue + 0x401342d0 0x4f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x53 (size before relaxing) + 0x401342d0 ppEnableQueue + *fill* 0x4013431f 0x1 + .text.ppTxqEmpty + 0x40134320 0x5a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x5e (size before relaxing) + 0x40134324 ppTxqEmpty + *fill* 0x4013437a 0x2 + .text.pp_delete_task + 0x4013437c 0x7b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x96 (size before relaxing) + 0x40134380 pp_delete_task + *fill* 0x401343f7 0x1 + .text.ppDisableQueue + 0x401343f8 0x2f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x37 (size before relaxing) + 0x401343f8 ppDisableQueue + *fill* 0x40134427 0x1 + .text.ppCheckTxIdle + 0x40134428 0xb0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0xbc (size before relaxing) + 0x40134428 ppCheckTxIdle + .text.ppDiscardMPDU + 0x401344d8 0x2a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x32 (size before relaxing) + 0x401344d8 ppDiscardMPDU + *fill* 0x40134502 0x2 + .text.ppPrepareBarFrame + 0x40134504 0xcc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0xe8 (size before relaxing) + 0x40134514 ppPrepareBarFrame + .text.pp_attach + 0x401345d0 0xd1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x108 (size before relaxing) + 0x401345d8 pp_attach + *fill* 0x401346a1 0x3 + .text.ppClearTxq + 0x401346a4 0x40 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x53 (size before relaxing) + 0x401346a4 ppClearTxq + *fill* 0x401346e4 0x0 + .text.pp_stop_sw_txq + 0x401346e4 0x65 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x83 (size before relaxing) + 0x401346e4 pp_stop_sw_txq + *fill* 0x40134749 0x3 + .text.ppGetTaskHdl + 0x4013474c 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0xe (size before relaxing) + 0x4013474c ppGetTaskHdl + *fill* 0x40134756 0x2 + .text.dbg_lmac_ps_statis_reset + 0x40134758 0x12 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + 0x1a (size before relaxing) + 0x40134758 dbg_lmac_ps_statis_reset + *fill* 0x4013476a 0x2 + .text.pp_timer_beacon_monitor_tbtt + 0x4013476c 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + *fill* 0x4013477f 0x1 + .text.pp_timer_beacon_monitor + 0x40134780 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + *fill* 0x40134793 0x1 + .text.pp_timer_connectionless_wake_window + 0x40134794 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x401347a3 0x1 + .text.pp_timer_connectionless_wake_interval + 0x401347a4 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x401347b3 0x1 + .text.pp_timer_disconnected_sleep_delay + 0x401347b4 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x401347c3 0x1 + .text.pp_timer_sleep_delay + 0x401347c4 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x401347d3 0x1 + .text.pp_timer_coex_slice + 0x401347d4 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x401347e3 0x1 + .text.pp_timer_active + 0x401347e4 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x401347f3 0x1 + .text.pp_timer_dream + 0x401347f4 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x40134803 0x1 + .text.pp_timer_noise_check + 0x40134804 0xf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x40134813 0x1 + .text.pp_timer_register_post_cb + 0x40134814 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x40134818 pp_timer_register_post_cb + *fill* 0x40134827 0x1 + .text.pp_timer_process + 0x40134828 0x1a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x1e (size before relaxing) + 0x40134828 pp_timer_process + *fill* 0x40134842 0x2 + .text.RC_GetDuration + 0x40134844 0x75 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + *fill* 0x401348b9 0x3 + .text.RC_GetAckTime + 0x401348bc 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + 0x1b (size before relaxing) + 0x401348bc RC_GetAckTime + *fill* 0x401348d3 0x1 + .text.RC_GetCtsTime + 0x401348d4 0x49 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + 0x4d (size before relaxing) + 0x401348d4 RC_GetCtsTime + *fill* 0x4013491d 0x3 + .text.RC_GetBlockAckTime + 0x40134920 0x46 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + 0x52 (size before relaxing) + 0x40134920 RC_GetBlockAckTime + *fill* 0x40134966 0x2 + .text.rc11GRate2SchedIdx + 0x40134968 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rc11BRate2SchedIdx + 0x40134984 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rx11NRate2AMPDULimit + 0x401349a0 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x401349a4 rx11NRate2AMPDULimit + *fill* 0x401349bf 0x1 + .text.rcUpdateAMPDUParam + 0x401349c0 0xc2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0xc6 (size before relaxing) + 0x401349d0 rcUpdateAMPDUParam + *fill* 0x40134a82 0x2 + .text.rcGet11NHighestRateIdx + 0x40134a84 0x6c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x70 (size before relaxing) + 0x40134a88 rcGet11NHighestRateIdx + .text.rcGet11GHighestRateIdx + 0x40134af0 0x60 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x64 (size before relaxing) + 0x40134af4 rcGet11GHighestRateIdx + .text.rcGet11BHighestRateIdx + 0x40134b50 0x3c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x40 (size before relaxing) + 0x40134b54 rcGet11BHighestRateIdx + .text.rcGetHighestRateIdx + 0x40134b8c 0x42 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x52 (size before relaxing) + 0x40134b8c rcGetHighestRateIdx + *fill* 0x40134bce 0x2 + .text.rcClearCurSched + 0x40134bd0 0x31 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x40134bd4 rcClearCurSched + *fill* 0x40134c01 0x3 + .text.rcClearCurAMPDUSched + 0x40134c04 0x33 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x37 (size before relaxing) + 0x40134c04 rcClearCurAMPDUSched + *fill* 0x40134c37 0x1 + .text.rcUpdatePhyMode + 0x40134c38 0x2dc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x314 (size before relaxing) + 0x40134c80 rcUpdatePhyMode + .text.rcLowerSched + 0x40134f14 0x7a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x9a (size before relaxing) + 0x40134f14 rcLowerSched + *fill* 0x40134f8e 0x2 + .text.rcUpSched + 0x40134f90 0x6e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x8e (size before relaxing) + 0x40134f90 rcUpSched + *fill* 0x40134ffe 0x2 + .text.rcTxUpdatePer + 0x40135000 0x76 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x7e (size before relaxing) + 0x40135004 rcTxUpdatePer + *fill* 0x40135076 0x2 + .text.trc_onAmpduOp + 0x40135078 0xe1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0xe9 (size before relaxing) + 0x40135078 trc_onAmpduOp + *fill* 0x40135159 0x3 + .text.trc_set_per_pkt_rate + 0x4013515c 0x24 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x28 (size before relaxing) + 0x40135160 trc_set_per_pkt_rate + .text.rcGetAmpduSched + 0x40135180 0x8c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x98 (size before relaxing) + 0x4013518c rcGetAmpduSched + .text.rssi_margin + 0x4013520c 0xfa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x40135210 rssi_margin + *fill* 0x40135306 0x2 + .text.TRC_PER_IS_GOOD + 0x40135308 0x4d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x51 (size before relaxing) + 0x40135308 TRC_PER_IS_GOOD + *fill* 0x40135355 0x3 + .text.TRC_AMPDU_PER_DOWN_THRESHOLD + 0x40135358 0x72 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x86 (size before relaxing) + 0x4013535c TRC_AMPDU_PER_DOWN_THRESHOLD + *fill* 0x401353ca 0x2 + .text.rcAmpduLowerRate + 0x401353cc 0xdb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x126 (size before relaxing) + 0x401353cc rcAmpduLowerRate + *fill* 0x401354a7 0x1 + .text.TRC_AMPDU_PER_UP_THRESHOLD + 0x401354a8 0x5d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x69 (size before relaxing) + 0x401354ac TRC_AMPDU_PER_UP_THRESHOLD + *fill* 0x40135505 0x3 + .text.rcUpdateRate + 0x40135508 0x1fe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x252 (size before relaxing) + 0x40135514 rcUpdateRate + *fill* 0x40135706 0x2 + .text.rcReachRetryLimit + 0x40135708 0xca /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0xee (size before relaxing) + 0x40135724 rcReachRetryLimit + *fill* 0x401357d2 0x2 + .text.rcAttach + 0x401357d4 0x46 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x92 (size before relaxing) + 0x401357d4 rcAttach + *fill* 0x4013581a 0x2 + .text.rc_disable_trc + 0x4013581c 0x5e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x6e (size before relaxing) + 0x40135824 rc_disable_trc + *fill* 0x4013587a 0x2 + .text.rc_disable_trc_by_interface + 0x4013587c 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x22 (size before relaxing) + 0x4013587c rc_disable_trc_by_interface + *fill* 0x4013589a 0x2 + .text.rc_get_trc_by_index + 0x4013589c 0x56 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x5e (size before relaxing) + 0x4013589c rc_get_trc_by_index + *fill* 0x401358f2 0x2 + .text.trc_init + 0x401358f4 0xd8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0xf0 (size before relaxing) + 0x401358f8 trc_init + .text.trc_update_ifx_phy_mode + 0x401359cc 0x98 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0xb4 (size before relaxing) + 0x401359d0 trc_update_ifx_phy_mode + .text.trc_deinit + 0x40135a64 0x28 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x30 (size before relaxing) + 0x40135a64 trc_deinit + .text.rc_set_per_conn_fix_rate + 0x40135a8c 0x7d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x81 (size before relaxing) + 0x40135a94 rc_set_per_conn_fix_rate + *fill* 0x40135b09 0x3 + .text.rc_enable_trc + 0x40135b0c 0xd0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0xf8 (size before relaxing) + 0x40135b14 rc_enable_trc + .text.wDev_SetCurChannel + 0x40135bdc 0x1d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x21 (size before relaxing) + 0x40135bdc wDev_SetCurChannel + *fill* 0x40135bf9 0x3 + .text.wDev_Set_Beacon_Int + 0x40135bfc 0x11 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x40135c00 wDev_Set_Beacon_Int + *fill* 0x40135c0d 0x3 + .text.wDev_Reset_TBTT + 0x40135c10 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x12 (size before relaxing) + 0x40135c10 wDev_Reset_TBTT + *fill* 0x40135c1a 0x2 + .text.wDev_reset_bcnSendTick + 0x40135c1c 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x40135c20 wDev_reset_bcnSendTick + *fill* 0x40135c2f 0x1 + .text.wDev_Mesh_Enable_Tsf + 0x40135c30 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x12 (size before relaxing) + 0x40135c30 wDev_Mesh_Enable_Tsf + *fill* 0x40135c3a 0x2 + .text.wDev_Mesh_Set_TBTT + 0x40135c3c 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x16 (size before relaxing) + 0x40135c3c wDev_Mesh_Set_TBTT + *fill* 0x40135c4a 0x2 + .text.wDev_Get_Next_TBTT + 0x40135c4c 0x31 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x41 (size before relaxing) + 0x40135c4c wDev_Get_Next_TBTT + *fill* 0x40135c7d 0x3 + .text.wdev_csi_hw_bug_check + 0x40135c80 0x6e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x76 (size before relaxing) + 0x40135c84 wdev_csi_hw_bug_check + *fill* 0x40135cee 0x2 + .text.wdev_csi_rx_process + 0x40135cf0 0x10b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x127 (size before relaxing) + 0x40135d00 wdev_csi_rx_process + *fill* 0x40135dfb 0x1 + .text.wdev_set_promis_misc_pkt + 0x40135dfc 0x7c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x88 (size before relaxing) + 0x40135e08 wdev_set_promis_misc_pkt + .text.wdev_pop_promis_misc_buf + 0x40135e78 0x72 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x76 (size before relaxing) + 0x40135e7c wdev_pop_promis_misc_buf + *fill* 0x40135eea 0x2 + .text.wdev_process_misc_pkt + 0x40135eec 0x88 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x9c (size before relaxing) + 0x40135eec wdev_process_misc_pkt + .text.wdev_set_promis_misc_buf + 0x40135f74 0x6d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x81 (size before relaxing) + 0x40135f78 wdev_set_promis_misc_buf + *fill* 0x40135fe1 0x3 + .text.wdev_set_promis_ctrl_pkt + 0x40135fe4 0x35 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x3d (size before relaxing) + 0x40135fe8 wdev_set_promis_ctrl_pkt + *fill* 0x40136019 0x3 + .text.wdev_set_promis + 0x4013601c 0x6e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xb2 (size before relaxing) + 0x40136024 wdev_set_promis + *fill* 0x4013608a 0x2 + .text.wDev_SnifferRxAmpdu + 0x4013608c 0x72 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x82 (size before relaxing) + 0x4013608c wDev_SnifferRxAmpdu + *fill* 0x401360fe 0x2 + .text.wDev_SnifferRxData + 0x40136100 0x264 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x2a0 (size before relaxing) + 0x40136100 wDev_SnifferRxData + .text.wDev_IndicateCtrlFrame + 0x40136364 0x104 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x128 (size before relaxing) + 0x40136368 wDev_IndicateCtrlFrame + .text.wDev_nan_is_in_dw + 0x40136468 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x4013646c wDev_nan_is_in_dw + .text.wDev_Rxbuf_Deinit + 0x40136480 0x61 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x71 (size before relaxing) + 0x40136484 wDev_Rxbuf_Deinit + *fill* 0x401364e1 0x3 + .text.wDev_Rxbuf_Init + 0x401364e4 0x1f5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x251 (size before relaxing) + 0x40136504 wDev_Rxbuf_Init + *fill* 0x401366d9 0x3 + .text.wDev_disable_low_rate + 0x401366dc 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xf (size before relaxing) + 0x401366dc wDev_disable_low_rate + *fill* 0x401366e4 0x0 + .text.wDev_enable_low_rate + 0x401366e4 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xf (size before relaxing) + 0x401366e4 wDev_enable_low_rate + *fill* 0x401366ec 0x0 + .text.wDev_is_low_rate_enable + 0x401366ec 0x11 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x401366f0 wDev_is_low_rate_enable + *fill* 0x401366fd 0x3 + .text.wDev_Insert_KeyEntry + 0x40136700 0x82 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x96 (size before relaxing) + 0x40136700 wDev_Insert_KeyEntry + *fill* 0x40136782 0x2 + .text.wDev_remove_KeyEntry + 0x40136784 0x37 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x3f (size before relaxing) + 0x40136784 wDev_remove_KeyEntry + *fill* 0x401367bb 0x1 + .text.wDev_remove_KeyEntry_all_cnx + 0x401367bc 0x2a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x35 (size before relaxing) + 0x401367bc wDev_remove_KeyEntry_all_cnx + *fill* 0x401367e6 0x2 + .text.wDev_Crypto_Disable + 0x401367e8 0x22 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x2a (size before relaxing) + 0x401367e8 wDev_Crypto_Disable + *fill* 0x4013680a 0x2 + .text.wdev_is_mgmt_hwdecr_enabled + 0x4013680c 0xd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x14 (size before relaxing) + 0x4013680c wdev_is_mgmt_hwdecr_enabled + *fill* 0x40136819 0x3 + .text.config_get_wifi_ampdu_rx_enable + 0x4013681c 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x4013681c config_get_wifi_ampdu_rx_enable + *fill* 0x40136826 0x2 + .text.config_get_wifi_ampdu_tx_enable + 0x40136828 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x40136828 config_get_wifi_ampdu_tx_enable + *fill* 0x40136832 0x2 + .text.config_get_wifi_amsdu_tx_enable + 0x40136834 0xb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xf (size before relaxing) + 0x40136834 config_get_wifi_amsdu_tx_enable + *fill* 0x4013683f 0x1 + .text.config_get_wifi_nvs_enable + 0x40136840 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x40136840 config_get_wifi_nvs_enable + *fill* 0x4013684a 0x2 + .text.config_get_wifi_rx_baw + 0x4013684c 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x4013684c config_get_wifi_rx_baw + *fill* 0x40136856 0x2 + .text.config_get_wifi_static_rx_buffer_num + 0x40136858 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x40136858 config_get_wifi_static_rx_buffer_num + *fill* 0x40136862 0x2 + .text.config_get_wifi_dynamic_rx_buffer_num + 0x40136864 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x40136864 config_get_wifi_dynamic_rx_buffer_num + *fill* 0x4013686e 0x2 + .text.config_get_wifi_tx_buffer_type + 0x40136870 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x40136870 config_get_wifi_tx_buffer_type + *fill* 0x4013687a 0x2 + .text.config_get_wifi_static_tx_buffer_num + 0x4013687c 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x4013687c config_get_wifi_static_tx_buffer_num + *fill* 0x40136886 0x2 + .text.config_get_wifi_dynamic_tx_buffer_num + 0x40136888 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x40136888 config_get_wifi_dynamic_tx_buffer_num + *fill* 0x40136892 0x2 + .text.config_get_wifi_rx_mgmt_buffer_type + 0x40136894 0xb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xf (size before relaxing) + 0x40136894 config_get_wifi_rx_mgmt_buffer_type + *fill* 0x4013689f 0x1 + .text.config_get_wifi_rx_mgmt_buffer_num + 0x401368a0 0xb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xf (size before relaxing) + 0x401368a0 config_get_wifi_rx_mgmt_buffer_num + *fill* 0x401368ab 0x1 + .text.config_get_wifi_cache_tx_buffer_num + 0x401368ac 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x401368ac config_get_wifi_cache_tx_buffer_num + *fill* 0x401368b6 0x2 + .text.config_get_wifi_task_stack_size + 0x401368b8 0x21 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x2d (size before relaxing) + 0x401368b8 config_get_wifi_task_stack_size + *fill* 0x401368d9 0x3 + .text.config_get_wifi_task_core_id + 0x401368dc 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x401368dc config_get_wifi_task_core_id + *fill* 0x401368e6 0x2 + .text.config_get_wifi_beacon_max_len + 0x401368e8 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x401368e8 config_get_wifi_beacon_max_len + *fill* 0x401368f2 0x2 + .text.config_get_wifi_mgmt_sbuf_num + 0x401368f4 0xa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xe (size before relaxing) + 0x401368f4 config_get_wifi_mgmt_sbuf_num + *fill* 0x401368fe 0x2 + .text.config_get_wifi_feature_capabilities + 0x40136900 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x12 (size before relaxing) + 0x40136900 config_get_wifi_feature_capabilities + *fill* 0x4013690e 0x2 + .text.config_get_wifi_espnow_max_encrypt_num + 0x40136910 0xb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xf (size before relaxing) + 0x40136910 config_get_wifi_espnow_max_encrypt_num + *fill* 0x4013691b 0x1 + .text.config_is_cache_tx_buf_enabled + 0x4013691c 0xe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x12 (size before relaxing) + 0x4013691c config_is_cache_tx_buf_enabled + *fill* 0x4013692a 0x2 + .text.config_get_wifi_sta_disconnected_pm + 0x4013692c 0xb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xf (size before relaxing) + 0x4013692c config_get_wifi_sta_disconnected_pm + *fill* 0x40136937 0x1 + .text.hal_agreement_add_rx_ba + 0x40136938 0x115 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + 0x121 (size before relaxing) + 0x40136958 hal_agreement_add_rx_ba + *fill* 0x40136a4d 0x3 + .text.hal_agreement_clr_rx_ba + 0x40136a50 0x82 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + 0xa2 (size before relaxing) + 0x40136a54 hal_agreement_clr_rx_ba + *fill* 0x40136ad2 0x2 + .text.hal_agreement_del_rx_ba + 0x40136ad4 0x70 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + 0x90 (size before relaxing) + 0x40136ad8 hal_agreement_del_rx_ba + .text.hal_ba_session_store + 0x40136b44 0x3e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + 0x46 (size before relaxing) + 0x40136b44 hal_ba_session_store + *fill* 0x40136b82 0x2 + .text.hal_ba_session_restore + 0x40136b84 0x67 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + 0x77 (size before relaxing) + 0x40136b84 hal_ba_session_restore + *fill* 0x40136beb 0x1 + .text.hal_ba_session_restore_by_hw_index + 0x40136bec 0x81 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + 0x9d (size before relaxing) + 0x40136bec hal_ba_session_restore_by_hw_index + *fill* 0x40136c6d 0x3 + .text.hal_crypto_clr_key_entry + 0x40136c70 0xb8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + 0x40136c9c hal_crypto_clr_key_entry + .text.hal_crypto_set_key_entry + 0x40136d28 0x16e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + 0x19e (size before relaxing) + 0x40136d4c hal_crypto_set_key_entry + *fill* 0x40136e96 0x2 + .text.hal_crypto_is_key_valid + 0x40136e98 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + 0x1b (size before relaxing) + 0x40136e98 hal_crypto_is_key_valid + *fill* 0x40136eaf 0x1 + .text.hal_crypto_get_key_entry + 0x40136eb0 0xa4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + 0xbc (size before relaxing) + 0x40136ebc hal_crypto_get_key_entry + .text.hal_crypto_init + 0x40136f54 0x4d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + 0x40136f6c hal_crypto_init + *fill* 0x40136fa1 0x3 + .text.hal_crypto_mgmt_rx_enabled + 0x40136fa4 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + 0x23 (size before relaxing) + 0x40136fa4 hal_crypto_mgmt_rx_enabled + *fill* 0x40136fbf 0x1 + .text.hal_crypto_enable + 0x40136fc0 0xa5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + 0xbd (size before relaxing) + 0x40136fd0 hal_crypto_enable + *fill* 0x40137065 0x3 + .text.hal_crypto_disable + 0x40137068 0x3c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + 0x4c (size before relaxing) + 0x40137068 hal_crypto_disable + .text.mac_tx_set_plcp0 + 0x401370a4 0xc4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0xcc (size before relaxing) + 0x401370c8 mac_tx_set_plcp0 + .text.mac_tx_set_duration + 0x40137168 0x3c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x4013716c mac_tx_set_duration + .text.hal_mac_tx_set_ppdu + 0x401371a4 0x22 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x46 (size before relaxing) + 0x401371a4 hal_mac_tx_set_ppdu + *fill* 0x401371c6 0x2 + .text.hal_mac_set_txq_invalid + 0x401371c8 0x24 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x2c (size before relaxing) + 0x401371c8 hal_mac_set_txq_invalid + .text.hal_mac_is_txq_valid + 0x401371ec 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x1d (size before relaxing) + 0x401371ec hal_mac_is_txq_valid + *fill* 0x40137205 0x3 + .text.hal_now 0x40137208 0x43 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x5b (size before relaxing) + 0x40137208 hal_now + *fill* 0x4013724b 0x1 + .text.hal_mac_tx_set_cca + 0x4013724c 0x27 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x2b (size before relaxing) + 0x40137250 hal_mac_tx_set_cca + *fill* 0x40137273 0x1 + .text.hal_mac_disable_low_rate + 0x40137274 0x6f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x77 (size before relaxing) + 0x4013728c hal_mac_disable_low_rate + *fill* 0x401372e3 0x1 + .text.hal_mac_enable_low_rate + 0x401372e4 0x58 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x70 (size before relaxing) + 0x401372e8 hal_mac_enable_low_rate + .text.mac_rxbuf_init + 0x4013733c 0x7e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x86 (size before relaxing) + 0x4013735c mac_rxbuf_init + *fill* 0x401373ba 0x2 + .text.hal_disable_mac + 0x401373bc 0x4a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x401373cc hal_disable_mac + *fill* 0x40137406 0x2 + .text.hal_enable_mac + 0x40137408 0x2b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x37 (size before relaxing) + 0x40137408 hal_enable_mac + *fill* 0x40137433 0x1 + .text.mac_txrx_init + 0x40137434 0x296 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x2b6 (size before relaxing) + 0x40137494 mac_txrx_init + *fill* 0x401376ca 0x2 + .text.hal_mac_set_rxq_policy + 0x401376cc 0x45 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x401376d0 hal_mac_set_rxq_policy + *fill* 0x40137711 0x3 + .text.mac_last_rxbuf_init + 0x40137714 0x75 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x7d (size before relaxing) + 0x4013772c mac_last_rxbuf_init + *fill* 0x40137789 0x3 + .text.mac_last_rxbuf_deinit + 0x4013778c 0x58 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x74 (size before relaxing) + 0x4013778c mac_last_rxbuf_deinit + .text.hal_deinit + 0x401377e4 0x65 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x6d (size before relaxing) + 0x401377f0 hal_deinit + *fill* 0x40137849 0x3 + .text.hal_mac_set_addr + 0x4013784c 0x6a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x72 (size before relaxing) + 0x40137850 hal_mac_set_addr + *fill* 0x401378b6 0x2 + .text.hal_mac_set_bssid + 0x401378b8 0xa3 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0xb3 (size before relaxing) + 0x401378c8 hal_mac_set_bssid + *fill* 0x4013795b 0x1 + .text.hal_mac_rx_set_policy + 0x4013795c 0xc6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0xde (size before relaxing) + 0x40137964 hal_mac_rx_set_policy + *fill* 0x40137a22 0x2 + .text.hal_init + 0x40137a24 0xc6 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x10e (size before relaxing) + 0x40137a30 hal_init + *fill* 0x40137aea 0x2 + .text.hal_mac_tsf_get_time + 0x40137aec 0xce /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0xd6 (size before relaxing) + 0x40137afc hal_mac_tsf_get_time + *fill* 0x40137bba 0x2 + .text.wDev_Mesh_Disable_Tsf + 0x40137bbc 0x8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0xf (size before relaxing) + 0x40137bbc wDev_Mesh_Disable_Tsf + *fill* 0x40137bc4 0x0 + .text.hal_mac_tsf_set_time + 0x40137bc4 0x69 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x6d (size before relaxing) + 0x40137bd4 hal_mac_tsf_set_time + *fill* 0x40137c2d 0x3 + .text.hal_mac_tsf_reset + 0x40137c30 0x159 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x179 (size before relaxing) + 0x40137c4c hal_mac_tsf_reset + *fill* 0x40137d89 0x3 + .text.mac_tx_set_plcp1 + 0x40137d8c 0x90 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + 0x98 (size before relaxing) + 0x40137d94 mac_tx_set_plcp1 + .text.mac_tx_set_plcp2 + 0x40137e1c 0x7e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + 0x92 (size before relaxing) + 0x40137e30 mac_tx_set_plcp2 + *fill* 0x40137e9a 0x2 + .text.mac_tx_set_htsig + 0x40137e9c 0x135 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + 0x15d (size before relaxing) + 0x40137ea4 mac_tx_set_htsig + *fill* 0x40137fd1 0x3 + .text.hal_mac_get_txq_state + 0x40137fd4 0x45 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + 0x40137fdc hal_mac_get_txq_state + *fill* 0x40138019 0x3 + .text.hal_mac_clr_txq_state + 0x4013801c 0x5f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + 0x40138028 hal_mac_clr_txq_state + *fill* 0x4013807b 0x1 + .text.hal_mac_get_txq_pmd + 0x4013807c 0x54 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + 0x40138080 hal_mac_get_txq_pmd + .text.hal_attenna_init + 0x401380d0 0x80 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + 0x84 (size before relaxing) + 0x401380d4 hal_attenna_init + .text.hal_mac_rate_autoack_init + 0x40138150 0x79 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + 0x8d (size before relaxing) + 0x40138170 hal_mac_rate_autoack_init + *fill* 0x401381c9 0x3 + .text.hal_sniffer_enable + 0x401381cc 0x89 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + 0x8d (size before relaxing) + 0x401381d0 hal_sniffer_enable + *fill* 0x40138255 0x3 + .text.hal_sniffer_disable + 0x40138258 0x87 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + 0x8f (size before relaxing) + 0x40138258 hal_sniffer_disable + *fill* 0x401382df 0x1 + .text.hal_sniffer_rx_set_promis + 0x401382e0 0xb7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + 0xc7 (size before relaxing) + 0x401382e4 hal_sniffer_rx_set_promis + *fill* 0x40138397 0x1 + .text.hal_sniffer_rx_clr_statistics + 0x40138398 0x2f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + 0x37 (size before relaxing) + 0x4013839c hal_sniffer_rx_clr_statistics + *fill* 0x401383c7 0x1 + .text.hal_enable_sta_tsf + 0x401383c8 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + 0x23 (size before relaxing) + 0x401383cc hal_enable_sta_tsf + *fill* 0x401383e7 0x1 + .text.hal_disable_sta_tsf + 0x401383e8 0x1f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + 0x23 (size before relaxing) + 0x401383ec hal_disable_sta_tsf + *fill* 0x40138407 0x1 + .text.hal_disable_softap_tsf + 0x40138408 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + 0x23 (size before relaxing) + 0x40138408 hal_disable_softap_tsf + *fill* 0x40138423 0x1 + .literal.esp_partition_find + 0x40138424 0x8 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x10 (size before relaxing) + .literal.esp_partition_iterator_release + 0x4013842c 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x4 (size before relaxing) + .literal.esp_partition_get + 0x4013842c 0x10 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.esp_partition_find_first + 0x4013843c 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0xc (size before relaxing) + .literal.esp_partition_write + 0x4013843c 0x18 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x1c (size before relaxing) + .literal.esp_partition_read_raw + 0x40138454 0x8 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x14 (size before relaxing) + .literal.esp_partition_write_raw + 0x4013845c 0x4 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x14 (size before relaxing) + .literal.esp_partition_erase_range + 0x40138460 0x8 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x14 (size before relaxing) + .literal.esp_partition_mmap + 0x40138468 0x4 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x18 (size before relaxing) + .literal.esp_partition_read + 0x4013846c 0x8 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x24 (size before relaxing) + .literal.esp_partition_is_flash_region_writable + 0x40138474 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0xc (size before relaxing) + .literal.esp_partition_main_flash_region_safe + 0x40138474 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x4 (size before relaxing) + .literal.esp_ota_get_running_partition + 0x40138474 0x1c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x34 (size before relaxing) + .literal.clk_hal_lp_slow_get_freq_hz + 0x40138490 0x14 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x18 (size before relaxing) + .literal.clk_hal_xtal_get_freq_mhz + 0x401384a4 0x4 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .literal.clk_hal_apll_get_freq_hz + 0x401384a8 0x4 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x1c (size before relaxing) + .literal.clk_hal_soc_root_get_freq_mhz + 0x401384ac 0x10 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x24 (size before relaxing) + .literal.clk_hal_cpu_get_freq_hz + 0x401384bc 0x14 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x30 (size before relaxing) + .literal.clk_hal_ahb_get_freq_hz + 0x401384d0 0x4 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x10 (size before relaxing) + .literal.clk_hal_apb_get_freq_hz + 0x401384d4 0x0 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x4 (size before relaxing) + .literal.mpi_hal_enable_hardware_hw_op + 0x401384d4 0x8 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x10 (size before relaxing) + .literal.mpi_hal_disable_hardware_hw_op + 0x401384dc 0x0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x8 (size before relaxing) + .literal.mpi_hal_set_mode + 0x401384dc 0x4 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .literal.mpi_hal_write_to_mem_block + 0x401384e0 0x4 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .literal.mpi_hal_write_at_offset + 0x401384e4 0x0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x4 (size before relaxing) + .literal.mpi_hal_write_m_prime + 0x401384e4 0x4 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .literal.mpi_hal_write_rinv + 0x401384e8 0x0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x4 (size before relaxing) + .literal.mpi_hal_start_op + 0x401384e8 0x8 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .literal.mpi_hal_wait_op_complete + 0x401384f0 0x0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x8 (size before relaxing) + .literal.mpi_hal_read_result_hw_op + 0x401384f0 0x10 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x20 (size before relaxing) + .literal.sha_hal_wait_idle + 0x40138500 0x10 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x20 (size before relaxing) + .literal.sha_hal_hash_block + 0x40138510 0x10 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x14 (size before relaxing) + .literal.sha_hal_read_digest + 0x40138520 0xc esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x20 (size before relaxing) + .literal.aes_hal_setkey + 0x4013852c 0x8 esp-idf/hal/libhal.a(aes_hal.c.obj) + 0xc (size before relaxing) + .literal.aes_hal_transform_block + 0x40138534 0x18 esp-idf/hal/libhal.a(aes_hal.c.obj) + 0x20 (size before relaxing) + .literal.esp_dport_access_read_buffer + 0x4013854c 0x0 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + 0x4 (size before relaxing) + .literal.esp_fill_random + 0x4013854c 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + 0x18 (size before relaxing) + .literal.get_idx + 0x4013855c 0xc esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x14 (size before relaxing) + .literal.get_efuse_mac_custom + 0x40138568 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x38 (size before relaxing) + .literal.get_efuse_factory_mac + 0x40138580 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x44 (size before relaxing) + .literal.get_mac_addr_from_mac_table + 0x401385a0 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x20 (size before relaxing) + .literal.esp_efuse_mac_get_default + 0x401385a4 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x4 (size before relaxing) + .literal.esp_read_mac + 0x401385a4 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x5c (size before relaxing) + .literal.esp_crypto_mpi_lock_acquire + 0x401385b4 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .literal.esp_crypto_mpi_lock_release + 0x401385bc 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + 0x8 (size before relaxing) + .literal.ets_timer_setfn + 0x401385c0 0x18 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x20 (size before relaxing) + .literal.ets_timer_done + 0x401385d8 0x0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x8 (size before relaxing) + .literal.lib_printf + 0x401385d8 0x8 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + 0x14 (size before relaxing) + .literal.phy_printf + 0x401385e0 0x4 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + 0x8 (size before relaxing) + .literal.net80211_printf + 0x401385e4 0x4 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + 0x8 (size before relaxing) + .literal.mesh_printf + 0x401385e8 0x4 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + 0x8 (size before relaxing) + .literal.esp_phy_disable + 0x401385ec 0x14 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x24 (size before relaxing) + .literal.esp_wifi_bt_power_domain_off + 0x40138600 0x10 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x18 (size before relaxing) + .literal.esp_phy_load_cal_data_from_nvs + 0x40138610 0x34 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x70 (size before relaxing) + .literal.esp_phy_store_cal_data_to_nvs + 0x40138644 0x14 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x6c (size before relaxing) + .literal.esp_phy_load_cal_and_init + 0x40138658 0x24 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x80 (size before relaxing) + .literal.esp_phy_enable + 0x4013867c 0x10 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x38 (size before relaxing) + .literal.phy_set_modem_flag + 0x4013868c 0x4 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .literal.phy_clr_modem_flag + 0x40138690 0x0 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + 0x4 (size before relaxing) + .literal.phy_get_modem_flag + 0x40138690 0x0 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + 0x4 (size before relaxing) + .literal.lwip_link_select_cb + 0x40138690 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x10 (size before relaxing) + .literal.lwip_unlink_select_cb + 0x40138698 0x10 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x24 (size before relaxing) + .literal.lwip_recv_tcp + 0x401386a8 0x18 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x3c (size before relaxing) + .literal.sockaddr_to_ipaddr_port + 0x401386c0 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x10 (size before relaxing) + .literal.lwip_sock_make_addr$isra$0 + 0x401386c8 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x24 (size before relaxing) + .literal.lwip_recvfrom_udp_raw$constprop$0 + 0x401386d4 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x20 (size before relaxing) + .literal.free_socket_free_elements$isra$0 + 0x401386dc 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xc (size before relaxing) + .literal.free_socket + 0x401386dc 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x1c (size before relaxing) + .literal.done_socket + 0x401386e4 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x20 (size before relaxing) + .literal.lwip_select_dec_sockets_used + 0x401386ec 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x8 (size before relaxing) + .literal.tryget_socket_unconn + 0x401386f0 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x1c (size before relaxing) + .literal.tryget_socket + 0x401386f8 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x8 (size before relaxing) + .literal.get_socket + 0x401386f8 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x8 (size before relaxing) + .literal.tryget_socket_unconn_locked + 0x401386f8 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x14 (size before relaxing) + .literal.lwip_select_inc_sockets_used_set + 0x401386fc 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xc (size before relaxing) + .literal.lwip_selscan + 0x401386fc 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x24 (size before relaxing) + .literal.lwip_close + 0x40138704 0x10 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x48 (size before relaxing) + .literal.lwip_recvfrom + 0x40138714 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x24 (size before relaxing) + .literal.lwip_read + 0x40138714 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x4 (size before relaxing) + .literal.lwip_sendto + 0x40138714 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x3c (size before relaxing) + .literal.lwip_send + 0x40138714 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x1c (size before relaxing) + .literal.lwip_write + 0x40138714 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x4 (size before relaxing) + .literal.lwip_select + 0x40138714 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x8c (size before relaxing) + .literal.lwip_ioctl + 0x4013871c 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x14 (size before relaxing) + .literal.lwip_fcntl + 0x40138720 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x14 (size before relaxing) + .literal.tcpip_thread + 0x40138720 0x1c esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x40 (size before relaxing) + .literal.tcpip_inpkt + 0x4013873c 0x8 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x20 (size before relaxing) + .literal.tcpip_input + 0x40138744 0x8 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0xc (size before relaxing) + .literal.tcpip_try_callback + 0x4013874c 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x20 (size before relaxing) + .literal.tcpip_send_msg_wait_sem + 0x40138750 0x8 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x20 (size before relaxing) + .literal.tcpip_api_call + 0x40138758 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x20 (size before relaxing) + .literal.tcpip_init + 0x4013875c 0x10 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x30 (size before relaxing) + .literal.lwip_htonl + 0x4013876c 0x0 esp-idf/lwip/liblwip.a(def.c.obj) + 0x4 (size before relaxing) + .literal.dns_setserver + 0x4013876c 0x8 esp-idf/lwip/liblwip.a(dns.c.obj) + 0xc (size before relaxing) + .literal.lwip_init + 0x40138774 0x0 esp-idf/lwip/liblwip.a(init.c.obj) + 0x24 (size before relaxing) + .literal.ip_input + 0x40138774 0x0 esp-idf/lwip/liblwip.a(ip.c.obj) + 0x8 (size before relaxing) + .literal.mem_malloc + 0x40138774 0xc esp-idf/lwip/liblwip.a(mem.c.obj) + 0x1c (size before relaxing) + .literal.mem_free + 0x40138780 0xc esp-idf/lwip/liblwip.a(mem.c.obj) + 0x18 (size before relaxing) + .literal.mem_calloc + 0x4013878c 0x0 esp-idf/lwip/liblwip.a(mem.c.obj) + 0x4 (size before relaxing) + .literal.do_memp_free_pool$isra$0 + 0x4013878c 0xc esp-idf/lwip/liblwip.a(memp.c.obj) + 0x1c (size before relaxing) + .literal.do_memp_malloc_pool$isra$0 + 0x40138798 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x1c (size before relaxing) + .literal.memp_malloc + 0x401387a0 0x4 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x8 (size before relaxing) + .literal.memp_free + 0x401387a4 0x0 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x4 (size before relaxing) + .literal.netif_do_ip_addr_changed + 0x401387a4 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0xc (size before relaxing) + .literal.netif_issue_reports + 0x401387a4 0xc esp-idf/lwip/liblwip.a(netif.c.obj) + 0x1c (size before relaxing) + .literal.netif_do_set_ipaddr + 0x401387b0 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x8 (size before relaxing) + .literal.netif_poll + 0x401387b0 0x14 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x30 (size before relaxing) + .literal.netif_loopif_init + 0x401387c4 0x10 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x18 (size before relaxing) + .literal.netif_set_default + 0x401387d4 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_loop_output + 0x401387d8 0x14 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x44 (size before relaxing) + .literal.netif_loop_output_ipv4 + 0x401387ec 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x4 (size before relaxing) + .literal.netif_loop_output_ipv6 + 0x401387ec 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x4 (size before relaxing) + .literal.netif_get_ip6_addr_match + 0x401387ec 0xc esp-idf/lwip/liblwip.a(netif.c.obj) + 0x14 (size before relaxing) + .literal.netif_get_by_index + 0x401387f8 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_add_ext_callback + 0x401387fc 0x10 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x18 (size before relaxing) + .literal.netif_remove_ext_callback + 0x4013880c 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x14 (size before relaxing) + .literal.netif_invoke_ext_callback + 0x40138810 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x14 (size before relaxing) + .literal.netif_set_addr + 0x40138818 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x10 (size before relaxing) + .literal.netif_add + 0x40138818 0x18 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x3c (size before relaxing) + .literal.netif_set_up + 0x40138830 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0xc (size before relaxing) + .literal.netif_set_down + 0x40138830 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0xc (size before relaxing) + .literal.netif_remove + 0x40138830 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x20 (size before relaxing) + .literal.netif_set_link_up + 0x40138830 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x10 (size before relaxing) + .literal.netif_init + 0x40138830 0x10 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x1c (size before relaxing) + .literal.netif_set_link_down + 0x40138840 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x4 (size before relaxing) + .literal.netif_ip6_addr_set_parts + 0x40138840 0xc esp-idf/lwip/liblwip.a(netif.c.obj) + 0x24 (size before relaxing) + .literal.netif_ip6_addr_set + 0x4013884c 0xc esp-idf/lwip/liblwip.a(netif.c.obj) + 0x18 (size before relaxing) + .literal.netif_ip6_addr_set_state + 0x40138858 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x24 (size before relaxing) + .literal.pbuf_free_ooseq_callback + 0x4013885c 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x14 (size before relaxing) + .literal.pbuf_add_header_impl + 0x40138864 0xc esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x10 (size before relaxing) + .literal.pbuf_alloc_reference + 0x40138870 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x14 (size before relaxing) + .literal.pbuf_add_header + 0x40138878 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_add_header_force + 0x40138878 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_remove_header + 0x40138878 0x4 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x10 (size before relaxing) + .literal.pbuf_header_force + 0x4013887c 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x8 (size before relaxing) + .literal.pbuf_free + 0x4013887c 0x10 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x2c (size before relaxing) + .literal.pbuf_alloc + 0x4013888c 0x14 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x44 (size before relaxing) + .literal.pbuf_realloc + 0x401388a0 0x10 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x20 (size before relaxing) + .literal.pbuf_free_header + 0x401388b0 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x8 (size before relaxing) + .literal.pbuf_ref + 0x401388b0 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x18 (size before relaxing) + .literal.pbuf_cat + 0x401388b8 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x10 (size before relaxing) + .literal.pbuf_chain + 0x401388c0 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x8 (size before relaxing) + .literal.pbuf_copy_partial_pbuf + 0x401388c0 0xc esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x18 (size before relaxing) + .literal.pbuf_copy + 0x401388cc 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_copy_partial + 0x401388cc 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_take + 0x401388cc 0xc esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x18 (size before relaxing) + .literal.pbuf_take_at + 0x401388d8 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x1c (size before relaxing) + .literal.pbuf_clone + 0x401388e0 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x18 (size before relaxing) + .literal.pbuf_try_get_at + 0x401388e8 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_get_at + 0x401388e8 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.raw_input + 0x401388e8 0x18 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x20 (size before relaxing) + .literal.raw_sendto_if_src + 0x40138900 0xc esp-idf/lwip/liblwip.a(raw.c.obj) + 0x40 (size before relaxing) + .literal.raw_sendto + 0x4013890c 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x18 (size before relaxing) + .literal.raw_send + 0x4013890c 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x4 (size before relaxing) + .literal.raw_remove + 0x4013890c 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x8 (size before relaxing) + .literal.raw_netif_ip_addr_changed + 0x4013890c 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x4 (size before relaxing) + .literal.tcp_init + 0x4013890c 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x8 (size before relaxing) + .literal.tcp_free + 0x40138910 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_backlog_accepted + 0x4013891c 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_close_shutdown_fin + 0x40138928 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x24 (size before relaxing) + .literal.tcp_update_rcv_ann_wnd + 0x4013892c 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_recved + 0x40138938 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x18 (size before relaxing) + .literal.tcp_seg_free + 0x40138940 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x8 (size before relaxing) + .literal.tcp_segs_free + 0x40138940 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4 (size before relaxing) + .literal.tcp_seg_copy + 0x40138940 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x1c (size before relaxing) + .literal.tcp_recv + 0x40138948 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x10 (size before relaxing) + .literal.tcp_sent + 0x40138950 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x10 (size before relaxing) + .literal.tcp_err + 0x40138958 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x10 (size before relaxing) + .literal.tcp_poll + 0x40138960 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x10 (size before relaxing) + .literal.tcp_next_iss + 0x40138968 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_eff_send_mss_netif + 0x40138970 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_free_ooseq + 0x40138978 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4 (size before relaxing) + .literal.tcp_pcb_purge + 0x40138978 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_pcb_remove + 0x40138978 0x18 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x28 (size before relaxing) + .literal.tcp_abandon + 0x40138990 0x14 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x44 (size before relaxing) + .literal.tcp_abort + 0x401389a4 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4 (size before relaxing) + .literal.tcp_netif_ip_addr_changed_pcblist + 0x401389a4 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_netif_ip_addr_changed + 0x401389ac 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_kill_state + 0x401389b0 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xc (size before relaxing) + .literal.tcp_alloc + 0x401389b4 0x1c esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x54 (size before relaxing) + .literal.tcp_close_shutdown + 0x401389d0 0x1c esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x54 (size before relaxing) + .literal.tcp_close_ext + 0x401389ec 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4 (size before relaxing) + .literal.tcp_close + 0x401389ec 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4 (size before relaxing) + .literal.tcp_recv_null + 0x401389ec 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xc (size before relaxing) + .literal.tcp_process_refused_data + 0x401389ec 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4 (size before relaxing) + .literal.tcp_fasttmr + 0x401389ec 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x18 (size before relaxing) + .literal.tcp_shutdown + 0x401389ec 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x8 (size before relaxing) + .literal.tcp_slowtmr + 0x401389ec 0x34 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x88 (size before relaxing) + .literal.tcp_tmr + 0x40138a20 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xc (size before relaxing) + .literal.tcp_get_next_optbyte + 0x40138a24 0x10 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .literal.tcp_oos_insert_segment + 0x40138a34 0x10 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x2c (size before relaxing) + .literal.tcp_parseopt + 0x40138a44 0xc esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x2c (size before relaxing) + .literal.tcp_input_delayed_close + 0x40138a50 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x10 (size before relaxing) + .literal.tcp_free_acked_segments$isra$0 + 0x40138a54 0x14 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x2c (size before relaxing) + .literal.tcp_receive + 0x40138a68 0x38 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x148 (size before relaxing) + .literal.tcp_input + 0x40138aa0 0x48 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x184 (size before relaxing) + .literal.tcp_trigger_input_pcb_close + 0x40138ae8 0x0 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x4 (size before relaxing) + .literal.tcp_create_segment + 0x40138ae8 0x14 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x38 (size before relaxing) + .literal.tcp_output_alloc_header_common + 0x40138afc 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x28 (size before relaxing) + .literal.tcp_route + 0x40138b04 0x0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0xc (size before relaxing) + .literal.tcp_output_control_segment + 0x40138b04 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x24 (size before relaxing) + .literal.tcp_output_segment_busy + 0x40138b0c 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x10 (size before relaxing) + .literal.tcp_output_alloc_header$constprop$0 + 0x40138b14 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x14 (size before relaxing) + .literal.tcp_output_fill_options$constprop$0 + 0x40138b1c 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x10 (size before relaxing) + .literal.tcp_write + 0x40138b24 0x30 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x58 (size before relaxing) + .literal.tcp_split_unsent_seg + 0x40138b54 0x10 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x44 (size before relaxing) + .literal.tcp_enqueue_flags + 0x40138b64 0x1c esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x30 (size before relaxing) + .literal.tcp_send_fin + 0x40138b80 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x1c (size before relaxing) + .literal.tcp_rexmit_rto_prepare + 0x40138b88 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x20 (size before relaxing) + .literal.tcp_rexmit + 0x40138b90 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x1c (size before relaxing) + .literal.tcp_rexmit_fast + 0x40138b98 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x14 (size before relaxing) + .literal.tcp_rst + 0x40138ba0 0xc esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x24 (size before relaxing) + .literal.tcp_send_empty_ack + 0x40138bac 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x20 (size before relaxing) + .literal.tcp_output + 0x40138bb4 0x18 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x88 (size before relaxing) + .literal.tcp_rexmit_rto_commit + 0x40138bcc 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x14 (size before relaxing) + .literal.tcp_rexmit_rto + 0x40138bd4 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x18 (size before relaxing) + .literal.tcp_keepalive + 0x40138bdc 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x20 (size before relaxing) + .literal.tcp_zero_window_probe + 0x40138be4 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x2c (size before relaxing) + .literal.sys_timeout_abs + 0x40138bec 0x10 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x18 (size before relaxing) + .literal.lwip_cyclic_timer + 0x40138bfc 0x8 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x10 (size before relaxing) + .literal.sys_timeout + 0x40138c04 0x8 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x18 (size before relaxing) + .literal.tcp_timer_needed + 0x40138c0c 0x8 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x14 (size before relaxing) + .literal.tcpip_tcp_timer + 0x40138c14 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x18 (size before relaxing) + .literal.sys_timeouts_init + 0x40138c14 0xc esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x1c (size before relaxing) + .literal.sys_untimeout + 0x40138c20 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x8 (size before relaxing) + .literal.sys_check_timeouts + 0x40138c20 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x10 (size before relaxing) + .literal.sys_timeouts_sleeptime + 0x40138c20 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x8 (size before relaxing) + .literal.udp_input_local_match + 0x40138c20 0x10 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x18 (size before relaxing) + .literal.udp_init + 0x40138c30 0x4 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x8 (size before relaxing) + .literal.udp_input + 0x40138c34 0x14 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x58 (size before relaxing) + .literal.udp_bind + 0x40138c48 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x18 (size before relaxing) + .literal.udp_sendto_if_src + 0x40138c48 0xc esp-idf/lwip/liblwip.a(udp.c.obj) + 0x40 (size before relaxing) + .literal.udp_sendto_if + 0x40138c54 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0xc (size before relaxing) + .literal.udp_sendto + 0x40138c54 0x4 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x1c (size before relaxing) + .literal.udp_send + 0x40138c58 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x4 (size before relaxing) + .literal.udp_connect + 0x40138c58 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x14 (size before relaxing) + .literal.udp_disconnect + 0x40138c58 0x4 esp-idf/lwip/liblwip.a(udp.c.obj) + .literal.udp_remove + 0x40138c5c 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x8 (size before relaxing) + .literal.udp_new + 0x40138c5c 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x8 (size before relaxing) + .literal.udp_netif_ip_addr_changed + 0x40138c5c 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x4 (size before relaxing) + .literal.dhcp_option_trailer + 0x40138c5c 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x8 (size before relaxing) + .literal.dhcp_check + 0x40138c5c 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + .literal.dhcp_bind + 0x40138c60 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + .literal.dhcp_inc_pcb_refcount + 0x40138c60 0x18 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x30 (size before relaxing) + .literal.dhcp_option_short + 0x40138c78 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + .literal.dhcp_option + 0x40138c80 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + .literal.dhcp_option_byte$part$0 + 0x40138c88 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + .literal.dhcp_option_long + 0x40138c90 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + .literal.dhcp_dec_pcb_refcount + 0x40138c98 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x1c (size before relaxing) + .literal.dhcp_handle_ack$isra$0 + 0x40138ca0 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x18 (size before relaxing) + .literal.dhcp_create_msg + 0x40138ca8 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x24 (size before relaxing) + .literal.dhcp_option_hostname$isra$0 + 0x40138cb4 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x1c (size before relaxing) + .literal.dhcp_discover + 0x40138cbc 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x48 (size before relaxing) + .literal.dhcp_reboot$isra$0 + 0x40138cc0 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x50 (size before relaxing) + .literal.dhcp_select$isra$0 + 0x40138cc0 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x60 (size before relaxing) + .literal.dhcp_recv + 0x40138cc0 0x14 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x6c (size before relaxing) + .literal.dhcp_set_struct + 0x40138cd4 0x10 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x1c (size before relaxing) + .literal.dhcp_cleanup + 0x40138ce4 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x14 (size before relaxing) + .literal.dhcp_network_changed + 0x40138ce8 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x18 (size before relaxing) + .literal.dhcp_arp_reply + 0x40138cf0 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x38 (size before relaxing) + .literal.dhcp_renew + 0x40138cf0 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x40 (size before relaxing) + .literal.dhcp_release_and_stop + 0x40138cf0 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x44 (size before relaxing) + .literal.dhcp_start + 0x40138cf0 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x24 (size before relaxing) + .literal.dhcp_coarse_tmr + 0x40138cf0 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x54 (size before relaxing) + .literal.dhcp_fine_tmr + 0x40138cf0 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x28 (size before relaxing) + .literal.dhcp_fine_timeout_cb + 0x40138cf0 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4 (size before relaxing) + .literal.dhcp_release + 0x40138cf0 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4 (size before relaxing) + .literal.dhcp_stop + 0x40138cf0 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4 (size before relaxing) + .literal.etharp_free_entry + 0x40138cf0 0x10 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x1c (size before relaxing) + .literal.etharp_find_entry + 0x40138d00 0xc esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x1c (size before relaxing) + .literal.etharp_update_arp_entry + 0x40138d0c 0x8 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x2c (size before relaxing) + .literal.etharp_raw + 0x40138d14 0x10 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x38 (size before relaxing) + .literal.etharp_add_static_entry + 0x40138d24 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x8 (size before relaxing) + .literal.etharp_remove_static_entry + 0x40138d24 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0xc (size before relaxing) + .literal.etharp_cleanup_netif + 0x40138d24 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x8 (size before relaxing) + .literal.etharp_input + 0x40138d24 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x18 (size before relaxing) + .literal.etharp_request + 0x40138d24 0x8 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0xc (size before relaxing) + .literal.etharp_tmr + 0x40138d2c 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0xc (size before relaxing) + .literal.etharp_output_to_arp_index + 0x40138d2c 0x8 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x24 (size before relaxing) + .literal.etharp_query + 0x40138d34 0x10 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x44 (size before relaxing) + .literal.etharp_output + 0x40138d44 0x10 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x38 (size before relaxing) + .literal.icmp_input + 0x40138d54 0x10 esp-idf/lwip/liblwip.a(icmp.c.obj) + 0x58 (size before relaxing) + .literal.icmp_dest_unreach + 0x40138d64 0x8 esp-idf/lwip/liblwip.a(icmp.c.obj) + 0x28 (size before relaxing) + .literal.igmp_start_timer + 0x40138d6c 0x8 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x10 (size before relaxing) + .literal.igmp_delaying_member + 0x40138d74 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x4 (size before relaxing) + .literal.igmp_send + 0x40138d74 0x10 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x28 (size before relaxing) + .literal.igmp_init + 0x40138d84 0xc esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x10 (size before relaxing) + .literal.igmp_stop + 0x40138d90 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x4 (size before relaxing) + .literal.igmp_report_groups + 0x40138d90 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x4 (size before relaxing) + .literal.igmp_lookup_group + 0x40138d90 0xc esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x20 (size before relaxing) + .literal.igmp_start + 0x40138d9c 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x8 (size before relaxing) + .literal.igmp_input + 0x40138d9c 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x1c (size before relaxing) + .literal.igmp_joingroup_netif + 0x40138d9c 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x10 (size before relaxing) + .literal.igmp_joingroup + 0x40138d9c 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0xc (size before relaxing) + .literal.igmp_leavegroup_netif + 0x40138d9c 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x10 (size before relaxing) + .literal.igmp_leavegroup + 0x40138d9c 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0xc (size before relaxing) + .literal.igmp_tmr + 0x40138d9c 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x1c (size before relaxing) + .literal.igmp_timeout_cb + 0x40138d9c 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x4 (size before relaxing) + .literal.ip4_input_accept + 0x40138d9c 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x8 (size before relaxing) + .literal.ip4_route + 0x40138d9c 0x4 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x10 (size before relaxing) + .literal.ip4_route_src + 0x40138da0 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x8 (size before relaxing) + .literal.ip4_input + 0x40138da0 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x54 (size before relaxing) + .literal.ip4_output_if_opt_src + 0x40138da0 0x14 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x40 (size before relaxing) + .literal.ip4_output_if_opt + 0x40138db4 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x4 (size before relaxing) + .literal.ip4_output_if + 0x40138db4 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x4 (size before relaxing) + .literal.ip4_output_if_src + 0x40138db4 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x4 (size before relaxing) + .literal.ip4_frag + 0x40138db4 0xc esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + 0x38 (size before relaxing) + .literal.icmp6_send_response_with_addrs_and_netif + 0x40138dc0 0x10 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x2c (size before relaxing) + .literal.icmp6_send_response + 0x40138dd0 0x8 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x20 (size before relaxing) + .literal.icmp6_input + 0x40138dd8 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x34 (size before relaxing) + .literal.icmp6_dest_unreach + 0x40138dd8 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x4 (size before relaxing) + .literal.icmp6_param_problem + 0x40138dd8 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x8 (size before relaxing) + .literal.ip6_input_accept + 0x40138dd8 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x4 (size before relaxing) + .literal.ip6_route + 0x40138dd8 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x14 (size before relaxing) + .literal.ip6_select_source_address + 0x40138dd8 0x4 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0xc (size before relaxing) + .literal.ip6_input + 0x40138ddc 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x6c (size before relaxing) + .literal.ip6_output_if_src + 0x40138ddc 0x14 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x3c (size before relaxing) + .literal.ip6_output_if + 0x40138df0 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x8 (size before relaxing) + .literal.ip6_options_add_hbh_ra + 0x40138df0 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x4 (size before relaxing) + .literal.ip6_frag + 0x40138df0 0x14 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + 0x40 (size before relaxing) + .literal.mld6_delayed_report + 0x40138e04 0xc esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x14 (size before relaxing) + .literal.mld6_send + 0x40138e10 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x1c (size before relaxing) + .literal.mld6_stop + 0x40138e10 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x4 (size before relaxing) + .literal.mld6_report_groups + 0x40138e10 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x4 (size before relaxing) + .literal.mld6_input + 0x40138e10 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x28 (size before relaxing) + .literal.mld6_joingroup_netif + 0x40138e10 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x18 (size before relaxing) + .literal.mld6_joingroup + 0x40138e10 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0xc (size before relaxing) + .literal.mld6_leavegroup_netif + 0x40138e10 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x14 (size before relaxing) + .literal.mld6_leavegroup + 0x40138e10 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0xc (size before relaxing) + .literal.mld6_tmr + 0x40138e10 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x18 (size before relaxing) + .literal.mld6_timeout_cb + 0x40138e10 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x4 (size before relaxing) + .literal.nd6_find_neighbor_cache_entry + 0x40138e10 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) + .literal.nd6_find_destination_cache_entry + 0x40138e14 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) + .literal.nd6_send_na + 0x40138e18 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x1c (size before relaxing) + .literal.nd6_send_rs + 0x40138e1c 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x1c (size before relaxing) + .literal.nd6_send_ns + 0x40138e1c 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x1c (size before relaxing) + .literal.nd6_send_q$part$0 + 0x40138e1c 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x14 (size before relaxing) + .literal.nd6_duplicate_addr_detected + 0x40138e1c 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0xc (size before relaxing) + .literal.nd6_free_q + 0x40138e1c 0x14 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x20 (size before relaxing) + .literal.nd6_free_neighbor_cache_entry + 0x40138e30 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x8 (size before relaxing) + .literal.nd6_new_neighbor_cache_entry + 0x40138e30 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x8 (size before relaxing) + .literal.nd6_select_router$isra$0 + 0x40138e30 0x8 esp-idf/lwip/liblwip.a(nd6.c.obj) + .literal.nd6_input + 0x40138e38 0x18 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0xcc (size before relaxing) + .literal.nd6_tmr + 0x40138e50 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x38 (size before relaxing) + .literal.nd6_clear_destination_cache + 0x40138e54 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x4 (size before relaxing) + .literal.nd6_find_route + 0x40138e54 0x8 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x1c (size before relaxing) + .literal.nd6_get_next_hop_addr_or_queue + 0x40138e5c 0x10 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x60 (size before relaxing) + .literal.nd6_get_destination_mtu + 0x40138e6c 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x8 (size before relaxing) + .literal.nd6_reachability_hint + 0x40138e6c 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x1c (size before relaxing) + .literal.nd6_cleanup_netif + 0x40138e6c 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x14 (size before relaxing) + .literal.nd6_adjust_mld_membership + 0x40138e6c 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0xc (size before relaxing) + .literal.ethernet_input + 0x40138e6c 0x4 esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0x28 (size before relaxing) + .literal.ethernet_output + 0x40138e70 0xc esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0x20 (size before relaxing) + .literal.lwip_init_tcp_isn + 0x40138e7c 0x10 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + 0x18 (size before relaxing) + .literal.lwip_hook_tcp_isn + 0x40138e8c 0x18 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + 0x3c (size before relaxing) + .literal.ip4_route_src_hook + 0x40138ea4 0x0 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + 0x4 (size before relaxing) + .literal.dhcp_parse_extra_opts + 0x40138ea4 0x0 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + 0xc (size before relaxing) + .literal.sys_thread_sem_free + 0x40138ea4 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x8 (size before relaxing) + .literal.sys_mutex_new + 0x40138ea8 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .literal.sys_mutex_lock + 0x40138eac 0x10 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x14 (size before relaxing) + .literal.sys_mutex_unlock + 0x40138ebc 0xc esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x14 (size before relaxing) + .literal.sys_mutex_free + 0x40138ec8 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x4 (size before relaxing) + .literal.sys_sem_new + 0x40138ec8 0x10 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x1c (size before relaxing) + .literal.sys_sem_signal + 0x40138ed8 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x14 (size before relaxing) + .literal.sys_sem_signal_isr + 0x40138ee0 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .literal.sys_arch_sem_wait + 0x40138ee4 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x1c (size before relaxing) + .literal.sys_sem_free + 0x40138eec 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x4 (size before relaxing) + .literal.sys_mbox_new + 0x40138eec 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0xc (size before relaxing) + .literal.sys_mbox_post + 0x40138eec 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x14 (size before relaxing) + .literal.sys_mbox_trypost + 0x40138ef4 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x4 (size before relaxing) + .literal.sys_arch_mbox_fetch + 0x40138ef4 0xc esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x1c (size before relaxing) + .literal.sys_arch_mbox_tryfetch + 0x40138f00 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x14 (size before relaxing) + .literal.sys_mbox_free + 0x40138f04 0xc esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x1c (size before relaxing) + .literal.sys_thread_new + 0x40138f10 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .literal.sys_init + 0x40138f14 0x18 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x28 (size before relaxing) + .literal.sys_now + 0x40138f2c 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .literal.sys_arch_protect + 0x40138f30 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0xc (size before relaxing) + .literal.sys_arch_unprotect + 0x40138f30 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x8 (size before relaxing) + .literal.sys_thread_sem_init + 0x40138f30 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x24 (size before relaxing) + .literal.sys_thread_sem_get + 0x40138f38 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0xc (size before relaxing) + .literal.sys_thread_tcpip + 0x40138f3c 0x10 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x1c (size before relaxing) + .literal.lwip_get_socket_select_semaphore + 0x40138f4c 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x4 (size before relaxing) + .literal.lwip_stop_socket_select + 0x40138f4c 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x4 (size before relaxing) + .literal.lwip_ioctl_r_wrapper + 0x40138f4c 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x4 (size before relaxing) + .literal.lwip_fcntl_r_wrapper + 0x40138f4c 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x4 (size before relaxing) + .literal.lwip_stop_socket_select_isr + 0x40138f4c 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x4 (size before relaxing) + .literal.lwip_fstat + 0x40138f4c 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_lwip_sockets_register + 0x40138f4c 0x38 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x3c (size before relaxing) + .literal.create_msg + 0x40138f84 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0xc (size before relaxing) + .literal.dhcps_response_ip_set + 0x40138f88 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x14 (size before relaxing) + .literal.dhcps_new + 0x40138f88 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x4 (size before relaxing) + .literal.dhcps_delete + 0x40138f88 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x4 (size before relaxing) + .literal.dhcps_tmr + 0x40138f88 0x10 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x2c (size before relaxing) + .literal.dhcps_pbuf_alloc + 0x40138f98 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x4 (size before relaxing) + .literal.handle_dhcp + 0x40138f98 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0xac (size before relaxing) + .literal.dhcps_start + 0x40138f98 0x14 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x48 (size before relaxing) + .literal.dhcps_stop + 0x40138fac 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x1c (size before relaxing) + .literal.netconn_apimsg + 0x40138fac 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x8 (size before relaxing) + .literal.netconn_close_shutdown + 0x40138fac 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0xc (size before relaxing) + .literal.netconn_prepare_delete + 0x40138fb0 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0xc (size before relaxing) + .literal.netconn_delete + 0x40138fb4 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x8 (size before relaxing) + .literal.netconn_getaddr + 0x40138fb4 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x8 (size before relaxing) + .literal.netconn_tcp_recvd + 0x40138fb8 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x8 (size before relaxing) + .literal.netconn_send + 0x40138fbc 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x8 (size before relaxing) + .literal.netconn_write_vectors_partly + 0x40138fc0 0x10 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x1c (size before relaxing) + .literal.netconn_write_partly + 0x40138fd0 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x4 (size before relaxing) + .literal.netconn_err + 0x40138fd0 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x8 (size before relaxing) + .literal.netconn_recv_data + 0x40138fd0 0x8 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x48 (size before relaxing) + .literal.netconn_recv_udp_raw_netbuf_flags + 0x40138fd8 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x4 (size before relaxing) + .literal.netconn_recv_data_tcp + 0x40138fd8 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x14 (size before relaxing) + .literal.netconn_recv_tcp_pbuf_flags + 0x40138fd8 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x4 (size before relaxing) + .literal.netconn_join_leave_group + 0x40138fd8 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0xc (size before relaxing) + .literal.netconn_join_leave_group_netif + 0x40138fdc 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0xc (size before relaxing) + .literal.netconn_mark_mbox_invalid + 0x40138fe0 0x4 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x10 (size before relaxing) + .literal.tcp_do_abort + 0x40138fe4 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x4 (size before relaxing) + .literal.err_tcp + 0x40138fe4 0x2c esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x44 (size before relaxing) + .literal.lwip_netconn_do_writemore$isra$0 + 0x40139010 0x1c esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x40 (size before relaxing) + .literal.lwip_netconn_do_close_internal$isra$0 + 0x4013902c 0x24 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x70 (size before relaxing) + .literal.sent_tcp + 0x40139050 0x4 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x18 (size before relaxing) + .literal.poll_tcp + 0x40139054 0x4 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x18 (size before relaxing) + .literal.lwip_netconn_is_deallocated_msg + 0x40139058 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x4 (size before relaxing) + .literal.lwip_netconn_is_err_msg + 0x40139058 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x1c (size before relaxing) + .literal.netconn_free + 0x40139060 0x10 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x20 (size before relaxing) + .literal.netconn_drain + 0x40139070 0xc esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x40 (size before relaxing) + .literal.lwip_netconn_do_delconn + 0x4013907c 0x10 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x30 (size before relaxing) + .literal.lwip_netconn_do_send + 0x4013908c 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x18 (size before relaxing) + .literal.lwip_netconn_do_recv + 0x4013908c 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x8 (size before relaxing) + .literal.lwip_netconn_do_write + 0x4013908c 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x20 (size before relaxing) + .literal.lwip_netconn_do_getaddr + 0x40139094 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x14 (size before relaxing) + .literal.lwip_netconn_do_close + 0x4013909c 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x2c (size before relaxing) + .literal.lwip_netconn_do_join_leave_group + 0x401390a4 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x14 (size before relaxing) + .literal.lwip_netconn_do_join_leave_group_netif + 0x401390a4 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x18 (size before relaxing) + .literal.err_to_errno + 0x401390a4 0x4 esp-idf/lwip/liblwip.a(err.c.obj) + .literal.netbuf_delete + 0x401390a8 0x0 esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x8 (size before relaxing) + .literal.netbuf_alloc + 0x401390a8 0xc esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x18 (size before relaxing) + .literal.netbuf_free + 0x401390b4 0x0 esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x4 (size before relaxing) + .literal.inet_cksum_pseudo_base + 0x401390b4 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0xc (size before relaxing) + .literal.inet_chksum_pseudo + 0x401390b4 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x4 (size before relaxing) + .literal.ip6_chksum_pseudo + 0x401390b4 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x4 (size before relaxing) + .literal.ip_chksum_pseudo + 0x401390b4 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x8 (size before relaxing) + .literal.inet_chksum + 0x401390b4 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x4 (size before relaxing) + .literal.inet_chksum_pbuf + 0x401390b4 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_action_start + 0x401390b4 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .literal.esp_netif_action_stop + 0x401390b8 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .literal.esp_netif_action_connected + 0x401390bc 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x60 (size before relaxing) + .literal.esp_netif_action_disconnected + 0x401390ec 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .literal.esp_netif_action_got_ip + 0x401390f0 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x14 (size before relaxing) + .literal.low_level_output + 0x401390f4 0x0 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x14 (size before relaxing) + .literal.wlanif_input + 0x401390f4 0x0 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0xc (size before relaxing) + .literal.wlanif_init + 0x401390f4 0x1c esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x24 (size before relaxing) + .literal.wlanif_init_sta + 0x40139110 0x0 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x4 (size before relaxing) + .literal.wlanif_init_ap + 0x40139110 0x0 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x4 (size before relaxing) + .literal.esp_pbuf_free + 0x40139110 0x0 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + 0x8 (size before relaxing) + .literal.esp_pbuf_allocate + 0x40139110 0x4 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + 0x10 (size before relaxing) + .literal.wpa_attach + 0x40139114 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x10 (size before relaxing) + .literal.wpa_config_done + 0x40139118 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_ap_get_wpa_ie + 0x40139118 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_deattach + 0x40139118 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x10 (size before relaxing) + .literal.wpa_parse_wpa_ie_wrapper + 0x4013911c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x10 (size before relaxing) + .literal.hostap_sta_join + 0x4013911c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x28 (size before relaxing) + .literal.wpa_sta_disconnected_cb + 0x40139120 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x24 (size before relaxing) + .literal.wpa_sta_connected_cb + 0x40139124 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_ap_rx_eapol + 0x40139124 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_install_key + 0x40139124 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_get_key + 0x40139124 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_deauthenticate + 0x40139124 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_config_profile + 0x40139124 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x1c (size before relaxing) + .literal.wpa_config_bss + 0x40139124 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x18 (size before relaxing) + .literal.wpa_sta_connect + 0x40139124 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x14 (size before relaxing) + .literal.wpa_config_assoc_ie + 0x40139124 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_neg_complete + 0x40139124 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.esp_supplicant_init + 0x40139124 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x70 (size before relaxing) + .literal.esp_supplicant_deinit + 0x40139174 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x14 (size before relaxing) + .literal.ieee80211_handle_rx_frm + 0x40139174 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x8 (size before relaxing) + .literal.esp_supplicant_unset_all_appie + 0x40139174 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x4 (size before relaxing) + .literal.esp_supplicant_common_deinit + 0x40139174 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x8 (size before relaxing) + .literal.esp_supplicant_common_init + 0x40139178 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x10 (size before relaxing) + .literal.esp_set_assoc_ie + 0x4013917c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x10 (size before relaxing) + .literal.wps_get_wps_sm_cb + 0x4013917c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .literal.wpa3_build_sae_msg + 0x40139180 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x98 (size before relaxing) + .literal.esp_wpa3_free_sae_data + 0x40139198 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x20 (size before relaxing) + .literal.wpa3_parse_sae_msg + 0x40139198 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x30 (size before relaxing) + .literal.esp_wifi_register_wpa3_cb + 0x401391a0 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .literal.wpa3_hostap_post_evt + 0x401391a8 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x14 (size before relaxing) + .literal.wpa3_hostap_handle_auth + 0x401391b0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x20 (size before relaxing) + .literal.wpa3_hostap_auth_init + 0x401391b0 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x18 (size before relaxing) + .literal.wpa3_hostap_auth_deinit + 0x401391bc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x4 (size before relaxing) + .literal.esp_send_sae_auth_reply + 0x401391bc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x14 (size before relaxing) + .literal.esp_wpa3_hostap_task + 0x401391bc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x4c (size before relaxing) + .literal.esp_wifi_register_wpa3_ap_cb + 0x401391bc 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .literal.owe_build_dhie + 0x401391c0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + 0x8 (size before relaxing) + .literal.owe_deinit + 0x401391c0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + 0xc (size before relaxing) + .literal.esp_wifi_register_owe_cb + 0x401391c0 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .literal.hostapd_get_hapd_data + 0x401391c8 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .literal.hostap_init + 0x401391cc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x6c (size before relaxing) + .literal.hostapd_cleanup + 0x401391cc 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x1c (size before relaxing) + .literal.hostap_deinit + 0x401391d0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x18 (size before relaxing) + .literal.esp_wifi_build_rsnxe + 0x401391d0 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .literal.esp_send_assoc_resp + 0x401391d4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x18 (size before relaxing) + .literal.crypto_alloc_key + 0x401391d4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_pk_ec + 0x401391d4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4 (size before relaxing) + .literal.crypto_ec_deinit + 0x401391d4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x8 (size before relaxing) + .literal.crypto_ec_init + 0x401391d4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x10 (size before relaxing) + .literal.crypto_ec_point_init + 0x401391d4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x8 (size before relaxing) + .literal.crypto_ec_prime_len + 0x401391d4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4 (size before relaxing) + .literal.crypto_ec_order_len + 0x401391d4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4 (size before relaxing) + .literal.crypto_ec_prime_len_bits + 0x401391d4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4 (size before relaxing) + .literal.crypto_ec_point_deinit + 0x401391d4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x8 (size before relaxing) + .literal.crypto_ec_point_to_bin + 0x401391d4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0xc (size before relaxing) + .literal.crypto_ec_point_from_bin + 0x401391d4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x20 (size before relaxing) + .literal.crypto_ec_point_add + 0x401391d4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x10 (size before relaxing) + .literal.crypto_ec_point_mul + 0x401391d4 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x20 (size before relaxing) + .literal.crypto_ec_point_invert + 0x401391dc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x8 (size before relaxing) + .literal.crypto_ec_point_compute_y_sqr + 0x401391dc 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x50 (size before relaxing) + .literal.crypto_ec_point_solve_y_coord + 0x401391e0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x30 (size before relaxing) + .literal.crypto_ec_point_is_at_infinity + 0x401391e0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4 (size before relaxing) + .literal.crypto_ec_point_is_on_curve + 0x401391e0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x28 (size before relaxing) + .literal.crypto_ec_point_cmp + 0x401391e0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4 (size before relaxing) + .literal.crypto_ec_set_pubkey_point + 0x401391e0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x38 (size before relaxing) + .literal.crypto_ec_free_key + 0x401391e0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x8 (size before relaxing) + .literal.crypto_ec_key_group + 0x401391e0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x8 (size before relaxing) + .literal.crypto_ecdh_deinit + 0x401391e0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x8 (size before relaxing) + .literal.crypto_ecdh_init + 0x401391e0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x40 (size before relaxing) + .literal.crypto_ecdh_get_pubkey + 0x401391e0 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x10 (size before relaxing) + .literal.crypto_ecdh_set_peerkey + 0x401391e4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x74 (size before relaxing) + .literal.crypto_ec_key_parse_pub + 0x401391e4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x10 (size before relaxing) + .literal.crypto_ec_key_deinit + 0x401391e4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4 (size before relaxing) + .literal.crypto_ec_key_verify_signature + 0x401391e4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x20 (size before relaxing) + .literal.eloop_run_timer + 0x401391e4 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x8 (size before relaxing) + .literal.eloop_remove_timeout + 0x401391e8 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x10 (size before relaxing) + .literal.os_timer_disarm$constprop$0 + 0x401391f0 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x8 (size before relaxing) + .literal.eloop_init + 0x401391f4 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x1c (size before relaxing) + .literal.eloop_register_timeout + 0x401391f8 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x2c (size before relaxing) + .literal.eloop_cancel_timeout + 0x40139200 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x8 (size before relaxing) + .literal.eloop_run + 0x40139200 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x28 (size before relaxing) + .literal.eloop_run_wrapper + 0x40139204 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x4 (size before relaxing) + .literal.eloop_destroy + 0x40139204 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x20 (size before relaxing) + .literal.hostapd_setup_sae_pt + 0x40139204 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x10 (size before relaxing) + .literal.hostapd_setup_wpa_psk + 0x40139204 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x10 (size before relaxing) + .literal.hostapd_get_psk + 0x40139204 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x4 (size before relaxing) + .literal.hostapd_config_clear_wpa_psk + 0x40139204 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .literal.hostapd_config_free_bss + 0x40139208 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0xc (size before relaxing) + .literal.wpa_free_sta_sm + 0x40139208 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x18 (size before relaxing) + .literal.wpa_group_init_gmk_and_counter + 0x40139210 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x1c (size before relaxing) + .literal.wpa_gmk_to_gtk + 0x40139220 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x14 (size before relaxing) + .literal.wpa_replay_counter_valid + 0x40139224 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_replay_counter_mark_invalid + 0x40139224 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_verify_key_mic + 0x40139224 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x14 (size before relaxing) + .literal.ieee80211w_kde_add + 0x40139224 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x14 (size before relaxing) + .literal.resend_eapol_handle + 0x40139228 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.wpa_auth_set_key$part$0 + 0x4013922c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x14 (size before relaxing) + .literal.sm_WPA_PTK_DISCONNECT_Enter$constprop$0 + 0x4013922c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_gtk_update$isra$0 + 0x4013922c 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x20 (size before relaxing) + .literal.wpa_group_gtk_init + 0x40139234 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.wpa_group_config_group_keys + 0x40139234 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x14 (size before relaxing) + .literal.sm_WPA_PTK_AUTHENTICATION2_Enter$constprop$0 + 0x40139238 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.wpa_group_sm_step$part$0 + 0x40139238 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.wpa_rekey_gtk + 0x40139238 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.wpa_init + 0x4013923c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x38 (size before relaxing) + .literal.wpa_auth_sta_init + 0x40139240 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.wpa_auth_sta_deinit + 0x40139240 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.wpa_auth_pmksa_add_sae + 0x40139244 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_auth_add_sae_pmkid + 0x40139244 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.__wpa_send_eapol + 0x40139244 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x78 (size before relaxing) + .literal.wpa_send_eapol + 0x40139250 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.sm_WPA_PTK_PTKSTART_Enter$constprop$0 + 0x40139250 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x14 (size before relaxing) + .literal.sm_WPA_PTK_PTKINITNEGOTIATING_Enter$constprop$0 + 0x40139254 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x24 (size before relaxing) + .literal.sm_WPA_PTK_GROUP_REKEYNEGOTIATING_Enter$constprop$0 + 0x40139258 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x20 (size before relaxing) + .literal.wpa_remove_ptk + 0x40139258 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.sm_WPA_PTK_INITIALIZE_Enter$constprop$0 + 0x4013925c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_deinit + 0x4013925c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.wpa_ap_remove + 0x4013925c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.wpa_auth_uses_sae + 0x4013925c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_auth_get_psk$isra$0 + 0x4013925c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.sm_WPA_PTK_PTKCALCNEGOTIATING_Enter$constprop$0 + 0x4013925c 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x34 (size before relaxing) + .literal.wpa_sm_step + 0x40139264 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x70 (size before relaxing) + .literal.wpa_rekey_ptk + 0x40139264 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_auth_sta_associated + 0x40139264 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xc (size before relaxing) + .literal.wpa_ap_join + 0x40139264 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x28 (size before relaxing) + .literal.wpa_receive + 0x40139264 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x74 (size before relaxing) + .literal.hostap_eapol_resend_process + 0x40139264 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xc (size before relaxing) + .literal.WPA_GET_BE32 + 0x40139264 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x4 (size before relaxing) + .literal.wpa_write_rsn_ie + 0x40139264 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0xc (size before relaxing) + .literal.wpa_write_rsnxe + 0x40139264 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x4 (size before relaxing) + .literal.wpa_auth_gen_wpa_ie + 0x40139264 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x1c (size before relaxing) + .literal.wpa_add_kde + 0x40139264 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x8 (size before relaxing) + .literal.wpa_validate_wpa_ie + 0x40139264 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x38 (size before relaxing) + .literal.wpa_parse_kde_ies + 0x40139264 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x1c (size before relaxing) + .literal._pmksa_cache_free_entry + 0x40139270 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x10 (size before relaxing) + .literal.pmksa_cache_set_expiration + 0x40139270 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x10 (size before relaxing) + .literal.pmksa_cache_free_entry + 0x40139274 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x4 (size before relaxing) + .literal.pmksa_cache_expire + 0x40139274 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0xc (size before relaxing) + .literal.pmksa_cache_auth_create_entry + 0x40139274 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x1c (size before relaxing) + .literal.pmksa_cache_auth_deinit + 0x40139278 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x10 (size before relaxing) + .literal.pmksa_cache_auth_get + 0x40139278 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0xc (size before relaxing) + .literal.pmksa_cache_auth_add_entry + 0x40139278 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x10 (size before relaxing) + .literal.pmksa_cache_auth_add + 0x40139278 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x8 (size before relaxing) + .literal.pmksa_cache_auth_init + 0x40139278 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x4 (size before relaxing) + .literal.ap_get_sta + 0x40139278 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0x4 (size before relaxing) + .literal.ap_free_sta + 0x40139278 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0x1c (size before relaxing) + .literal.ap_sta_add + 0x40139278 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0x14 (size before relaxing) + .literal.auth_sae_send_commit + 0x40139278 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x24 (size before relaxing) + .literal.auth_sae_send_confirm + 0x40139278 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x14 (size before relaxing) + .literal.sae_accept_sta + 0x40139278 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x4 (size before relaxing) + .literal.sae_sm_step + 0x40139278 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x2c (size before relaxing) + .literal.handle_auth_sae + 0x40139278 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x40 (size before relaxing) + .literal.auth_sae_queue + 0x4013927c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x18 (size before relaxing) + .literal.comeback_token_hash + 0x4013927c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .literal.check_comeback_token + 0x40139280 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + 0xc (size before relaxing) + .literal.auth_build_token_req + 0x40139284 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + 0x3c (size before relaxing) + .literal.hkdf_expand + 0x40139288 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x8 (size before relaxing) + .literal.sae_derive_commit + 0x40139288 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x2c (size before relaxing) + .literal.wpabuf_put_le16 + 0x40139288 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x4 (size before relaxing) + .literal.wpabuf_put_u8 + 0x40139288 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x4 (size before relaxing) + .literal.const_time_memcmp$part$0 + 0x40139288 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x4 (size before relaxing) + .literal.sae_pwd_seed_key + 0x40139288 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x10 (size before relaxing) + .literal.wpabuf_put_data + 0x40139288 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x8 (size before relaxing) + .literal.wpabuf_put_buf + 0x40139288 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x4 (size before relaxing) + .literal.debug_print_bignum$isra$0 + 0x40139288 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.sswu 0x40139288 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1b8 (size before relaxing) + .literal.sae_derive_pwe_ecc + 0x4013928c 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xb0 (size before relaxing) + .literal.sae_cn_confirm + 0x40139294 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.sae_cn_confirm_ffc + 0x40139294 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.sae_cn_confirm_ecc + 0x40139294 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.sae_clear_temp_data + 0x40139294 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x40 (size before relaxing) + .literal.sae_clear_data + 0x40139294 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x10 (size before relaxing) + .literal.sae_set_group + 0x40139294 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x2c (size before relaxing) + .literal.sae_derive_pt_ffc$isra$0 + 0x40139294 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x74 (size before relaxing) + .literal.sae_derive_pwe_from_pt_ecc + 0x40139298 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x54 (size before relaxing) + .literal.sae_derive_pwe_from_pt_ffc + 0x40139298 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x58 (size before relaxing) + .literal.sae_deinit_pt + 0x40139298 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x10 (size before relaxing) + .literal.sae_derive_pt + 0x40139298 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x80 (size before relaxing) + .literal.sae_prepare_commit + 0x401392a0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x74 (size before relaxing) + .literal.sae_prepare_commit_pt + 0x401392a0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x2c (size before relaxing) + .literal.sae_process_commit + 0x401392a0 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x94 (size before relaxing) + .literal.sae_write_commit + 0x401392a8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x6c (size before relaxing) + .literal.sae_group_allowed + 0x401392a8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x4 (size before relaxing) + .literal.sae_parse_commit + 0x401392a8 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xa0 (size before relaxing) + .literal.sae_write_confirm + 0x401392ac 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x18 (size before relaxing) + .literal.sae_check_confirm + 0x401392ac 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x10 (size before relaxing) + .literal.dragonfly_get_rand_2_to_r_1 + 0x401392ac 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0xc (size before relaxing) + .literal.dragonfly_min_pwe_loop_iter + 0x401392ac 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .literal.dragonfly_get_random_qr_qnr + 0x401392b0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x1c (size before relaxing) + .literal.dragonfly_is_quadratic_residue_blind + 0x401392b0 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x58 (size before relaxing) + .literal.dragonfly_generate_scalar + 0x401392b4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x18 (size before relaxing) + .literal.dragonfly_sqrt + 0x401392b4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x28 (size before relaxing) + .literal.WPA_GET_BE32 + 0x401392b4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x4 (size before relaxing) + .literal.rsn_selector_to_bitfield + 0x401392b4 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x20 (size before relaxing) + .literal.wpa_selector_to_bitfield + 0x401392c8 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x18 (size before relaxing) + .literal.wpa_parse_wpa_ie_rsnxe + 0x401392d8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x8 (size before relaxing) + .literal.wpa_parse_wpa_ie_rsn + 0x401392d8 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x34 (size before relaxing) + .literal.wpa_parse_wpa_ie_wpa + 0x401392e0 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x20 (size before relaxing) + .literal.wpa_use_akm_defined + 0x401392e4 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .literal.wpa_use_aes_key_wrap + 0x401392e8 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .literal.wpa_eapol_key_mic + 0x401392ec 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x14 (size before relaxing) + .literal.wpa_akm_to_suite + 0x401392f8 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x28 (size before relaxing) + .literal.wpa_compare_rsn_ie + 0x40139300 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x4 (size before relaxing) + .literal.rsn_pmkid + 0x40139300 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x18 (size before relaxing) + .literal.wpa_pmk_to_ptk + 0x4013930c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x44 (size before relaxing) + .literal.wpa_cipher_to_suite + 0x4013930c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x30 (size before relaxing) + .literal.hmac_sha256_kdf + 0x40139310 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + 0x20 (size before relaxing) + .literal.dh_groups_get + 0x40139314 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .literal.is_wpa2_enterprise_connection + 0x40139318 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_sm_pmksa_free_cb + 0x40139318 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x14 (size before relaxing) + .literal.wpabuf_put_data$part$0 + 0x40139318 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_sm_set_seq$constprop$0 + 0x40139318 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x14 (size before relaxing) + .literal.ieee80211w_set_keys$constprop$0 + 0x40139320 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x20 (size before relaxing) + .literal.wpa_eapol_key_send + 0x40139324 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc (size before relaxing) + .literal.wpa_sm_key_request + 0x40139324 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x24 (size before relaxing) + .literal.wpa_sm_rekey_ptk + 0x40139328 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_supplicant_send_2_of_4 + 0x40139328 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x24 (size before relaxing) + .literal.wpa_supplicant_pairwise_gtk + 0x40139328 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x14 (size before relaxing) + .literal.wpa_sm_set_state + 0x40139328 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc (size before relaxing) + .literal.wpa_supplicant_key_neg_complete + 0x4013932c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc (size before relaxing) + .literal.wpa_supplicant_stop_countermeasures + 0x4013932c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x10 (size before relaxing) + .literal.wpa_sm_set_pmk_from_pmksa + 0x4013932c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_supplicant_process_1_of_4 + 0x4013932c 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x74 (size before relaxing) + .literal.wpa_sm_init + 0x40139338 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x18 (size before relaxing) + .literal.wpa_sm_notify_assoc + 0x4013933c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x18 (size before relaxing) + .literal.wpa_set_profile + 0x4013933c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_set_pmk + 0x4013933c 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x18 (size before relaxing) + .literal.wpa_set_passphrase + 0x40139344 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x3c (size before relaxing) + .literal.set_assoc_ie + 0x4013934c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_sm_set_key + 0x4013934c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x10 (size before relaxing) + .literal.wpa_supplicant_install_gtk$constprop$0 + 0x4013934c 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x50 (size before relaxing) + .literal.wpa_supplicant_install_ptk$constprop$0 + 0x40139360 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x30 (size before relaxing) + .literal.wpa_sm_rx_eapol + 0x4013936c 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x154 (size before relaxing) + .literal.wpa_michael_mic_failure + 0x40139390 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x24 (size before relaxing) + .literal.eapol_txcb + 0x40139394 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x38 (size before relaxing) + .literal.wpa_sta_in_4way_handshake + 0x40139394 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_sta_cur_pmksa_matches_akm + 0x40139394 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_sta_clear_curr_pmksa + 0x40139394 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc (size before relaxing) + .literal.get_wpa_sm + 0x40139394 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_sm_set_ap_rsnxe + 0x40139394 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x1c (size before relaxing) + .literal.wpa_sm_set_assoc_rsnxe + 0x40139398 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_set_bss + 0x40139398 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x90 (size before relaxing) + .literal.wpa_sm_drop_sa + 0x401393a4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x10 (size before relaxing) + .literal.wpa_sm_deinit + 0x401393a4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x14 (size before relaxing) + .literal.wpa_sm_notify_disassoc + 0x401393a4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x14 (size before relaxing) + .literal.owe_build_assoc_req + 0x401393a4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x34 (size before relaxing) + .literal.owe_process_assoc_resp + 0x401393a4 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x80 (size before relaxing) + .literal.WPA_GET_BE32 + 0x401393ac 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x4 (size before relaxing) + .literal.wpa_parse_wpa_ie + 0x401393ac 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0xc (size before relaxing) + .literal.wpa_gen_wpa_ie + 0x401393ac 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x30 (size before relaxing) + .literal.wpa_gen_rsnxe + 0x401393b8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x4 (size before relaxing) + .literal.wpa_supplicant_parse_ies + 0x401393b8 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x24 (size before relaxing) + .literal.wpabuf_put_data + 0x401393bc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x4 (size before relaxing) + .literal.wpabuf_alloc + 0x401393bc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x4 (size before relaxing) + .literal.wpabuf_alloc_copy + 0x401393bc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x8 (size before relaxing) + .literal.wpabuf_free + 0x401393bc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x8 (size before relaxing) + .literal.wpabuf_clear_free + 0x401393bc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x8 (size before relaxing) + .literal.wpabuf_zeropad + 0x401393bc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x10 (size before relaxing) + .literal.d_permute + 0x401393bc 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .literal.d_check_char + 0x401393c0 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x10 (size before relaxing) + .literal.wpabuf_put_data + 0x401393c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x8 (size before relaxing) + .literal.sae_pk_valid_password + 0x401393c8 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x1c (size before relaxing) + .literal.sae_pk_base32_decode + 0x401393d4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0xc (size before relaxing) + .literal.sae_pk_set_password + 0x401393d4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x20 (size before relaxing) + .literal.sae_hash + 0x401393d4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x4 (size before relaxing) + .literal.sae_check_confirm_pk + 0x401393d4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x78 (size before relaxing) + .literal.eap_client_get_eap_state + 0x401393d4 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .literal.wpa_alloc_eapol + 0x401393d8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0xc (size before relaxing) + .literal.wpa_free_eapol + 0x401393d8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x4 (size before relaxing) + .literal.wpa_ether_send + 0x401393d8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x10 (size before relaxing) + .literal.hostapd_send_eapol + 0x401393d8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x18 (size before relaxing) + .literal.wpa_supplicant_transition_disable + 0x401393d8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x1c (size before relaxing) + .literal.wpa_sm_alloc_eapol + 0x401393d8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x4 (size before relaxing) + .literal.wpa_sm_free_eapol + 0x401393d8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x4 (size before relaxing) + .literal.wpa_sm_deauthenticate + 0x401393d8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x8 (size before relaxing) + .literal.crypto_rng_wrapper + 0x401393d8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_init + 0x401393d8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x8 (size before relaxing) + .literal.crypto_bignum_init_set + 0x401393d8 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0xc (size before relaxing) + .literal.crypto_bignum_init_uint + 0x401393dc 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0xc (size before relaxing) + .literal.crypto_bignum_deinit + 0x401393e0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x8 (size before relaxing) + .literal.crypto_bignum_to_bin + 0x401393e0 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x10 (size before relaxing) + .literal.crypto_bignum_add + 0x401393e4 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .literal.crypto_bignum_mod + 0x401393e8 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .literal.crypto_bignum_exptmod + 0x401393ec 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .literal.crypto_bignum_inverse + 0x401393f0 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .literal.crypto_bignum_sub + 0x401393f4 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .literal.crypto_bignum_div + 0x401393f8 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .literal.crypto_bignum_mulmod + 0x401393fc 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x8 (size before relaxing) + .literal.crypto_bignum_sqrmod + 0x40139400 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x10 (size before relaxing) + .literal.crypto_bignum_rshift + 0x40139404 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x8 (size before relaxing) + .literal.crypto_bignum_cmp + 0x40139408 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_is_zero + 0x40139408 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .literal.crypto_bignum_is_one + 0x4013940c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_is_odd + 0x4013940c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_rand + 0x4013940c 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .literal.crypto_bignum_legendre + 0x40139414 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x28 (size before relaxing) + .literal.crypto_bignum_addmod + 0x40139418 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x10 (size before relaxing) + .literal.aes_s2v + 0x40139418 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + 0x30 (size before relaxing) + .literal.aes_siv_decrypt + 0x40139420 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + 0x1c (size before relaxing) + .literal.ieee802_11_parse_elems + 0x40139424 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + 0x14 (size before relaxing) + .literal.pmksa_cache_free_entry + 0x40139428 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x4 (size before relaxing) + .literal.pmksa_cache_set_expiration + 0x40139428 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x10 (size before relaxing) + .literal.pmksa_cache_expire + 0x4013942c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0xc (size before relaxing) + .literal.pmksa_cache_flush + 0x4013942c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x8 (size before relaxing) + .literal.pmksa_cache_add + 0x4013942c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x40 (size before relaxing) + .literal.pmksa_cache_deinit + 0x40139430 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x14 (size before relaxing) + .literal.pmksa_cache_get + 0x40139430 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x8 (size before relaxing) + .literal.pmksa_cache_get_opportunistic + 0x40139430 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x4 (size before relaxing) + .literal.pmksa_cache_set_current + 0x40139430 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0xc (size before relaxing) + .literal.pmksa_cache_init + 0x40139430 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x4 (size before relaxing) + .literal.esp_coex_common_spin_lock_create_wrapper + 0x40139430 0x8 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0xc (size before relaxing) + .literal.esp_coex_common_timer_done_wrapper + 0x40139438 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x4 (size before relaxing) + .literal.esp_coex_common_timer_setfn_wrapper + 0x40139438 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x4 (size before relaxing) + .literal.esp_coex_common_semphr_create_wrapper + 0x40139438 0x4 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .literal.esp_coex_common_semphr_delete_wrapper + 0x4013943c 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x4 (size before relaxing) + .literal.esp_coex_common_semphr_take_wrapper + 0x4013943c 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x4 (size before relaxing) + .literal.esp_coex_common_semphr_give_wrapper + 0x4013943c 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_pk_free + 0x4013943c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_info_from_type + 0x40139440 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_ec_ro + 0x40139450 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_pk_ecc_set_group + 0x40139450 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_pk_ecc_set_pubkey + 0x40139450 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + 0x8 (size before relaxing) + .literal.rsa_debug + 0x40139450 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.eckey_debug + 0x40139458 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.rsa_free_wrap + 0x4013945c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.rsa_alloc_wrap + 0x40139464 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.rsa_check_pair_wrap + 0x4013946c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.rsa_encrypt_wrap + 0x40139470 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x8 (size before relaxing) + .literal.rsa_decrypt_wrap + 0x40139474 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x8 (size before relaxing) + .literal.rsa_sign_wrap + 0x40139478 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x8 (size before relaxing) + .literal.rsa_verify_wrap + 0x4013947c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x8 (size before relaxing) + .literal.rsa_get_bitlen + 0x40139480 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.eckey_free_wrap + 0x40139484 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x8 (size before relaxing) + .literal.eckey_alloc_wrap + 0x40139484 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x8 (size before relaxing) + .literal.eckey_check_pair_wrap + 0x40139484 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x4 (size before relaxing) + .literal.ecdsa_sign_wrap + 0x40139484 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x4 (size before relaxing) + .literal.ecdsa_verify_wrap + 0x40139484 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x4 (size before relaxing) + .literal.pk_get_pk_alg + 0x40139484 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_pk_rsa + 0x40139488 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x4 (size before relaxing) + .literal.pk_use_ecparams + 0x40139488 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0xa8 (size before relaxing) + .literal.mbedtls_pk_parse_subpubkey + 0x4013949c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_pk_parse_public_key + 0x401394a4 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x58 (size before relaxing) + .literal.pem_aes_decrypt + 0x401394b4 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x54 (size before relaxing) + .literal.mbedtls_pem_init + 0x401394e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_pem_read_buffer + 0x401394e0 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x5c (size before relaxing) + .literal.mbedtls_pem_free + 0x401394fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ct_base64_dec_value + 0x401394fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_base64_decode + 0x401394fc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + 0xc (size before relaxing) + .literal.ethip6_output + 0x40139500 0x0 esp-idf/lwip/liblwip.a(ethip6.c.obj) + 0xc (size before relaxing) + .literal._ZdaPv + 0x40139500 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_opv.o) + 0x4 (size before relaxing) + .literal._ZdaPvj + 0x40139500 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_opvs.o) + 0x4 (size before relaxing) + .literal._ZSt15get_new_handlerv + 0x40139500 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_handler.o) + .literal._ZnajRKSt9nothrow_t + 0x40139504 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opvnt.o) + 0xc (size before relaxing) + .literal._ZdlPv + 0x40139504 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_op.o) + 0x4 (size before relaxing) + .literal.__cxa_begin_catch + 0x40139504 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_catch.o) + 0x10 (size before relaxing) + .literal.__cxa_end_catch + 0x4013950c 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_catch.o) + 0x14 (size before relaxing) + .literal._ZL15eh_globals_dtorPv + 0x4013950c 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) + 0x8 (size before relaxing) + .literal.__cxa_get_globals_fast + 0x4013950c 0xc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) + 0x10 (size before relaxing) + .literal.__cxa_get_globals + 0x40139518 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) + 0x1c (size before relaxing) + .literal.startup._GLOBAL__sub_I__ZN17__eh_globals_init7_S_initE + 0x40139518 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) + 0x10 (size before relaxing) + .literal.exit._GLOBAL__sub_D__ZN17__eh_globals_init7_S_initE + 0x4013951c 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) + 0xc (size before relaxing) + .literal._ZN10__cxxabiv111__terminateEPFvvE + 0x40139520 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) + 0xc (size before relaxing) + .literal._ZSt13get_terminatev + 0x40139520 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) + .literal._ZSt9terminatev + 0x40139524 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) + 0x8 (size before relaxing) + .literal._Znaj + 0x40139524 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opv.o) + 0x4 (size before relaxing) + .literal._Znwj + 0x40139524 0xc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_op.o) + 0x1c (size before relaxing) + .literal._ZN10__cxxabiv120__si_class_type_infoD2Ev + 0x40139530 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) + 0x8 (size before relaxing) + .literal._ZN10__cxxabiv120__si_class_type_infoD0Ev + 0x40139534 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) + 0x8 (size before relaxing) + .literal._ZNKSt9type_infoeqERKS_$isra$0 + 0x40139534 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) + .literal._ZNK10__cxxabiv120__si_class_type_info12__do_dyncastEiNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE + 0x40139538 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) + 0x8 (size before relaxing) + .literal._ZNK10__cxxabiv120__si_class_type_info20__do_find_public_srcEiPKvPKNS_17__class_type_infoES2_ + 0x40139538 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) + 0x4 (size before relaxing) + .literal._ZNK10__cxxabiv120__si_class_type_info11__do_upcastEPKNS_17__class_type_infoEPKvRNS1_15__upcast_resultE + 0x40139538 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) + 0x4 (size before relaxing) + .literal._ZNKSt9bad_alloc4whatEv + 0x40139538 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(bad_alloc.o) + .literal._ZNSt9bad_allocD2Ev + 0x4013953c 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(bad_alloc.o) + 0x8 (size before relaxing) + .literal._ZNSt9bad_allocD0Ev + 0x4013953c 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(bad_alloc.o) + 0x8 (size before relaxing) + .literal._ZN10__cxxabiv117__class_type_infoD2Ev + 0x4013953c 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) + 0x8 (size before relaxing) + .literal._ZN10__cxxabiv117__class_type_infoD0Ev + 0x40139540 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) + 0x8 (size before relaxing) + .literal._ZNKSt9type_infoeqERKS_$isra$0 + 0x40139540 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) + 0x4 (size before relaxing) + .literal._ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PKvRNS0_15__upcast_resultE + 0x40139540 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) + 0x4 (size before relaxing) + .literal._ZNK10__cxxabiv117__class_type_info12__do_dyncastEiNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE + 0x40139540 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) + 0x8 (size before relaxing) + .literal._ZNK10__cxxabiv117__class_type_info10__do_catchEPKSt9type_infoPPvj + 0x40139540 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) + 0x4 (size before relaxing) + .literal._ZdlPvj + 0x40139540 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_ops.o) + 0x4 (size before relaxing) + .literal.unlikely.__wrap__Unwind_DeleteException + 0x40139540 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x4 (size before relaxing) + .literal.unlikely.__wrap___gxx_personality_v0 + 0x40139540 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x4 (size before relaxing) + .literal.unlikely.__wrap___cxa_allocate_exception + 0x40139540 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x4 (size before relaxing) + .literal.unlikely.__wrap___cxa_throw + 0x40139540 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x4 (size before relaxing) + .literal 0x40139540 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fopen.o) + 0x48 (size before relaxing) + .literal 0x40139570 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseek.o) + 0xc (size before relaxing) + .literal 0x40139570 0x1c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fvwrite.o) + 0x38 (size before relaxing) + .literal 0x4013958c 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-printf.o) + 0xc (size before relaxing) + .literal 0x4013958c 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-puts.o) + 0x24 (size before relaxing) + .literal 0x40139594 0x10 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-refill.o) + 0x2c (size before relaxing) + .literal 0x401395a4 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-snprintf.o) + 0xc (size before relaxing) + .literal 0x401395a4 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sprintf.o) + 0x14 (size before relaxing) + .literal 0x401395a8 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vprintf.o) + 0xc (size before relaxing) + .literal 0x401395a8 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vsnprintf.o) + 0x8 (size before relaxing) + .literal 0x401395a8 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wsetup.o) + 0x10 (size before relaxing) + .literal 0x401395a8 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseeko.o) + 0x5c (size before relaxing) + .literal 0x401395ac 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-reent.o) + 0x30 (size before relaxing) + .literal 0x401395b0 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-errno.o) + 0x4 (size before relaxing) + .literal 0x401395b0 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sysgettod.o) + 0x8 (size before relaxing) + .literal 0x401395b4 0x78 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) + 0x170 (size before relaxing) + .literal 0x4013962c 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + 0x1a8 (size before relaxing) + .literal 0x4013966c 0x24 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfiprintf.o) + 0x9c (size before relaxing) + .literal 0x40139690 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-makebuf.o) + 0xc (size before relaxing) + .literal 0x40139690 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-localeconv.o) + 0x8 (size before relaxing) + .literal 0x40139694 0x4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libm_a-s_frexp.o) + 0xc (size before relaxing) + .literal 0x40139698 0x60 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) + 0x1dc (size before relaxing) + .literal 0x401396f8 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mbtowc_r.o) + 0x4 (size before relaxing) + .literal 0x401396f8 0x18 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) + 0xa8 (size before relaxing) + .literal 0x40139710 0x2c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiprintf.o) + 0x74 (size before relaxing) + .literal.ensure_partitions_loaded$part$0 + 0x4013973c 0x1c esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x6c (size before relaxing) + .literal.esp_event_handler_register + 0x40139758 0x4 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x8 (size before relaxing) + .literal.esp_event_handler_unregister + 0x4013975c 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x8 (size before relaxing) + .literal.esp_event_post + 0x4013975c 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x8 (size before relaxing) + .literal.esp_event_loop_create_default + 0x4013975c 0x4 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x10 (size before relaxing) + .literal.handler_instances_add + 0x40139760 0xc esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x24 (size before relaxing) + .literal.base_node_add_handler + 0x4013976c 0x4 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x20 (size before relaxing) + .literal.loop_node_add_handler + 0x40139770 0x8 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x28 (size before relaxing) + .literal.handler_instances_remove + 0x40139778 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x8 (size before relaxing) + .literal.esp_event_loop_create + 0x40139778 0x20 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x68 (size before relaxing) + .literal.esp_event_loop_run + 0x40139798 0x14 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x34 (size before relaxing) + .literal.esp_event_loop_run_task + 0x401397ac 0x8 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x18 (size before relaxing) + .literal.esp_event_handler_register_with_internal + 0x401397b4 0x10 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x4c (size before relaxing) + .literal.esp_event_handler_register_with + 0x401397c4 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x4 (size before relaxing) + .literal.esp_event_handler_unregister_with_internal + 0x401397c4 0xc esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x48 (size before relaxing) + .literal.esp_event_handler_unregister_with + 0x401397d0 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x4 (size before relaxing) + .literal.esp_event_post_to + 0x401397d0 0x4 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x3c (size before relaxing) + .literal.periph_ll_get_rst_en_reg + 0x401397d4 0xc esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .literal.periph_rcc_acquire_enter + 0x401397e0 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .literal.periph_rcc_acquire_exit + 0x401397e8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x8 (size before relaxing) + .literal.periph_module_enable + 0x401397ec 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x48 (size before relaxing) + .literal.periph_module_disable + 0x40139814 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x48 (size before relaxing) + .literal.rtc_init + 0x40139818 0x7c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0xb0 (size before relaxing) + .literal.s_sar_power_release + 0x40139894 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0x3c (size before relaxing) + .literal.s_sar_power_acquire + 0x401398bc 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0x1c (size before relaxing) + .literal.sar_periph_ctrl_init + 0x401398bc 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_acquire + 0x401398bc 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 + 0x401398bc 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0x4 (size before relaxing) + .literal.esp_get_free_heap_size + 0x401398bc 0x4 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .literal.esp_get_free_internal_heap_size + 0x401398c0 0x0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0x4 (size before relaxing) + .literal.esp_get_minimum_free_heap_size + 0x401398c0 0x4 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .literal.esp_cpu_intr_enable + 0x401398c4 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .literal.esp_cpu_intr_disable + 0x401398c8 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .literal.mutex_delete_wrapper + 0x401398cc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.wifi_thread_semphr_free + 0x401398cc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.get_time_wrapper + 0x401398cc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.wifi_clock_disable_wrapper + 0x401398cc 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .literal.wifi_clock_enable_wrapper + 0x401398d0 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .literal.wifi_reset_mac_wrapper + 0x401398d4 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .literal.esp_phy_enable_wrapper + 0x401398d8 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .literal.esp_phy_disable_wrapper + 0x401398dc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .literal.task_create_wrapper + 0x401398dc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.task_create_pinned_to_core_wrapper + 0x401398dc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.queue_send_to_front_wrapper + 0x401398dc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.queue_send_to_back_wrapper + 0x401398dc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.queue_create_wrapper + 0x401398dc 0x8 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xc (size before relaxing) + .literal.recursive_mutex_create_wrapper + 0x401398e4 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.mutex_create_wrapper + 0x401398e4 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.wifi_thread_semphr_get_wrapper + 0x401398e4 0xc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x1c (size before relaxing) + .literal.set_isr_wrapper + 0x401398f0 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.set_intr_wrapper + 0x401398f0 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .literal.esp_event_post_wrapper + 0x401398f4 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.event_group_wait_bits_wrapper + 0x401398f4 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .literal.queue_recv_wrapper + 0x401398f8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.queue_send_wrapper + 0x401398f8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.queue_delete_wrapper + 0x401398f8 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xc (size before relaxing) + .literal.wifi_create_queue + 0x401398fc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .literal.wifi_create_queue_wrapper + 0x401398fc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.wifi_delete_queue + 0x401398fc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .literal.wifi_delete_queue_wrapper + 0x401398fc 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.wifi_ap_receive + 0x401398fc 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .literal.wifi_driver_start + 0x40139904 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x10 (size before relaxing) + .literal.wifi_free + 0x40139910 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x4 (size before relaxing) + .literal.wifi_transmit + 0x40139910 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x4 (size before relaxing) + .literal.esp_wifi_create_if_driver + 0x40139910 0x10 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x18 (size before relaxing) + .literal.esp_wifi_get_if_mac + 0x40139920 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x4 (size before relaxing) + .literal.esp_wifi_register_if_rxcb + 0x40139920 0x14 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x3c (size before relaxing) + .literal.other_cpu_startup_idle_hook_cb + 0x40139934 0x4 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .literal.main_task + 0x40139938 0x3c esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0x58 (size before relaxing) + .literal.esp_startup_start_app + 0x40139974 0x2c esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0x34 (size before relaxing) + .literal.esp_startup_start_app_other_cores + 0x401399a0 0x8 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0x14 (size before relaxing) + .literal.multi_heap_register_impl + 0x401399a8 0x10 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x18 (size before relaxing) + .literal.multi_heap_get_info_impl + 0x401399b8 0x18 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x24 (size before relaxing) + .literal.default_walker + 0x401399d0 0xc esp-idf/heap/libheap.a(tlsf.c.obj) + 0x10 (size before relaxing) + .literal.tlsf_walk_pool + 0x401399dc 0x10 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x14 (size before relaxing) + .literal.tlsf_add_pool + 0x401399ec 0x1c esp-idf/heap/libheap.a(tlsf.c.obj) + 0x34 (size before relaxing) + .literal.tlsf_create + 0x40139a08 0xc esp-idf/heap/libheap.a(tlsf.c.obj) + 0x18 (size before relaxing) + .literal.tlsf_create_with_pool + 0x40139a14 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x8 (size before relaxing) + .literal.fix_cache_generation_overflow + 0x40139a14 0xc esp-idf/log/liblog.a(log.c.obj) + .literal.heap_bubble_down + 0x40139a20 0x0 esp-idf/log/liblog.a(log.c.obj) + 0x4 (size before relaxing) + .literal.s_log_level_get_and_unlock + 0x40139a20 0x1c esp-idf/log/liblog.a(log.c.obj) + 0x40 (size before relaxing) + .literal.esp_log_level_set + 0x40139a3c 0x14 esp-idf/log/liblog.a(log.c.obj) + 0x50 (size before relaxing) + .literal.esp_log_writev + 0x40139a50 0x8 esp-idf/log/liblog.a(log.c.obj) + 0xc (size before relaxing) + .literal.xt_int_has_handler + 0x40139a58 0x8 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .literal.xt_set_interrupt_handler + 0x40139a60 0x4 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0xc (size before relaxing) + .literal.esp_partition_next + 0x40139a64 0x8 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x24 (size before relaxing) + .text.ensure_partitions_loaded$part$0 + 0x40139a6c 0x1c7 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x1cb (size before relaxing) + *fill* 0x40139c33 0x1 + .text.esp_partition_next + 0x40139c34 0x7b esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x40139c34 esp_partition_next + *fill* 0x40139caf 0x1 + .text.esp_partition_find + 0x40139cb0 0x49 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x4d (size before relaxing) + 0x40139cb0 esp_partition_find + *fill* 0x40139cf9 0x3 + .text.esp_partition_iterator_release + 0x40139cfc 0xe esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x40139cfc esp_partition_iterator_release + *fill* 0x40139d0a 0x2 + .text.esp_partition_get + 0x40139d0c 0x1c esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x40139d0c esp_partition_get + .text.esp_partition_find_first + 0x40139d28 0x24 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x28 (size before relaxing) + 0x40139d28 esp_partition_find_first + .text.esp_partition_write + 0x40139d4c 0x64 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x40139d4c esp_partition_write + .text.esp_partition_read_raw + 0x40139db0 0x3c esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x40139db0 esp_partition_read_raw + .text.esp_partition_write_raw + 0x40139dec 0x46 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x40139dec esp_partition_write_raw + *fill* 0x40139e32 0x2 + .text.esp_partition_erase_range + 0x40139e34 0x52 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x40139e34 esp_partition_erase_range + *fill* 0x40139e86 0x2 + .text.esp_partition_mmap + 0x40139e88 0x5e esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x40139e88 esp_partition_mmap + *fill* 0x40139ee6 0x2 + .text.esp_partition_read + 0x40139ee8 0x78 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x7c (size before relaxing) + 0x40139ee8 esp_partition_read + .text.esp_partition_is_flash_region_writable + 0x40139f60 0x4a esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x4d (size before relaxing) + 0x40139f60 esp_partition_is_flash_region_writable + *fill* 0x40139faa 0x2 + .text.esp_partition_main_flash_region_safe + 0x40139fac 0x3a esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x40139fac esp_partition_main_flash_region_safe + *fill* 0x40139fe6 0x2 + .text.esp_ota_get_running_partition + 0x40139fe8 0x72 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x7d (size before relaxing) + 0x40139fe8 esp_ota_get_running_partition + *fill* 0x4013a05a 0x2 + .text.clk_hal_lp_slow_get_freq_hz + 0x4013a05c 0x3f esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x4013a05c clk_hal_lp_slow_get_freq_hz + *fill* 0x4013a09b 0x1 + .text.clk_hal_xtal_get_freq_mhz + 0x4013a09c 0x24 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x4013a09c clk_hal_xtal_get_freq_mhz + .text.clk_hal_apll_get_freq_hz + 0x4013a0c0 0x88 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x8c (size before relaxing) + 0x4013a0c0 clk_hal_apll_get_freq_hz + .text.clk_hal_soc_root_get_freq_mhz + 0x4013a148 0x5f esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x63 (size before relaxing) + 0x4013a148 clk_hal_soc_root_get_freq_mhz + *fill* 0x4013a1a7 0x1 + .text.clk_hal_cpu_get_freq_hz + 0x4013a1a8 0x9d esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0xa1 (size before relaxing) + 0x4013a1a8 clk_hal_cpu_get_freq_hz + *fill* 0x4013a245 0x3 + .text.clk_hal_ahb_get_freq_hz + 0x4013a248 0x28 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0x2f (size before relaxing) + 0x4013a248 clk_hal_ahb_get_freq_hz + *fill* 0x4013a270 0x0 + .text.clk_hal_apb_get_freq_hz + 0x4013a270 0xa esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + 0xd (size before relaxing) + 0x4013a270 clk_hal_apb_get_freq_hz + *fill* 0x4013a27a 0x2 + .text.mpi_hal_enable_hardware_hw_op + 0x4013a27c 0x26 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x4013a27c mpi_hal_enable_hardware_hw_op + *fill* 0x4013a2a2 0x2 + .text.mpi_hal_disable_hardware_hw_op + 0x4013a2a4 0x1a esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x4013a2a4 mpi_hal_disable_hardware_hw_op + *fill* 0x4013a2be 0x2 + .text.mpi_hal_set_mode + 0x4013a2c0 0xd esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x4013a2c0 mpi_hal_set_mode + *fill* 0x4013a2cd 0x3 + .text.mpi_hal_write_to_mem_block + 0x4013a2d0 0x3d esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x4013a2d0 mpi_hal_write_to_mem_block + *fill* 0x4013a30d 0x3 + .text.mpi_hal_write_at_offset + 0x4013a310 0x14 esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x4013a310 mpi_hal_write_at_offset + .text.mpi_hal_write_m_prime + 0x4013a324 0xd esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x4013a324 mpi_hal_write_m_prime + *fill* 0x4013a331 0x3 + .text.mpi_hal_write_rinv + 0x4013a334 0xf esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x4013a334 mpi_hal_write_rinv + *fill* 0x4013a343 0x1 + .text.mpi_hal_start_op + 0x4013a344 0x1c esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x4013a344 mpi_hal_start_op + .text.mpi_hal_wait_op_complete + 0x4013a360 0x1b esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x4013a360 mpi_hal_wait_op_complete + *fill* 0x4013a37b 0x1 + .text.mpi_hal_read_result_hw_op + 0x4013a37c 0x3c esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x40 (size before relaxing) + 0x4013a37c mpi_hal_read_result_hw_op + .text.sha_hal_wait_idle + 0x4013a3b8 0x35 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x4013a3b8 sha_hal_wait_idle + *fill* 0x4013a3ed 0x3 + .text.sha_hal_hash_block + 0x4013a3f0 0x52 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x4013a3f0 sha_hal_hash_block + *fill* 0x4013a442 0x2 + .text.sha_hal_read_digest + 0x4013a444 0x98 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x9c (size before relaxing) + 0x4013a444 sha_hal_read_digest + .text.aes_hal_setkey + 0x4013a4dc 0x6d esp-idf/hal/libhal.a(aes_hal.c.obj) + 0x4013a4dc aes_hal_setkey + *fill* 0x4013a549 0x3 + .text.aes_hal_transform_block + 0x4013a54c 0x50 esp-idf/hal/libhal.a(aes_hal.c.obj) + 0x4013a54c aes_hal_transform_block + .text.esp_dport_access_read_buffer + 0x4013a59c 0x29 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + 0x4013a59c esp_dport_access_read_buffer + *fill* 0x4013a5c5 0x3 + .text.esp_fill_random + 0x4013a5c8 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + 0x4013a5c8 esp_fill_random + *fill* 0x4013a602 0x2 + .text.get_idx 0x4013a604 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .text.get_efuse_mac_custom + 0x4013a640 0x8a esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x92 (size before relaxing) + *fill* 0x4013a6ca 0x2 + .text.get_efuse_factory_mac + 0x4013a6cc 0xb2 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0xbe (size before relaxing) + *fill* 0x4013a77e 0x2 + .text.get_mac_addr_from_mac_table + 0x4013a780 0x8b esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + *fill* 0x4013a80b 0x1 + .text.esp_efuse_mac_get_default + 0x4013a80c 0xc esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x10 (size before relaxing) + 0x4013a80c esp_efuse_mac_get_default + .text.esp_read_mac + 0x4013a818 0x130 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + 0x138 (size before relaxing) + 0x4013a818 esp_read_mac + .text.esp_crypto_mpi_lock_acquire + 0x4013a948 0xe esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + 0x4013a948 esp_crypto_mpi_lock_acquire + *fill* 0x4013a956 0x2 + .text.esp_crypto_mpi_lock_release + 0x4013a958 0xe esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + 0x4013a958 esp_crypto_mpi_lock_release + *fill* 0x4013a966 0x2 + .text.ets_timer_setfn + 0x4013a968 0x4e esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x4013a968 os_timer_setfn + 0x4013a968 ets_timer_setfn + *fill* 0x4013a9b6 0x2 + .text.ets_timer_done + 0x4013a9b8 0x18 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x1c (size before relaxing) + 0x4013a9b8 ets_timer_done + 0x4013a9b8 os_timer_done + .text.lib_printf + 0x4013a9d0 0x74 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .text.phy_printf + 0x4013aa44 0x2c esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + 0x4013aa44 phy_printf + .text.net80211_printf + 0x4013aa70 0x2c esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + 0x4013aa70 net80211_printf + .text.mesh_printf + 0x4013aa9c 0x2c esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + 0x4013aa9c mesh_printf + .text.esp_phy_disable + 0x4013aac8 0x3b esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x3f (size before relaxing) + 0x4013aac8 esp_phy_disable + *fill* 0x4013ab03 0x1 + .text.esp_wifi_bt_power_domain_off + 0x4013ab04 0x4c esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x4013ab04 esp_wifi_power_domain_off + 0x4013ab04 esp_wifi_bt_power_domain_off + .text.esp_phy_load_cal_data_from_nvs + 0x4013ab50 0x15b esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x16b (size before relaxing) + 0x4013ab50 esp_phy_load_cal_data_from_nvs + *fill* 0x4013acab 0x1 + .text.esp_phy_store_cal_data_to_nvs + 0x4013acac 0xef esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0xff (size before relaxing) + 0x4013acac esp_phy_store_cal_data_to_nvs + *fill* 0x4013ad9b 0x1 + .text.esp_phy_load_cal_and_init + 0x4013ad9c 0x107 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x127 (size before relaxing) + 0x4013ad9c esp_phy_load_cal_and_init + *fill* 0x4013aea3 0x1 + .text.esp_phy_enable + 0x4013aea4 0x72 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x75 (size before relaxing) + 0x4013aea4 esp_phy_enable + *fill* 0x4013af16 0x2 + .text.phy_set_modem_flag + 0x4013af18 0x1a esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + 0x4013af18 phy_set_modem_flag + *fill* 0x4013af32 0x2 + .text.phy_clr_modem_flag + 0x4013af34 0x1d esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + 0x4013af34 phy_clr_modem_flag + *fill* 0x4013af51 0x3 + .text.phy_get_modem_flag + 0x4013af54 0x11 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + 0x4013af54 phy_get_modem_flag + *fill* 0x4013af65 0x3 + .text.lwip_link_select_cb + 0x4013af68 0x2a esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x2e (size before relaxing) + *fill* 0x4013af92 0x2 + .text.lwip_unlink_select_cb + 0x4013af94 0x5d esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x4013aff1 0x3 + .text.lwip_recv_tcp + 0x4013aff4 0x114 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x11f (size before relaxing) + *fill* 0x4013b108 0x0 + .text.sockaddr_to_ipaddr_port + 0x4013b108 0x65 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x4013b16d 0x3 + .text.lwip_sock_make_addr$isra$0 + 0x4013b170 0xc7 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x4013b237 0x1 + .text.lwip_recvfrom_udp_raw$constprop$0 + 0x4013b238 0xc8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xd0 (size before relaxing) + .text.free_socket_free_elements$isra$0 + 0x4013b300 0x22 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x25 (size before relaxing) + *fill* 0x4013b322 0x2 + .text.free_socket + 0x4013b324 0x50 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x58 (size before relaxing) + .text.done_socket + 0x4013b374 0x63 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x6b (size before relaxing) + *fill* 0x4013b3d7 0x1 + .text.lwip_select_dec_sockets_used + 0x4013b3d8 0x28 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.tryget_socket_unconn + 0x4013b400 0x51 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x54 (size before relaxing) + *fill* 0x4013b451 0x3 + .text.tryget_socket + 0x4013b454 0x1c esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x23 (size before relaxing) + *fill* 0x4013b470 0x0 + .text.get_socket + 0x4013b470 0x18 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x1c (size before relaxing) + .text.tryget_socket_unconn_locked + 0x4013b488 0x52 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x4013b4da 0x2 + .text.lwip_select_inc_sockets_used_set + 0x4013b4dc 0x43 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x4e (size before relaxing) + *fill* 0x4013b51f 0x1 + .text.lwip_selscan + 0x4013b520 0x170 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x180 (size before relaxing) + .text.lwip_close + 0x4013b690 0x123 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x147 (size before relaxing) + 0x4013b690 lwip_close + *fill* 0x4013b7b3 0x1 + .text.lwip_recvfrom + 0x4013b7b4 0xb4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xcc (size before relaxing) + 0x4013b7b4 lwip_recvfrom + .text.lwip_read + 0x4013b868 0x19 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x4013b868 lwip_read + *fill* 0x4013b881 0x3 + .text.lwip_sendto + 0x4013b884 0x143 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x167 (size before relaxing) + 0x4013b884 lwip_sendto + *fill* 0x4013b9c7 0x1 + .text.lwip_send + 0x4013b9c8 0x7e esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x92 (size before relaxing) + 0x4013b9c8 lwip_send + *fill* 0x4013ba46 0x2 + .text.lwip_write + 0x4013ba48 0x15 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x4013ba48 lwip_write + *fill* 0x4013ba5d 0x3 + .text.lwip_select + 0x4013ba60 0x2f2 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x33e (size before relaxing) + 0x4013ba60 lwip_select + *fill* 0x4013bd52 0x2 + .text.lwip_ioctl + 0x4013bd54 0x4d esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x55 (size before relaxing) + 0x4013bd54 lwip_ioctl + *fill* 0x4013bda1 0x3 + .text.lwip_fcntl + 0x4013bda4 0x8c esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x94 (size before relaxing) + 0x4013bda4 lwip_fcntl + .text.tcpip_thread + 0x4013be30 0xc7 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0xd7 (size before relaxing) + *fill* 0x4013bef7 0x1 + .text.tcpip_inpkt + 0x4013bef8 0x4a esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x52 (size before relaxing) + 0x4013bef8 tcpip_inpkt + *fill* 0x4013bf42 0x2 + .text.tcpip_input + 0x4013bf44 0x1d esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x20 (size before relaxing) + 0x4013bf44 tcpip_input + *fill* 0x4013bf61 0x3 + .text.tcpip_try_callback + 0x4013bf64 0x46 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x52 (size before relaxing) + 0x4013bf64 tcpip_try_callback + *fill* 0x4013bfaa 0x2 + .text.tcpip_send_msg_wait_sem + 0x4013bfac 0x46 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x4a (size before relaxing) + 0x4013bfac tcpip_send_msg_wait_sem + *fill* 0x4013bff2 0x2 + .text.tcpip_api_call + 0x4013bff4 0x3d esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x45 (size before relaxing) + 0x4013bff4 tcpip_api_call + *fill* 0x4013c031 0x3 + .text.tcpip_init + 0x4013c034 0x47 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x4f (size before relaxing) + 0x4013c034 tcpip_init + *fill* 0x4013c07b 0x1 + .text.lwip_htonl + 0x4013c07c 0x10 esp-idf/lwip/liblwip.a(def.c.obj) + 0x4013c07c lwip_htonl + .text.dns_setserver + 0x4013c08c 0x2a esp-idf/lwip/liblwip.a(dns.c.obj) + 0x4013c08c dns_setserver + *fill* 0x4013c0b6 0x2 + .text.lwip_init + 0x4013c0b8 0x20 esp-idf/lwip/liblwip.a(init.c.obj) + 0x3b (size before relaxing) + 0x4013c0b8 lwip_init + *fill* 0x4013c0d8 0x0 + .text.ip_input + 0x4013c0d8 0x2a esp-idf/lwip/liblwip.a(ip.c.obj) + 0x2d (size before relaxing) + 0x4013c0d8 ip_input + *fill* 0x4013c102 0x2 + .text.mem_malloc + 0x4013c104 0x34 esp-idf/lwip/liblwip.a(mem.c.obj) + 0x3c (size before relaxing) + 0x4013c104 mem_malloc + .text.mem_free + 0x4013c138 0x38 esp-idf/lwip/liblwip.a(mem.c.obj) + 0x4013c138 mem_free + .text.mem_calloc + 0x4013c170 0x11 esp-idf/lwip/liblwip.a(mem.c.obj) + 0x4013c170 mem_calloc + *fill* 0x4013c181 0x3 + .text.do_memp_free_pool$isra$0 + 0x4013c184 0x28 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x30 (size before relaxing) + .text.do_memp_malloc_pool$isra$0 + 0x4013c1ac 0x31 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x39 (size before relaxing) + *fill* 0x4013c1dd 0x3 + .text.memp_malloc + 0x4013c1e0 0x1e esp-idf/lwip/liblwip.a(memp.c.obj) + 0x22 (size before relaxing) + 0x4013c1e0 memp_malloc + *fill* 0x4013c1fe 0x2 + .text.memp_free + 0x4013c200 0x14 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x4013c200 memp_free + .text.netif_do_ip_addr_changed + 0x4013c214 0x1c esp-idf/lwip/liblwip.a(netif.c.obj) + 0x24 (size before relaxing) + .text.netif_issue_reports + 0x4013c230 0x4b esp-idf/lwip/liblwip.a(netif.c.obj) + 0x4f (size before relaxing) + *fill* 0x4013c27b 0x1 + .text.netif_do_set_ipaddr + 0x4013c27c 0x59 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x5d (size before relaxing) + *fill* 0x4013c2d5 0x3 + .text.netif_poll + 0x4013c2d8 0xa9 esp-idf/lwip/liblwip.a(netif.c.obj) + 0xb5 (size before relaxing) + 0x4013c2d8 netif_poll + *fill* 0x4013c381 0x3 + .text.netif_loopif_init + 0x4013c384 0x31 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x4013c3b5 0x3 + .text.netif_set_default + 0x4013c3b8 0xa esp-idf/lwip/liblwip.a(netif.c.obj) + 0x4013c3b8 netif_set_default + *fill* 0x4013c3c2 0x2 + .text.netif_loop_output + 0x4013c3c4 0xcd esp-idf/lwip/liblwip.a(netif.c.obj) + 0xe9 (size before relaxing) + 0x4013c3c4 netif_loop_output + *fill* 0x4013c491 0x3 + .text.netif_loop_output_ipv4 + 0x4013c494 0x12 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x4013c4a6 0x2 + .text.netif_loop_output_ipv6 + 0x4013c4a8 0x12 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x4013c4ba 0x2 + .text.netif_get_ip6_addr_match + 0x4013c4bc 0x78 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x4013c4bc netif_get_ip6_addr_match + .text.netif_get_by_index + 0x4013c534 0x24 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x4013c534 netif_get_by_index + .text.netif_add_ext_callback + 0x4013c558 0x35 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x4013c558 netif_add_ext_callback + *fill* 0x4013c58d 0x3 + .text.netif_remove_ext_callback + 0x4013c590 0x43 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x4013c590 netif_remove_ext_callback + *fill* 0x4013c5d3 0x1 + .text.netif_invoke_ext_callback + 0x4013c5d4 0x35 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x4013c5d4 netif_invoke_ext_callback + *fill* 0x4013c609 0x3 + .text.netif_set_addr + 0x4013c60c 0xe9 esp-idf/lwip/liblwip.a(netif.c.obj) + 0xed (size before relaxing) + 0x4013c60c netif_set_addr + *fill* 0x4013c6f5 0x3 + .text.netif_add + 0x4013c6f8 0x18b esp-idf/lwip/liblwip.a(netif.c.obj) + 0x193 (size before relaxing) + 0x4013c6f8 netif_add + *fill* 0x4013c883 0x1 + .text.netif_set_up + 0x4013c884 0x2e esp-idf/lwip/liblwip.a(netif.c.obj) + 0x36 (size before relaxing) + 0x4013c884 netif_set_up + *fill* 0x4013c8b2 0x2 + .text.netif_set_down + 0x4013c8b4 0x38 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x3c (size before relaxing) + 0x4013c8b4 netif_set_down + .text.netif_remove + 0x4013c8ec 0x87 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x97 (size before relaxing) + 0x4013c8ec netif_remove + *fill* 0x4013c973 0x1 + .text.netif_set_link_up + 0x4013c974 0x36 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x42 (size before relaxing) + 0x4013c974 netif_set_link_up + *fill* 0x4013c9aa 0x2 + .text.netif_init + 0x4013c9ac 0x57 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x5f (size before relaxing) + 0x4013c9ac netif_init + *fill* 0x4013ca03 0x1 + .text.netif_set_link_down + 0x4013ca04 0x2c esp-idf/lwip/liblwip.a(netif.c.obj) + 0x4013ca04 netif_set_link_down + .text.netif_ip6_addr_set_parts + 0x4013ca30 0x12a esp-idf/lwip/liblwip.a(netif.c.obj) + 0x132 (size before relaxing) + 0x4013ca30 netif_ip6_addr_set_parts + *fill* 0x4013cb5a 0x2 + .text.netif_ip6_addr_set + 0x4013cb5c 0x3a esp-idf/lwip/liblwip.a(netif.c.obj) + 0x3e (size before relaxing) + 0x4013cb5c netif_ip6_addr_set + *fill* 0x4013cb96 0x2 + .text.netif_ip6_addr_set_state + 0x4013cb98 0x9a esp-idf/lwip/liblwip.a(netif.c.obj) + 0x9e (size before relaxing) + 0x4013cb98 netif_ip6_addr_set_state + *fill* 0x4013cc32 0x2 + .text.pbuf_free_ooseq_callback + 0x4013cc34 0x2b esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x33 (size before relaxing) + *fill* 0x4013cc5f 0x1 + .text.pbuf_add_header_impl + 0x4013cc60 0x67 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x4013ccc7 0x1 + .text.pbuf_alloc_reference + 0x4013ccc8 0x43 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x47 (size before relaxing) + 0x4013ccc8 pbuf_alloc_reference + *fill* 0x4013cd0b 0x1 + .text.pbuf_add_header + 0x4013cd0c 0x10 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x14 (size before relaxing) + 0x4013cd0c pbuf_add_header + .text.pbuf_add_header_force + 0x4013cd1c 0x10 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x14 (size before relaxing) + 0x4013cd1c pbuf_add_header_force + .text.pbuf_remove_header + 0x4013cd2c 0x4d esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4013cd2c pbuf_remove_header + *fill* 0x4013cd79 0x3 + .text.pbuf_header_force + 0x4013cd7c 0x20 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x23 (size before relaxing) + 0x4013cd7c pbuf_header_force + *fill* 0x4013cd9c 0x0 + .text.pbuf_free + 0x4013cd9c 0x9f esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0xa7 (size before relaxing) + 0x4013cd9c pbuf_free + *fill* 0x4013ce3b 0x1 + .text.pbuf_alloc + 0x4013ce3c 0x130 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x148 (size before relaxing) + 0x4013ce3c pbuf_alloc + .text.pbuf_realloc + 0x4013cf6c 0x91 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4013cf6c pbuf_realloc + *fill* 0x4013cffd 0x3 + .text.pbuf_free_header + 0x4013d000 0x3b esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4013d000 pbuf_free_header + *fill* 0x4013d03b 0x1 + .text.pbuf_ref + 0x4013d03c 0x2e esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x32 (size before relaxing) + 0x4013d03c pbuf_ref + *fill* 0x4013d06a 0x2 + .text.pbuf_cat + 0x4013d06c 0x4f esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4013d06c pbuf_cat + *fill* 0x4013d0bb 0x1 + .text.pbuf_chain + 0x4013d0bc 0x13 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x17 (size before relaxing) + 0x4013d0bc pbuf_chain + *fill* 0x4013d0cf 0x1 + .text.pbuf_copy_partial_pbuf + 0x4013d0d0 0xd2 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4013d0d0 pbuf_copy_partial_pbuf + *fill* 0x4013d1a2 0x2 + .text.pbuf_copy + 0x4013d1a4 0x1a esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x1e (size before relaxing) + 0x4013d1a4 pbuf_copy + *fill* 0x4013d1be 0x2 + .text.pbuf_copy_partial + 0x4013d1c0 0x5f esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4013d1c0 pbuf_copy_partial + *fill* 0x4013d21f 0x1 + .text.pbuf_take + 0x4013d220 0x76 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4013d220 pbuf_take + *fill* 0x4013d296 0x2 + .text.pbuf_take_at + 0x4013d298 0x72 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x7a (size before relaxing) + 0x4013d298 pbuf_take_at + *fill* 0x4013d30a 0x2 + .text.pbuf_clone + 0x4013d30c 0x32 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x36 (size before relaxing) + 0x4013d30c pbuf_clone + *fill* 0x4013d33e 0x2 + .text.pbuf_try_get_at + 0x4013d340 0x26 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4013d340 pbuf_try_get_at + *fill* 0x4013d366 0x2 + .text.pbuf_get_at + 0x4013d368 0x18 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4013d368 pbuf_get_at + .text.raw_input + 0x4013d380 0x155 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x159 (size before relaxing) + 0x4013d380 raw_input + *fill* 0x4013d4d5 0x3 + .text.raw_sendto_if_src + 0x4013d4d8 0x1a7 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x1c7 (size before relaxing) + 0x4013d4d8 raw_sendto_if_src + *fill* 0x4013d67f 0x1 + .text.raw_sendto + 0x4013d680 0xea esp-idf/lwip/liblwip.a(raw.c.obj) + 0xf2 (size before relaxing) + 0x4013d680 raw_sendto + *fill* 0x4013d76a 0x2 + .text.raw_send + 0x4013d76c 0x15 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x4013d76c raw_send + *fill* 0x4013d781 0x3 + .text.raw_remove + 0x4013d784 0x2d esp-idf/lwip/liblwip.a(raw.c.obj) + 0x31 (size before relaxing) + 0x4013d784 raw_remove + *fill* 0x4013d7b1 0x3 + .text.raw_netif_ip_addr_changed + 0x4013d7b4 0xa6 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x4013d7b4 raw_netif_ip_addr_changed + *fill* 0x4013d85a 0x2 + .text.tcp_init + 0x4013d85c 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4013d85c tcp_init + *fill* 0x4013d873 0x1 + .text.tcp_free + 0x4013d874 0x26 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4013d874 tcp_free + *fill* 0x4013d89a 0x2 + .text.tcp_backlog_accepted + 0x4013d89c 0x44 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4013d89c tcp_backlog_accepted + .text.tcp_close_shutdown_fin + 0x4013d8e0 0x78 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x7f (size before relaxing) + *fill* 0x4013d958 0x0 + .text.tcp_update_rcv_ann_wnd + 0x4013d958 0x65 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4013d958 tcp_update_rcv_ann_wnd + *fill* 0x4013d9bd 0x3 + .text.tcp_recved + 0x4013d9c0 0x5b esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x5f (size before relaxing) + 0x4013d9c0 tcp_recved + *fill* 0x4013da1b 0x1 + .text.tcp_seg_free + 0x4013da1c 0x18 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x1c (size before relaxing) + 0x4013da1c tcp_seg_free + .text.tcp_segs_free + 0x4013da34 0x11 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + 0x4013da34 tcp_segs_free + *fill* 0x4013da45 0x3 + .text.tcp_seg_copy + 0x4013da48 0x36 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x3a (size before relaxing) + 0x4013da48 tcp_seg_copy + *fill* 0x4013da7e 0x2 + .text.tcp_recv + 0x4013da80 0x22 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4013da80 tcp_recv + *fill* 0x4013daa2 0x2 + .text.tcp_sent + 0x4013daa4 0x26 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4013daa4 tcp_sent + *fill* 0x4013daca 0x2 + .text.tcp_err 0x4013dacc 0x26 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4013dacc tcp_err + *fill* 0x4013daf2 0x2 + .text.tcp_poll + 0x4013daf4 0x29 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4013daf4 tcp_poll + *fill* 0x4013db1d 0x3 + .text.tcp_next_iss + 0x4013db20 0x30 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4013db20 tcp_next_iss + .text.tcp_eff_send_mss_netif + 0x4013db50 0x5e esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x62 (size before relaxing) + 0x4013db50 tcp_eff_send_mss_netif + *fill* 0x4013dbae 0x2 + .text.tcp_free_ooseq + 0x4013dbb0 0x12 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x16 (size before relaxing) + 0x4013dbb0 tcp_free_ooseq + *fill* 0x4013dbc2 0x2 + .text.tcp_pcb_purge + 0x4013dbc4 0x4e esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x5a (size before relaxing) + 0x4013dbc4 tcp_pcb_purge + *fill* 0x4013dc12 0x2 + .text.tcp_pcb_remove + 0x4013dc14 0xaf esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xb3 (size before relaxing) + 0x4013dc14 tcp_pcb_remove + *fill* 0x4013dcc3 0x1 + .text.tcp_abandon + 0x4013dcc4 0xd8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xe7 (size before relaxing) + 0x4013dcc4 tcp_abandon + *fill* 0x4013dd9c 0x0 + .text.tcp_abort + 0x4013dd9c 0xf esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4013dd9c tcp_abort + *fill* 0x4013ddab 0x1 + .text.tcp_netif_ip_addr_changed_pcblist + 0x4013ddac 0x5a esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x5d (size before relaxing) + *fill* 0x4013de06 0x2 + .text.tcp_netif_ip_addr_changed + 0x4013de08 0xbf esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xc3 (size before relaxing) + 0x4013de08 tcp_netif_ip_addr_changed + *fill* 0x4013dec7 0x1 + .text.tcp_kill_state + 0x4013dec8 0x37 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x4013deff 0x1 + .text.tcp_alloc + 0x4013df00 0x145 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x159 (size before relaxing) + 0x4013df00 tcp_alloc + *fill* 0x4013e045 0x3 + .text.tcp_close_shutdown + 0x4013e048 0x15b esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x16e (size before relaxing) + *fill* 0x4013e1a3 0x1 + .text.tcp_close_ext + 0x4013e1a4 0x28 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4013e1a4 tcp_close_ext + .text.tcp_close + 0x4013e1cc 0x12 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4013e1cc tcp_close + *fill* 0x4013e1de 0x2 + .text.tcp_recv_null + 0x4013e1e0 0x2c esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x33 (size before relaxing) + 0x4013e1e0 tcp_recv_null + *fill* 0x4013e20c 0x0 + .text.tcp_process_refused_data + 0x4013e20c 0x7a esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4013e20c tcp_process_refused_data + *fill* 0x4013e286 0x2 + .text.tcp_fasttmr + 0x4013e288 0x81 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x89 (size before relaxing) + 0x4013e288 tcp_fasttmr + *fill* 0x4013e309 0x3 + .text.tcp_shutdown + 0x4013e30c 0x59 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x5d (size before relaxing) + 0x4013e30c tcp_shutdown + *fill* 0x4013e365 0x3 + .text.tcp_slowtmr + 0x4013e368 0x3cc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x3e0 (size before relaxing) + 0x4013e368 tcp_slowtmr + .text.tcp_tmr 0x4013e734 0x1c esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x22 (size before relaxing) + 0x4013e734 tcp_tmr + *fill* 0x4013e750 0x0 + .text.tcp_get_next_optbyte + 0x4013e750 0x3a esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x4013e78a 0x2 + .text.tcp_oos_insert_segment + 0x4013e78c 0xcb esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0xdb (size before relaxing) + *fill* 0x4013e857 0x1 + .text.tcp_parseopt + 0x4013e858 0x86 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x96 (size before relaxing) + *fill* 0x4013e8de 0x2 + .text.tcp_input_delayed_close + 0x4013e8e0 0x38 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x3c (size before relaxing) + .text.tcp_free_acked_segments$isra$0 + 0x4013e918 0xb3 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0xbf (size before relaxing) + *fill* 0x4013e9cb 0x1 + .text.tcp_receive + 0x4013e9cc 0xae2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0xb7a (size before relaxing) + *fill* 0x4013f4ae 0x2 + .text.tcp_input + 0x4013f4b0 0xdde esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0xe5e (size before relaxing) + 0x4013f4b0 tcp_input + *fill* 0x4014028e 0x2 + .text.tcp_trigger_input_pcb_close + 0x40140290 0x13 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x40140290 tcp_trigger_input_pcb_close + *fill* 0x401402a3 0x1 + .text.tcp_create_segment + 0x401402a4 0xe4 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0xf8 (size before relaxing) + .text.tcp_output_alloc_header_common + 0x40140388 0xcb esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0xe3 (size before relaxing) + *fill* 0x40140453 0x1 + .text.tcp_route + 0x40140454 0x2e esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x35 (size before relaxing) + *fill* 0x40140482 0x2 + .text.tcp_output_control_segment + 0x40140484 0x83 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x8f (size before relaxing) + *fill* 0x40140507 0x1 + .text.tcp_output_segment_busy + 0x40140508 0x28 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .text.tcp_output_alloc_header$constprop$0 + 0x40140530 0x46 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x4a (size before relaxing) + *fill* 0x40140576 0x2 + .text.tcp_output_fill_options$constprop$0 + 0x40140578 0x1a esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x40140592 0x2 + .text.tcp_write + 0x40140594 0x2f6 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x2fe (size before relaxing) + 0x40140594 tcp_write + *fill* 0x4014088a 0x2 + .text.tcp_split_unsent_seg + 0x4014088c 0x18b esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x1aa (size before relaxing) + 0x4014088c tcp_split_unsent_seg + *fill* 0x40140a17 0x1 + .text.tcp_enqueue_flags + 0x40140a18 0x10d esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x40140a18 tcp_enqueue_flags + *fill* 0x40140b25 0x3 + .text.tcp_send_fin + 0x40140b28 0x7b esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x82 (size before relaxing) + 0x40140b28 tcp_send_fin + *fill* 0x40140ba3 0x1 + .text.tcp_rexmit_rto_prepare + 0x40140ba4 0xb0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0xbb (size before relaxing) + 0x40140ba4 tcp_rexmit_rto_prepare + *fill* 0x40140c54 0x0 + .text.tcp_rexmit + 0x40140c54 0xb7 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0xbb (size before relaxing) + 0x40140c54 tcp_rexmit + *fill* 0x40140d0b 0x1 + .text.tcp_rexmit_fast + 0x40140d0c 0x64 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x68 (size before relaxing) + 0x40140d0c tcp_rexmit_fast + .text.tcp_rst 0x40140d70 0x62 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x6e (size before relaxing) + 0x40140d70 tcp_rst + *fill* 0x40140dd2 0x2 + .text.tcp_send_empty_ack + 0x40140dd4 0x6a esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x76 (size before relaxing) + 0x40140dd4 tcp_send_empty_ack + *fill* 0x40140e3e 0x2 + .text.tcp_output + 0x40140e40 0x4e2 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x515 (size before relaxing) + 0x40140e40 tcp_output + *fill* 0x40141322 0x2 + .text.tcp_rexmit_rto_commit + 0x40141324 0x2d esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x30 (size before relaxing) + 0x40141324 tcp_rexmit_rto_commit + *fill* 0x40141351 0x3 + .text.tcp_rexmit_rto + 0x40141354 0x2b esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x2f (size before relaxing) + 0x40141354 tcp_rexmit_rto + *fill* 0x4014137f 0x1 + .text.tcp_keepalive + 0x40141380 0x4a esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x56 (size before relaxing) + 0x40141380 tcp_keepalive + *fill* 0x401413ca 0x2 + .text.tcp_zero_window_probe + 0x401413cc 0x10f esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x123 (size before relaxing) + 0x401413cc tcp_zero_window_probe + *fill* 0x401414db 0x1 + .text.sys_timeout_abs + 0x401414dc 0x53 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x57 (size before relaxing) + *fill* 0x4014152f 0x1 + .text.lwip_cyclic_timer + 0x40141530 0x29 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x30 (size before relaxing) + *fill* 0x40141559 0x3 + .text.sys_timeout + 0x4014155c 0x2e esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x32 (size before relaxing) + 0x4014155c sys_timeout + *fill* 0x4014158a 0x2 + .text.tcp_timer_needed + 0x4014158c 0x2c esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x4014158c tcp_timer_needed + .text.tcpip_tcp_timer + 0x401415b8 0x2c esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x30 (size before relaxing) + .text.sys_timeouts_init + 0x401415e4 0x2a esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x32 (size before relaxing) + 0x401415e4 sys_timeouts_init + *fill* 0x4014160e 0x2 + .text.sys_untimeout + 0x40141610 0x33 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x37 (size before relaxing) + 0x40141610 sys_untimeout + *fill* 0x40141643 0x1 + .text.sys_check_timeouts + 0x40141644 0x3a esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x3e (size before relaxing) + 0x40141644 sys_check_timeouts + *fill* 0x4014167e 0x2 + .text.sys_timeouts_sleeptime + 0x40141680 0x20 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x40141680 sys_timeouts_sleeptime + .text.udp_input_local_match + 0x401416a0 0xd1 esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x40141771 0x3 + .text.udp_init + 0x40141774 0x17 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x40141774 udp_init + *fill* 0x4014178b 0x1 + .text.udp_input + 0x4014178c 0x290 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x2ab (size before relaxing) + 0x4014178c udp_input + *fill* 0x40141a1c 0x0 + .text.udp_bind + 0x40141a1c 0x1d3 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x1d7 (size before relaxing) + 0x40141a1c udp_bind + *fill* 0x40141bef 0x1 + .text.udp_sendto_if_src + 0x40141bf0 0x1ca esp-idf/lwip/liblwip.a(udp.c.obj) + 0x1e6 (size before relaxing) + 0x40141bf0 udp_sendto_if_src + *fill* 0x40141dba 0x2 + .text.udp_sendto_if + 0x40141dbc 0xb2 esp-idf/lwip/liblwip.a(udp.c.obj) + 0xb6 (size before relaxing) + 0x40141dbc udp_sendto_if + *fill* 0x40141e6e 0x2 + .text.udp_sendto + 0x40141e70 0xf6 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x102 (size before relaxing) + 0x40141e70 udp_sendto + *fill* 0x40141f66 0x2 + .text.udp_send + 0x40141f68 0x3a esp-idf/lwip/liblwip.a(udp.c.obj) + 0x3e (size before relaxing) + 0x40141f68 udp_send + *fill* 0x40141fa2 0x2 + .text.udp_connect + 0x40141fa4 0xfe esp-idf/lwip/liblwip.a(udp.c.obj) + 0x40141fa4 udp_connect + *fill* 0x401420a2 0x2 + .text.udp_disconnect + 0x401420a4 0x72 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x401420a4 udp_disconnect + *fill* 0x40142116 0x2 + .text.udp_remove + 0x40142118 0x31 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x35 (size before relaxing) + 0x40142118 udp_remove + *fill* 0x40142149 0x3 + .text.udp_new 0x4014214c 0x20 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x24 (size before relaxing) + 0x4014214c udp_new + .text.udp_netif_ip_addr_changed + 0x4014216c 0xa7 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x4014216c udp_netif_ip_addr_changed + *fill* 0x40142213 0x1 + .text.dhcp_option_trailer + 0x40142214 0x48 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .text.dhcp_check + 0x4014225c 0x42 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4a (size before relaxing) + *fill* 0x4014229e 0x2 + .text.dhcp_bind + 0x401422a0 0xaf esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0xb3 (size before relaxing) + *fill* 0x4014234f 0x1 + .text.dhcp_inc_pcb_refcount + 0x40142350 0x64 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x74 (size before relaxing) + .text.dhcp_option_short + 0x401423b4 0x33 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x401423e7 0x1 + .text.dhcp_option + 0x401423e8 0x34 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .text.dhcp_option_byte$part$0 + 0x4014241c 0x15 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x40142431 0x3 + .text.dhcp_option_long + 0x40142434 0x4d esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x40142481 0x3 + .text.dhcp_dec_pcb_refcount + 0x40142484 0x36 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x401424ba 0x2 + .text.dhcp_handle_ack$isra$0 + 0x401424bc 0xc1 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0xc9 (size before relaxing) + *fill* 0x4014257d 0x3 + .text.dhcp_create_msg + 0x40142580 0x10b esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x113 (size before relaxing) + *fill* 0x4014268b 0x1 + .text.dhcp_option_hostname$isra$0 + 0x4014268c 0x82 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x86 (size before relaxing) + *fill* 0x4014270e 0x2 + .text.dhcp_discover + 0x40142710 0x111 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x135 (size before relaxing) + *fill* 0x40142821 0x3 + .text.dhcp_reboot$isra$0 + 0x40142824 0x120 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x153 (size before relaxing) + *fill* 0x40142944 0x0 + .text.dhcp_select$isra$0 + 0x40142944 0x14f esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x18b (size before relaxing) + *fill* 0x40142a93 0x1 + .text.dhcp_recv + 0x40142a94 0x43d esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x459 (size before relaxing) + *fill* 0x40142ed1 0x3 + .text.dhcp_set_struct + 0x40142ed4 0x4a esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x40142ed4 dhcp_set_struct + *fill* 0x40142f1e 0x2 + .text.dhcp_cleanup + 0x40142f20 0x28 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x2b (size before relaxing) + 0x40142f20 dhcp_cleanup + *fill* 0x40142f48 0x0 + .text.dhcp_network_changed + 0x40142f48 0x48 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4c (size before relaxing) + 0x40142f48 dhcp_network_changed + .text.dhcp_arp_reply + 0x40142f90 0xbb esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0xdb (size before relaxing) + 0x40142f90 dhcp_arp_reply + *fill* 0x4014304b 0x1 + .text.dhcp_renew + 0x4014304c 0x10a esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x136 (size before relaxing) + 0x4014304c dhcp_renew + *fill* 0x40143156 0x2 + .text.dhcp_release_and_stop + 0x40143158 0x110 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x13f (size before relaxing) + 0x40143158 dhcp_release_and_stop + *fill* 0x40143268 0x0 + .text.dhcp_start + 0x40143268 0x91 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0xa1 (size before relaxing) + 0x40143268 dhcp_start + *fill* 0x401432f9 0x3 + .text.dhcp_coarse_tmr + 0x401432fc 0x19b esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x1cb (size before relaxing) + 0x401432fc dhcp_coarse_tmr + *fill* 0x40143497 0x1 + .text.dhcp_fine_tmr + 0x40143498 0xd0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0xdf (size before relaxing) + 0x40143498 dhcp_fine_tmr + *fill* 0x40143568 0x0 + .text.dhcp_fine_timeout_cb + 0x40143568 0xa esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0xe (size before relaxing) + 0x40143568 dhcp_fine_timeout_cb + *fill* 0x40143572 0x2 + .text.dhcp_release + 0x40143574 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + 0x40143574 dhcp_release + .text.dhcp_stop + 0x40143580 0xa esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0xe (size before relaxing) + 0x40143580 dhcp_stop + *fill* 0x4014358a 0x2 + .text.etharp_free_entry + 0x4014358c 0x4e esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x52 (size before relaxing) + *fill* 0x401435da 0x2 + .text.etharp_find_entry + 0x401435dc 0x108 esp-idf/lwip/liblwip.a(etharp.c.obj) + .text.etharp_update_arp_entry + 0x401436e4 0xc1 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0xcd (size before relaxing) + *fill* 0x401437a5 0x3 + .text.etharp_raw + 0x401437a8 0xd6 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0xde (size before relaxing) + *fill* 0x4014387e 0x2 + .text.etharp_add_static_entry + 0x40143880 0x1e esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x26 (size before relaxing) + 0x40143880 etharp_add_static_entry + *fill* 0x4014389e 0x2 + .text.etharp_remove_static_entry + 0x401438a0 0x2e esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x32 (size before relaxing) + 0x401438a0 etharp_remove_static_entry + *fill* 0x401438ce 0x2 + .text.etharp_cleanup_netif + 0x401438d0 0x24 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x401438d0 etharp_cleanup_netif + .text.etharp_input + 0x401438f4 0xbb esp-idf/lwip/liblwip.a(etharp.c.obj) + 0xc7 (size before relaxing) + 0x401438f4 etharp_input + *fill* 0x401439af 0x1 + .text.etharp_request + 0x401439b0 0x25 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x401439b0 etharp_request + *fill* 0x401439d5 0x3 + .text.etharp_tmr + 0x401439d8 0x54 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x57 (size before relaxing) + 0x401439d8 etharp_tmr + *fill* 0x40143a2c 0x0 + .text.etharp_output_to_arp_index + 0x40143a2c 0x8b esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x93 (size before relaxing) + *fill* 0x40143ab7 0x1 + .text.etharp_query + 0x40143ab8 0x18d esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x1a5 (size before relaxing) + 0x40143ab8 etharp_query + *fill* 0x40143c45 0x3 + .text.etharp_output + 0x40143c48 0x10a esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x116 (size before relaxing) + 0x40143c48 etharp_output + *fill* 0x40143d52 0x2 + .text.icmp_input + 0x40143d54 0x178 esp-idf/lwip/liblwip.a(icmp.c.obj) + 0x19b (size before relaxing) + 0x40143d54 icmp_input + *fill* 0x40143ecc 0x0 + .text.icmp_dest_unreach + 0x40143ecc 0xdf esp-idf/lwip/liblwip.a(icmp.c.obj) + 0xee (size before relaxing) + 0x40143ecc icmp_dest_unreach + *fill* 0x40143fab 0x1 + .text.igmp_start_timer + 0x40143fac 0x3a esp-idf/lwip/liblwip.a(igmp.c.obj) + *fill* 0x40143fe6 0x2 + .text.igmp_delaying_member + 0x40143fe8 0x22 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x26 (size before relaxing) + *fill* 0x4014400a 0x2 + .text.igmp_send + 0x4014400c 0xbe esp-idf/lwip/liblwip.a(igmp.c.obj) + 0xca (size before relaxing) + *fill* 0x401440ca 0x2 + .text.igmp_init + 0x401440cc 0x15 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x401440cc igmp_init + *fill* 0x401440e1 0x3 + .text.igmp_stop + 0x401440e4 0x31 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x401440e4 igmp_stop + *fill* 0x40144115 0x3 + .text.igmp_report_groups + 0x40144118 0x1d esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x40144118 igmp_report_groups + *fill* 0x40144135 0x3 + .text.igmp_lookup_group + 0x40144138 0x6d esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x71 (size before relaxing) + *fill* 0x401441a5 0x3 + .text.igmp_start + 0x401441a8 0x32 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x36 (size before relaxing) + 0x401441a8 igmp_start + *fill* 0x401441da 0x2 + .text.igmp_input + 0x401441dc 0xb2 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0xbe (size before relaxing) + 0x401441dc igmp_input + *fill* 0x4014428e 0x2 + .text.igmp_joingroup_netif + 0x40144290 0x6e esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x76 (size before relaxing) + 0x40144290 igmp_joingroup_netif + *fill* 0x401442fe 0x2 + .text.igmp_joingroup + 0x40144300 0x53 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x40144300 igmp_joingroup + *fill* 0x40144353 0x1 + .text.igmp_leavegroup_netif + 0x40144354 0x80 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x84 (size before relaxing) + 0x40144354 igmp_leavegroup_netif + .text.igmp_leavegroup + 0x401443d4 0x4f esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x53 (size before relaxing) + 0x401443d4 igmp_leavegroup + *fill* 0x40144423 0x1 + .text.igmp_tmr + 0x40144424 0x75 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x79 (size before relaxing) + 0x40144424 igmp_tmr + *fill* 0x40144499 0x3 + .text.igmp_timeout_cb + 0x4014449c 0x8 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0xb (size before relaxing) + *fill* 0x401444a4 0x0 + .text.ip4_input_accept + 0x401444a4 0x28 esp-idf/lwip/liblwip.a(ip4.c.obj) + .text.ip4_route + 0x401444cc 0x72 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x76 (size before relaxing) + 0x401444cc ip4_route + *fill* 0x4014453e 0x2 + .text.ip4_route_src + 0x40144540 0x21 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x24 (size before relaxing) + 0x40144540 ip4_route_src + *fill* 0x40144561 0x3 + .text.ip4_input + 0x40144564 0x239 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x260 (size before relaxing) + 0x40144564 ip4_input + *fill* 0x4014479d 0x3 + .text.ip4_output_if_opt_src + 0x401447a0 0x23e esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x252 (size before relaxing) + 0x401447a0 ip4_output_if_opt_src + *fill* 0x401449de 0x2 + .text.ip4_output_if_opt + 0x401449e0 0x35 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x401449e0 ip4_output_if_opt + *fill* 0x40144a15 0x3 + .text.ip4_output_if + 0x40144a18 0x25 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x29 (size before relaxing) + 0x40144a18 ip4_output_if + *fill* 0x40144a3d 0x3 + .text.ip4_output_if_src + 0x40144a40 0x25 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x29 (size before relaxing) + 0x40144a40 ip4_output_if_src + *fill* 0x40144a65 0x3 + .text.ip4_frag + 0x40144a68 0x16e esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + 0x182 (size before relaxing) + 0x40144a68 ip4_frag + *fill* 0x40144bd6 0x2 + .text.icmp6_send_response_with_addrs_and_netif + 0x40144bd8 0xe4 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0xf4 (size before relaxing) + .text.icmp6_send_response + 0x40144cbc 0x3e esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x42 (size before relaxing) + *fill* 0x40144cfa 0x2 + .text.icmp6_input + 0x40144cfc 0xd3 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0xf3 (size before relaxing) + 0x40144cfc icmp6_input + *fill* 0x40144dcf 0x1 + .text.icmp6_dest_unreach + 0x40144dd0 0x14 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x40144dd0 icmp6_dest_unreach + .text.icmp6_param_problem + 0x40144de4 0x1a esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x40144de4 icmp6_param_problem + *fill* 0x40144dfe 0x2 + .text.ip6_input_accept + 0x40144e00 0x5b esp-idf/lwip/liblwip.a(ip6.c.obj) + *fill* 0x40144e5b 0x1 + .text.ip6_route + 0x40144e5c 0x206 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x40144e5c ip6_route + *fill* 0x40145062 0x2 + .text.ip6_select_source_address + 0x40145064 0x14a esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x14e (size before relaxing) + 0x40145064 ip6_select_source_address + *fill* 0x401451ae 0x2 + .text.ip6_input + 0x401451b0 0x590 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x5c3 (size before relaxing) + 0x401451b0 ip6_input + *fill* 0x40145740 0x0 + .text.ip6_output_if_src + 0x40145740 0x316 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x326 (size before relaxing) + 0x40145740 ip6_output_if_src + *fill* 0x40145a56 0x2 + .text.ip6_output_if + 0x40145a58 0x5a esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x62 (size before relaxing) + 0x40145a58 ip6_output_if + *fill* 0x40145ab2 0x2 + .text.ip6_options_add_hbh_ra + 0x40145ab4 0x3e esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x40145ab4 ip6_options_add_hbh_ra + *fill* 0x40145af2 0x2 + .text.ip6_frag + 0x40145af4 0x150 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + 0x168 (size before relaxing) + 0x40145af4 ip6_frag + .text.mld6_delayed_report + 0x40145c44 0x5a esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x5e (size before relaxing) + *fill* 0x40145c9e 0x2 + .text.mld6_send + 0x40145ca0 0x107 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x113 (size before relaxing) + *fill* 0x40145da7 0x1 + .text.mld6_stop + 0x40145da8 0x31 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x40145da8 mld6_stop + *fill* 0x40145dd9 0x3 + .text.mld6_report_groups + 0x40145ddc 0x17 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x1a (size before relaxing) + 0x40145ddc mld6_report_groups + *fill* 0x40145df3 0x1 + .text.mld6_input + 0x40145df4 0x15b esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x16b (size before relaxing) + 0x40145df4 mld6_input + *fill* 0x40145f4f 0x1 + .text.mld6_joingroup_netif + 0x40145f50 0xe0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0xe8 (size before relaxing) + 0x40145f50 mld6_joingroup_netif + .text.mld6_joingroup + 0x40146030 0x45 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x49 (size before relaxing) + 0x40146030 mld6_joingroup + *fill* 0x40146075 0x3 + .text.mld6_leavegroup_netif + 0x40146078 0xcc esp-idf/lwip/liblwip.a(mld6.c.obj) + 0xd0 (size before relaxing) + 0x40146078 mld6_leavegroup_netif + .text.mld6_leavegroup + 0x40146144 0x47 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x4a (size before relaxing) + 0x40146144 mld6_leavegroup + *fill* 0x4014618b 0x1 + .text.mld6_tmr + 0x4014618c 0x6a esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x75 (size before relaxing) + 0x4014618c mld6_tmr + *fill* 0x401461f6 0x2 + .text.mld6_timeout_cb + 0x401461f8 0x8 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0xb (size before relaxing) + *fill* 0x40146200 0x0 + .text.nd6_find_neighbor_cache_entry + 0x40146200 0x41 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x40146241 0x3 + .text.nd6_find_destination_cache_entry + 0x40146244 0x40 esp-idf/lwip/liblwip.a(nd6.c.obj) + .text.nd6_send_na + 0x40146284 0x122 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x12e (size before relaxing) + *fill* 0x401463a6 0x2 + .text.nd6_send_rs + 0x401463a8 0xdc esp-idf/lwip/liblwip.a(nd6.c.obj) + 0xe4 (size before relaxing) + .text.nd6_send_ns + 0x40146484 0x184 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x18c (size before relaxing) + .text.nd6_send_q$part$0 + 0x40146608 0xff esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x103 (size before relaxing) + *fill* 0x40146707 0x1 + .text.nd6_duplicate_addr_detected + 0x40146708 0x40 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x44 (size before relaxing) + .text.nd6_free_q + 0x40146748 0x51 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x55 (size before relaxing) + *fill* 0x40146799 0x3 + .text.nd6_free_neighbor_cache_entry + 0x4014679c 0x48 esp-idf/lwip/liblwip.a(nd6.c.obj) + .text.nd6_new_neighbor_cache_entry + 0x401467e4 0x11c esp-idf/lwip/liblwip.a(nd6.c.obj) + .text.nd6_select_router$isra$0 + 0x40146900 0xac esp-idf/lwip/liblwip.a(nd6.c.obj) + .text.nd6_input + 0x401469ac 0xd3d esp-idf/lwip/liblwip.a(nd6.c.obj) + 0xd7c (size before relaxing) + 0x401469ac nd6_input + *fill* 0x401476e9 0x3 + .text.nd6_tmr 0x401476ec 0x25e esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x266 (size before relaxing) + 0x401476ec nd6_tmr + *fill* 0x4014794a 0x2 + .text.nd6_clear_destination_cache + 0x4014794c 0x1d esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x4014794c nd6_clear_destination_cache + *fill* 0x40147969 0x3 + .text.nd6_find_route + 0x4014796c 0x67 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x6b (size before relaxing) + 0x4014796c nd6_find_route + *fill* 0x401479d3 0x1 + .text.nd6_get_next_hop_addr_or_queue + 0x401479d4 0x3a6 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x3ca (size before relaxing) + 0x401479d4 nd6_get_next_hop_addr_or_queue + *fill* 0x40147d7a 0x2 + .text.nd6_get_destination_mtu + 0x40147d7c 0x26 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x2a (size before relaxing) + 0x40147d7c nd6_get_destination_mtu + *fill* 0x40147da2 0x2 + .text.nd6_reachability_hint + 0x40147da4 0xc9 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0xcc (size before relaxing) + 0x40147da4 nd6_reachability_hint + *fill* 0x40147e6d 0x3 + .text.nd6_cleanup_netif + 0x40147e70 0x53 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x56 (size before relaxing) + 0x40147e70 nd6_cleanup_netif + *fill* 0x40147ec3 0x1 + .text.nd6_adjust_mld_membership + 0x40147ec4 0x7a esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x7d (size before relaxing) + 0x40147ec4 nd6_adjust_mld_membership + *fill* 0x40147f3e 0x2 + .text.ethernet_input + 0x40147f40 0xd4 esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0xe7 (size before relaxing) + 0x40147f40 ethernet_input + *fill* 0x40148014 0x0 + .text.ethernet_output + 0x40148014 0x67 esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0x6f (size before relaxing) + 0x40148014 ethernet_output + *fill* 0x4014807b 0x1 + .text.lwip_init_tcp_isn + 0x4014807c 0x2a esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + 0x4014807c lwip_init_tcp_isn + *fill* 0x401480a6 0x2 + .text.lwip_hook_tcp_isn + 0x401480a8 0xc9 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + 0xd1 (size before relaxing) + 0x401480a8 lwip_hook_tcp_isn + *fill* 0x40148171 0x3 + .text.ip4_route_src_hook + 0x40148174 0x2a esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + 0x40148174 ip4_route_src_hook + *fill* 0x4014819e 0x2 + .text.dhcp_parse_extra_opts + 0x401481a0 0x52 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + 0x5a (size before relaxing) + 0x401481a0 dhcp_parse_extra_opts + *fill* 0x401481f2 0x2 + .text.sys_thread_sem_free + 0x401481f4 0x1a esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x4014820e 0x2 + .text.sys_mutex_new + 0x40148210 0x1d esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x40148210 sys_mutex_new + *fill* 0x4014822d 0x3 + .text.sys_mutex_lock + 0x40148230 0x23 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x40148230 sys_mutex_lock + *fill* 0x40148253 0x1 + .text.sys_mutex_unlock + 0x40148254 0x27 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x40148254 sys_mutex_unlock + *fill* 0x4014827b 0x1 + .text.sys_mutex_free + 0x4014827c 0x12 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x4014827c sys_mutex_free + *fill* 0x4014828e 0x2 + .text.sys_sem_new + 0x40148290 0x56 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x40148290 sys_sem_new + *fill* 0x401482e6 0x2 + .text.sys_sem_signal + 0x401482e8 0x28 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x401482e8 sys_sem_signal + .text.sys_sem_signal_isr + 0x40148310 0x1c esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x40148310 sys_sem_signal_isr + .text.sys_arch_sem_wait + 0x4014832c 0x52 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x4014832c sys_arch_sem_wait + *fill* 0x4014837e 0x2 + .text.sys_sem_free + 0x40148380 0xa esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0xe (size before relaxing) + 0x40148380 sys_sem_free + *fill* 0x4014838a 0x2 + .text.sys_mbox_new + 0x4014838c 0x36 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x3a (size before relaxing) + 0x4014838c sys_mbox_new + *fill* 0x401483c2 0x2 + .text.sys_mbox_post + 0x401483c4 0x2c esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x401483c4 sys_mbox_post + .text.sys_mbox_trypost + 0x401483f0 0x26 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x401483f0 sys_mbox_trypost + *fill* 0x40148416 0x2 + .text.sys_arch_mbox_fetch + 0x40148418 0x5d esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x40148418 sys_arch_mbox_fetch + *fill* 0x40148475 0x3 + .text.sys_arch_mbox_tryfetch + 0x40148478 0x35 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x40148478 sys_arch_mbox_tryfetch + *fill* 0x401484ad 0x3 + .text.sys_mbox_free + 0x401484b0 0x3e esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x401484b0 sys_mbox_free + *fill* 0x401484ee 0x2 + .text.sys_thread_new + 0x401484f0 0x26 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x401484f0 sys_thread_new + *fill* 0x40148516 0x2 + .text.sys_init + 0x40148518 0x3d esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x44 (size before relaxing) + 0x40148518 sys_init + *fill* 0x40148555 0x3 + .text.sys_now 0x40148558 0x10 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x40148558 sys_now + .text.sys_arch_protect + 0x40148568 0x1e esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x40148568 sys_arch_protect + *fill* 0x40148586 0x2 + .text.sys_arch_unprotect + 0x40148588 0xb esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0xe (size before relaxing) + 0x40148588 sys_arch_unprotect + *fill* 0x40148593 0x1 + .text.sys_thread_sem_init + 0x40148594 0x57 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x5b (size before relaxing) + 0x40148594 sys_thread_sem_init + *fill* 0x401485eb 0x1 + .text.sys_thread_sem_get + 0x401485ec 0x1c esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x401485ec sys_thread_sem_get + .text.sys_thread_tcpip + 0x40148608 0x62 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x40148608 sys_thread_tcpip + *fill* 0x4014866a 0x2 + .text.lwip_get_socket_select_semaphore + 0x4014866c 0xa esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0xd (size before relaxing) + *fill* 0x40148676 0x2 + .text.lwip_stop_socket_select + 0x40148678 0xa esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0xe (size before relaxing) + *fill* 0x40148682 0x2 + .text.lwip_ioctl_r_wrapper + 0x40148684 0x2e esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x32 (size before relaxing) + *fill* 0x401486b2 0x2 + .text.lwip_fcntl_r_wrapper + 0x401486b4 0x10 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x14 (size before relaxing) + .text.lwip_stop_socket_select_isr + 0x401486c4 0x12 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x16 (size before relaxing) + *fill* 0x401486d6 0x2 + .text.lwip_fstat + 0x401486d8 0x34 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .text.esp_vfs_lwip_sockets_register + 0x4014870c 0x6c esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x4014870c esp_vfs_lwip_sockets_register + .text.create_msg + 0x40148778 0x32 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x401487aa 0x2 + .text.dhcps_response_ip_set + 0x401487ac 0x77 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x7b (size before relaxing) + *fill* 0x40148823 0x1 + .text.dhcps_new + 0x40148824 0x36 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x40148824 dhcps_new + *fill* 0x4014885a 0x2 + .text.dhcps_delete + 0x4014885c 0x1d esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x4014885c dhcps_delete + *fill* 0x40148879 0x3 + .text.dhcps_tmr + 0x4014887c 0xbd esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0xc1 (size before relaxing) + *fill* 0x40148939 0x3 + .text.dhcps_pbuf_alloc + 0x4014893c 0x18 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x1c (size before relaxing) + 0x4014893c dhcps_pbuf_alloc + .text.handle_dhcp + 0x40148954 0x4df esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x51f (size before relaxing) + *fill* 0x40148e33 0x1 + .text.dhcps_start + 0x40148e34 0x166 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x172 (size before relaxing) + 0x40148e34 dhcps_start + *fill* 0x40148f9a 0x2 + .text.dhcps_stop + 0x40148f9c 0x73 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x7b (size before relaxing) + 0x40148f9c dhcps_stop + *fill* 0x4014900f 0x1 + .text.netconn_apimsg + 0x40149010 0x26 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x2a (size before relaxing) + *fill* 0x40149036 0x2 + .text.netconn_close_shutdown + 0x40149038 0x21 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x29 (size before relaxing) + *fill* 0x40149059 0x3 + .text.netconn_prepare_delete + 0x4014905c 0x1d esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x25 (size before relaxing) + 0x4014905c netconn_prepare_delete + *fill* 0x40149079 0x3 + .text.netconn_delete + 0x4014907c 0x27 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x2a (size before relaxing) + 0x4014907c netconn_delete + *fill* 0x401490a3 0x1 + .text.netconn_getaddr + 0x401490a4 0x3b esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x401490a4 netconn_getaddr + *fill* 0x401490df 0x1 + .text.netconn_tcp_recvd + 0x401490e0 0x26 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x401490e0 netconn_tcp_recvd + *fill* 0x40149106 0x2 + .text.netconn_send + 0x40149108 0x1e esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x40149108 netconn_send + *fill* 0x40149126 0x2 + .text.netconn_write_vectors_partly + 0x40149128 0xba esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0xbe (size before relaxing) + 0x40149128 netconn_write_vectors_partly + *fill* 0x401491e2 0x2 + .text.netconn_write_partly + 0x401491e4 0x1d esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x401491e4 netconn_write_partly + *fill* 0x40149201 0x3 + .text.netconn_err + 0x40149204 0x1c esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x20 (size before relaxing) + 0x40149204 netconn_err + .text.netconn_recv_data + 0x40149220 0x11e esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x13e (size before relaxing) + *fill* 0x4014933e 0x2 + .text.netconn_recv_udp_raw_netbuf_flags + 0x40149340 0x22 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x40149340 netconn_recv_udp_raw_netbuf_flags + *fill* 0x40149362 0x2 + .text.netconn_recv_data_tcp + 0x40149364 0x9b esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0xa2 (size before relaxing) + *fill* 0x401493ff 0x1 + .text.netconn_recv_tcp_pbuf_flags + 0x40149400 0x22 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x40149400 netconn_recv_tcp_pbuf_flags + *fill* 0x40149422 0x2 + .text.netconn_join_leave_group + 0x40149424 0x2e esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x40149424 netconn_join_leave_group + *fill* 0x40149452 0x2 + .text.netconn_join_leave_group_netif + 0x40149454 0x32 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x40149454 netconn_join_leave_group_netif + *fill* 0x40149486 0x2 + .text.netconn_mark_mbox_invalid + 0x40149488 0x35 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x3d (size before relaxing) + *fill* 0x401494bd 0x3 + .text.tcp_do_abort + 0x401494c0 0xf esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x401494cf 0x1 + .text.err_tcp 0x401494d0 0x11f esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x12b (size before relaxing) + *fill* 0x401495ef 0x1 + .text.lwip_netconn_do_writemore$isra$0 + 0x401495f0 0x227 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x22f (size before relaxing) + *fill* 0x40149817 0x1 + .text.lwip_netconn_do_close_internal$isra$0 + 0x40149818 0x1a3 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x1c7 (size before relaxing) + *fill* 0x401499bb 0x1 + .text.sent_tcp + 0x401499bc 0x60 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x67 (size before relaxing) + *fill* 0x40149a1c 0x0 + .text.poll_tcp + 0x40149a1c 0x64 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x67 (size before relaxing) + *fill* 0x40149a80 0x0 + .text.lwip_netconn_is_deallocated_msg + 0x40149a80 0x12 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x40149a80 lwip_netconn_is_deallocated_msg + *fill* 0x40149a92 0x2 + .text.lwip_netconn_is_err_msg + 0x40149a94 0x41 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x40149a94 lwip_netconn_is_err_msg + *fill* 0x40149ad5 0x3 + .text.netconn_free + 0x40149ad8 0x4e esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x40149ad8 netconn_free + *fill* 0x40149b26 0x2 + .text.netconn_drain + 0x40149b28 0xbf esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0xdf (size before relaxing) + *fill* 0x40149be7 0x1 + .text.lwip_netconn_do_delconn + 0x40149be8 0xf2 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0xf6 (size before relaxing) + 0x40149be8 lwip_netconn_do_delconn + *fill* 0x40149cda 0x2 + .text.lwip_netconn_do_send + 0x40149cdc 0xe3 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0xef (size before relaxing) + 0x40149cdc lwip_netconn_do_send + *fill* 0x40149dbf 0x1 + .text.lwip_netconn_do_recv + 0x40149dc0 0x3a esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x3e (size before relaxing) + 0x40149dc0 lwip_netconn_do_recv + *fill* 0x40149dfa 0x2 + .text.lwip_netconn_do_write + 0x40149dfc 0x6a esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x76 (size before relaxing) + 0x40149dfc lwip_netconn_do_write + *fill* 0x40149e66 0x2 + .text.lwip_netconn_do_getaddr + 0x40149e68 0xe2 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x40149e68 lwip_netconn_do_getaddr + *fill* 0x40149f4a 0x2 + .text.lwip_netconn_do_close + 0x40149f4c 0xc0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0xcc (size before relaxing) + 0x40149f4c lwip_netconn_do_close + .text.lwip_netconn_do_join_leave_group + 0x4014a00c 0x55 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x5d (size before relaxing) + 0x4014a00c lwip_netconn_do_join_leave_group + *fill* 0x4014a061 0x3 + .text.lwip_netconn_do_join_leave_group_netif + 0x4014a064 0x5e esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x6a (size before relaxing) + 0x4014a064 lwip_netconn_do_join_leave_group_netif + *fill* 0x4014a0c2 0x2 + .text.err_to_errno + 0x4014a0c4 0x23 esp-idf/lwip/liblwip.a(err.c.obj) + 0x4014a0c4 err_to_errno + *fill* 0x4014a0e7 0x1 + .text.netbuf_delete + 0x4014a0e8 0x1b esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x22 (size before relaxing) + 0x4014a0e8 netbuf_delete + *fill* 0x4014a103 0x1 + .text.netbuf_alloc + 0x4014a104 0x45 esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x49 (size before relaxing) + 0x4014a104 netbuf_alloc + *fill* 0x4014a149 0x3 + .text.netbuf_free + 0x4014a14c 0x14 esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x18 (size before relaxing) + 0x4014a14c netbuf_free + .text.inet_cksum_pseudo_base + 0x4014a160 0x77 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x7b (size before relaxing) + *fill* 0x4014a1d7 0x1 + .text.inet_chksum_pseudo + 0x4014a1d8 0x38 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x3c (size before relaxing) + 0x4014a1d8 inet_chksum_pseudo + .text.ip6_chksum_pseudo + 0x4014a210 0x4c esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x4014a210 ip6_chksum_pseudo + .text.ip_chksum_pseudo + 0x4014a25c 0x27 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x2a (size before relaxing) + 0x4014a25c ip_chksum_pseudo + *fill* 0x4014a283 0x1 + .text.inet_chksum + 0x4014a284 0x18 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x4014a284 inet_chksum + .text.inet_chksum_pbuf + 0x4014a29c 0x52 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x4014a29c inet_chksum_pbuf + *fill* 0x4014a2ee 0x2 + .text.esp_netif_action_start + 0x4014a2f0 0xe esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x4014a2f0 esp_netif_action_start + *fill* 0x4014a2fe 0x2 + .text.esp_netif_action_stop + 0x4014a300 0xe esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x4014a300 esp_netif_action_stop + *fill* 0x4014a30e 0x2 + .text.esp_netif_action_connected + 0x4014a310 0x107 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x117 (size before relaxing) + 0x4014a310 esp_netif_action_connected + *fill* 0x4014a417 0x1 + .text.esp_netif_action_disconnected + 0x4014a418 0xe esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x4014a418 esp_netif_action_disconnected + *fill* 0x4014a426 0x2 + .text.esp_netif_action_got_ip + 0x4014a428 0x62 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x66 (size before relaxing) + 0x4014a428 esp_netif_action_got_ip + *fill* 0x4014a48a 0x2 + .text.low_level_output + 0x4014a48c 0x6f esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x7b (size before relaxing) + *fill* 0x4014a4fb 0x1 + .text.wlanif_input + 0x4014a4fc 0x47 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x4b (size before relaxing) + 0x4014a4fc wlanif_input + *fill* 0x4014a543 0x1 + .text.wlanif_init + 0x4014a544 0x52 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x4014a544 wlanif_init + *fill* 0x4014a596 0x2 + .text.wlanif_init_sta + 0x4014a598 0x16 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x19 (size before relaxing) + 0x4014a598 wlanif_init_sta + *fill* 0x4014a5ae 0x2 + .text.wlanif_init_ap + 0x4014a5b0 0x16 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + 0x19 (size before relaxing) + 0x4014a5b0 wlanif_init_ap + *fill* 0x4014a5c6 0x2 + .text.esp_pbuf_free + 0x4014a5c8 0x13 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + 0x17 (size before relaxing) + *fill* 0x4014a5db 0x1 + .text.esp_pbuf_allocate + 0x4014a5dc 0x36 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + 0x3e (size before relaxing) + 0x4014a5dc esp_pbuf_allocate + *fill* 0x4014a612 0x2 + .text.wpa_attach + 0x4014a614 0x21 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x28 (size before relaxing) + 0x4014a614 wpa_attach + *fill* 0x4014a635 0x3 + .text.wpa_config_done + 0x4014a638 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0xb (size before relaxing) + 0x4014a638 wpa_config_done + *fill* 0x4014a640 0x0 + .text.wpa_ap_get_wpa_ie + 0x4014a640 0x2d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4014a640 wpa_ap_get_wpa_ie + *fill* 0x4014a66d 0x3 + .text.wpa_deattach + 0x4014a670 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x2e (size before relaxing) + 0x4014a670 wpa_deattach + *fill* 0x4014a696 0x2 + .text.wpa_parse_wpa_ie_wrapper + 0x4014a698 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4a (size before relaxing) + 0x4014a698 wpa_parse_wpa_ie_wrapper + *fill* 0x4014a6d6 0x2 + .text.hostap_sta_join + 0x4014a6d8 0xfe esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x116 (size before relaxing) + *fill* 0x4014a7d6 0x2 + .text.wpa_sta_disconnected_cb + 0x4014a7d8 0x59 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x6c (size before relaxing) + *fill* 0x4014a831 0x3 + .text.wpa_sta_connected_cb + 0x4014a834 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0xe (size before relaxing) + *fill* 0x4014a83e 0x2 + .text.wpa_ap_rx_eapol + 0x4014a840 0x2d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4014a840 wpa_ap_rx_eapol + *fill* 0x4014a86d 0x3 + .text.wpa_install_key + 0x4014a870 0x23 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4014a870 wpa_install_key + *fill* 0x4014a893 0x1 + .text.wpa_get_key + 0x4014a894 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4014a894 wpa_get_key + *fill* 0x4014a8b1 0x3 + .text.wpa_deauthenticate + 0x4014a8b4 0xb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0xe (size before relaxing) + 0x4014a8b4 wpa_deauthenticate + *fill* 0x4014a8bf 0x1 + .text.wpa_config_profile + 0x4014a8c0 0x3d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4d (size before relaxing) + 0x4014a8c0 wpa_config_profile + *fill* 0x4014a8fd 0x3 + .text.wpa_config_bss + 0x4014a900 0x35 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x49 (size before relaxing) + 0x4014a900 wpa_config_bss + *fill* 0x4014a935 0x3 + .text.wpa_sta_connect + 0x4014a938 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x45 (size before relaxing) + 0x4014a938 wpa_sta_connect + *fill* 0x4014a972 0x2 + .text.wpa_config_assoc_ie + 0x4014a974 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x1c (size before relaxing) + 0x4014a974 wpa_config_assoc_ie + *fill* 0x4014a98d 0x3 + .text.wpa_neg_complete + 0x4014a990 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0xb (size before relaxing) + 0x4014a990 wpa_neg_complete + *fill* 0x4014a998 0x0 + .text.esp_supplicant_init + 0x4014a998 0xa2 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0xb6 (size before relaxing) + 0x4014a998 esp_supplicant_init + *fill* 0x4014aa3a 0x2 + .text.esp_supplicant_deinit + 0x4014aa3c 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x26 (size before relaxing) + 0x4014aa3c esp_supplicant_deinit + *fill* 0x4014aa56 0x2 + .text.ieee80211_handle_rx_frm + 0x4014aa58 0x1f esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + *fill* 0x4014aa77 0x1 + .text.esp_supplicant_unset_all_appie + 0x4014aa78 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x4014aa78 esp_supplicant_unset_all_appie + *fill* 0x4014aa8f 0x1 + .text.esp_supplicant_common_deinit + 0x4014aa90 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x1e (size before relaxing) + 0x4014aa90 esp_supplicant_common_deinit + *fill* 0x4014aaaa 0x2 + .text.esp_supplicant_common_init + 0x4014aaac 0x31 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x35 (size before relaxing) + 0x4014aaac esp_supplicant_common_init + *fill* 0x4014aadd 0x3 + .text.esp_set_assoc_ie + 0x4014aae0 0x43 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x4014aae0 esp_set_assoc_ie + *fill* 0x4014ab23 0x1 + .text.wps_get_wps_sm_cb + 0x4014ab24 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + 0x4014ab24 wps_get_wps_sm_cb + *fill* 0x4014ab2e 0x2 + .text.wpa3_build_sae_msg + 0x4014ab30 0x2b6 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x2f6 (size before relaxing) + *fill* 0x4014ade6 0x2 + .text.esp_wpa3_free_sae_data + 0x4014ade8 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x42 (size before relaxing) + 0x4014ade8 esp_wpa3_free_sae_data + *fill* 0x4014ae26 0x2 + .text.wpa3_parse_sae_msg + 0x4014ae28 0xeb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0xf7 (size before relaxing) + *fill* 0x4014af13 0x1 + .text.esp_wifi_register_wpa3_cb + 0x4014af14 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x4014af14 esp_wifi_register_wpa3_cb + *fill* 0x4014af25 0x3 + .text.wpa3_hostap_post_evt + 0x4014af28 0x87 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x4014af28 wpa3_hostap_post_evt + *fill* 0x4014afaf 0x1 + .text.wpa3_hostap_handle_auth + 0x4014afb0 0x81 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x8d (size before relaxing) + *fill* 0x4014b031 0x3 + .text.wpa3_hostap_auth_init + 0x4014b034 0x7d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x4014b034 wpa3_hostap_auth_init + *fill* 0x4014b0b1 0x3 + .text.wpa3_hostap_auth_deinit + 0x4014b0b4 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x4014b0b4 wpa3_hostap_auth_deinit + *fill* 0x4014b0ca 0x2 + .text.esp_send_sae_auth_reply + 0x4014b0cc 0x6e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x72 (size before relaxing) + 0x4014b0cc esp_send_sae_auth_reply + *fill* 0x4014b13a 0x2 + .text.esp_wpa3_hostap_task + 0x4014b13c 0x1f3 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x21b (size before relaxing) + *fill* 0x4014b32f 0x1 + .text.esp_wifi_register_wpa3_ap_cb + 0x4014b330 0xb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x4014b330 esp_wifi_register_wpa3_ap_cb + *fill* 0x4014b33b 0x1 + .text.owe_build_dhie + 0x4014b33c 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + 0x18 (size before relaxing) + 0x4014b33c owe_build_dhie + .text.owe_deinit + 0x4014b350 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + 0x38 (size before relaxing) + 0x4014b350 owe_deinit + .text.esp_wifi_register_owe_cb + 0x4014b384 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + 0x4014b384 esp_wifi_register_owe_cb + *fill* 0x4014b395 0x3 + .text.hostapd_get_hapd_data + 0x4014b398 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x4014b398 hostapd_get_hapd_data + *fill* 0x4014b3a2 0x2 + .text.hostap_init + 0x4014b3a4 0x204 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x228 (size before relaxing) + 0x4014b3a4 hostap_init + .text.hostapd_cleanup + 0x4014b5a8 0x73 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x77 (size before relaxing) + 0x4014b5a8 hostapd_cleanup + *fill* 0x4014b61b 0x1 + .text.hostap_deinit + 0x4014b61c 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x49 (size before relaxing) + 0x4014b61c hostap_deinit + *fill* 0x4014b65a 0x2 + .text.esp_wifi_build_rsnxe + 0x4014b65c 0x41 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x4014b65c esp_wifi_build_rsnxe + *fill* 0x4014b69d 0x3 + .text.esp_send_assoc_resp + 0x4014b6a0 0x63 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x6b (size before relaxing) + 0x4014b6a0 esp_send_assoc_resp + *fill* 0x4014b703 0x1 + .text.crypto_alloc_key + 0x4014b704 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x18 (size before relaxing) + .text.mbedtls_pk_ec + 0x4014b718 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x1c (size before relaxing) + .text.crypto_ec_deinit + 0x4014b730 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4014b730 crypto_ec_deinit + *fill* 0x4014b747 0x1 + .text.crypto_ec_init + 0x4014b748 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x38 (size before relaxing) + 0x4014b748 crypto_ec_init + .text.crypto_ec_point_init + 0x4014b778 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x1c (size before relaxing) + 0x4014b778 crypto_ec_point_init + .text.crypto_ec_prime_len + 0x4014b790 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x10 (size before relaxing) + 0x4014b790 crypto_ec_prime_len + .text.crypto_ec_order_len + 0x4014b79c 0xd esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x10 (size before relaxing) + 0x4014b79c crypto_ec_order_len + *fill* 0x4014b7a9 0x3 + .text.crypto_ec_prime_len_bits + 0x4014b7ac 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x10 (size before relaxing) + 0x4014b7ac crypto_ec_prime_len_bits + .text.crypto_ec_point_deinit + 0x4014b7b8 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x16 (size before relaxing) + 0x4014b7b8 crypto_ec_point_deinit + *fill* 0x4014b7ca 0x2 + .text.crypto_ec_point_to_bin + 0x4014b7cc 0x3b esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x3f (size before relaxing) + 0x4014b7cc crypto_ec_point_to_bin + *fill* 0x4014b807 0x1 + .text.crypto_ec_point_from_bin + 0x4014b808 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x68 (size before relaxing) + 0x4014b808 crypto_ec_point_from_bin + .text.crypto_ec_point_add + 0x4014b860 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x42 (size before relaxing) + 0x4014b860 crypto_ec_point_add + *fill* 0x4014b89a 0x2 + .text.crypto_ec_point_mul + 0x4014b89c 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x6c (size before relaxing) + 0x4014b89c crypto_ec_point_mul + .text.crypto_ec_point_invert + 0x4014b8f4 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x2e (size before relaxing) + 0x4014b8f4 crypto_ec_point_invert + *fill* 0x4014b91e 0x2 + .text.crypto_ec_point_compute_y_sqr + 0x4014b920 0xe4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x110 (size before relaxing) + 0x4014b920 crypto_ec_point_compute_y_sqr + .text.crypto_ec_point_solve_y_coord + 0x4014ba04 0xb1 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0xcd (size before relaxing) + 0x4014ba04 crypto_ec_point_solve_y_coord + *fill* 0x4014bab5 0x3 + .text.crypto_ec_point_is_at_infinity + 0x4014bab8 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x10 (size before relaxing) + 0x4014bab8 crypto_ec_point_is_at_infinity + .text.crypto_ec_point_is_on_curve + 0x4014bac4 0x76 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x8a (size before relaxing) + 0x4014bac4 crypto_ec_point_is_on_curve + *fill* 0x4014bb3a 0x2 + .text.crypto_ec_point_cmp + 0x4014bb3c 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4014bb3c crypto_ec_point_cmp + *fill* 0x4014bb4d 0x3 + .text.crypto_ec_set_pubkey_point + 0x4014bb50 0x77 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0xa5 (size before relaxing) + 0x4014bb50 crypto_ec_set_pubkey_point + *fill* 0x4014bbc7 0x1 + .text.crypto_ec_free_key + 0x4014bbc8 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x16 (size before relaxing) + 0x4014bbc8 crypto_ec_free_key + *fill* 0x4014bbda 0x2 + .text.crypto_ec_key_group + 0x4014bbdc 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x19 (size before relaxing) + 0x4014bbdc crypto_ec_key_group + *fill* 0x4014bbf1 0x3 + .text.crypto_ecdh_deinit + 0x4014bbf4 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4014bbf4 crypto_ecdh_deinit + *fill* 0x4014bc0b 0x1 + .text.crypto_ecdh_init + 0x4014bc0c 0x92 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0xb6 (size before relaxing) + 0x4014bc0c crypto_ecdh_init + *fill* 0x4014bc9e 0x2 + .text.crypto_ecdh_get_pubkey + 0x4014bca0 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4014bca0 crypto_ecdh_get_pubkey + *fill* 0x4014bce2 0x2 + .text.crypto_ecdh_set_peerkey + 0x4014bce4 0x1bd esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x1f9 (size before relaxing) + 0x4014bce4 crypto_ecdh_set_peerkey + *fill* 0x4014bea1 0x3 + .text.crypto_ec_key_parse_pub + 0x4014bea4 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x38 (size before relaxing) + 0x4014bea4 crypto_ec_key_parse_pub + .text.crypto_ec_key_deinit + 0x4014bed8 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0xe (size before relaxing) + 0x4014bed8 crypto_ec_key_deinit + *fill* 0x4014bee2 0x2 + .text.crypto_ec_key_verify_signature + 0x4014bee4 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x72 (size before relaxing) + 0x4014bee4 crypto_ec_key_verify_signature + *fill* 0x4014bf42 0x2 + .text.eloop_run_timer + 0x4014bf44 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + *fill* 0x4014bf5e 0x2 + .text.eloop_remove_timeout + 0x4014bf60 0x55 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + *fill* 0x4014bfb5 0x3 + .text.os_timer_disarm$constprop$0 + 0x4014bfb8 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + *fill* 0x4014bfcb 0x1 + .text.eloop_init + 0x4014bfcc 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x4c (size before relaxing) + 0x4014bfcc eloop_init + .text.eloop_register_timeout + 0x4014c014 0xfd esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x101 (size before relaxing) + 0x4014c014 eloop_register_timeout + *fill* 0x4014c111 0x3 + .text.eloop_cancel_timeout + 0x4014c114 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x5b (size before relaxing) + 0x4014c114 eloop_cancel_timeout + *fill* 0x4014c16c 0x0 + .text.eloop_run + 0x4014c16c 0xe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0xec (size before relaxing) + 0x4014c16c eloop_run + .text.eloop_run_wrapper + 0x4014c254 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0xd (size before relaxing) + *fill* 0x4014c25e 0x2 + .text.eloop_destroy + 0x4014c260 0x5a esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + 0x5d (size before relaxing) + 0x4014c260 eloop_destroy + *fill* 0x4014c2ba 0x2 + .text.hostapd_setup_sae_pt + 0x4014c2bc 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x52 (size before relaxing) + 0x4014c2bc hostapd_setup_sae_pt + *fill* 0x4014c30a 0x2 + .text.hostapd_setup_wpa_psk + 0x4014c30c 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x4e (size before relaxing) + 0x4014c30c hostapd_setup_wpa_psk + *fill* 0x4014c356 0x2 + .text.hostapd_get_psk + 0x4014c358 0x37 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x4014c358 hostapd_get_psk + *fill* 0x4014c38f 0x1 + .text.hostapd_config_clear_wpa_psk + 0x4014c390 0x1b esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x4014c390 hostapd_config_clear_wpa_psk + *fill* 0x4014c3ab 0x1 + .text.hostapd_config_free_bss + 0x4014c3ac 0x1b esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x1f (size before relaxing) + 0x4014c3ac hostapd_config_free_bss + *fill* 0x4014c3c7 0x1 + .text.wpa_free_sta_sm + 0x4014c3c8 0x5e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x4014c426 0x2 + .text.wpa_group_init_gmk_and_counter + 0x4014c428 0x72 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x4014c49a 0x2 + .text.wpa_gmk_to_gtk + 0x4014c49c 0x4d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x4014c4e9 0x3 + .text.wpa_replay_counter_valid + 0x4014c4ec 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x4014c512 0x2 + .text.wpa_replay_counter_mark_invalid + 0x4014c514 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x4014c539 0x3 + .text.wpa_verify_key_mic + 0x4014c53c 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x84 (size before relaxing) + .text.ieee80211w_kde_add + 0x4014c5bc 0x72 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x4014c62e 0x2 + .text.resend_eapol_handle + 0x4014c630 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4014c630 resend_eapol_handle + *fill* 0x4014c64a 0x2 + .text.wpa_auth_set_key$part$0 + 0x4014c64c 0x46 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4a (size before relaxing) + *fill* 0x4014c692 0x2 + .text.sm_WPA_PTK_DISCONNECT_Enter$constprop$0 + 0x4014c694 0x2b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x4014c6bf 0x1 + .text.wpa_gtk_update$isra$0 + 0x4014c6c0 0x77 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x83 (size before relaxing) + *fill* 0x4014c737 0x1 + .text.wpa_group_gtk_init + 0x4014c738 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x4014c76e 0x2 + .text.wpa_group_config_group_keys + 0x4014c770 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x5b (size before relaxing) + *fill* 0x4014c7c0 0x0 + .text.sm_WPA_PTK_AUTHENTICATION2_Enter$constprop$0 + 0x4014c7c0 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x5c (size before relaxing) + .text.wpa_group_sm_step$part$0 + 0x4014c814 0x73 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x4014c887 0x1 + .text.wpa_rekey_gtk + 0x4014c888 0x46 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x49 (size before relaxing) + *fill* 0x4014c8ce 0x2 + .text.wpa_init + 0x4014c8d0 0xac esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xb8 (size before relaxing) + 0x4014c8d0 wpa_init + .text.wpa_auth_sta_init + 0x4014c97c 0x61 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4014c97c wpa_auth_sta_init + *fill* 0x4014c9dd 0x3 + .text.wpa_auth_sta_deinit + 0x4014c9e0 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x37 (size before relaxing) + 0x4014c9e0 wpa_auth_sta_deinit + *fill* 0x4014ca10 0x0 + .text.wpa_auth_pmksa_add_sae + 0x4014ca10 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x3a (size before relaxing) + 0x4014ca10 wpa_auth_pmksa_add_sae + *fill* 0x4014ca46 0x2 + .text.wpa_auth_add_sae_pmkid + 0x4014ca48 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4014ca48 wpa_auth_add_sae_pmkid + *fill* 0x4014ca6a 0x2 + .text.__wpa_send_eapol + 0x4014ca6c 0x32b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x34b (size before relaxing) + 0x4014ca6c __wpa_send_eapol + *fill* 0x4014cd97 0x1 + .text.wpa_send_eapol + 0x4014cd98 0x53 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x5b (size before relaxing) + *fill* 0x4014cdeb 0x1 + .text.sm_WPA_PTK_PTKSTART_Enter$constprop$0 + 0x4014cdec 0xb8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.sm_WPA_PTK_PTKINITNEGOTIATING_Enter$constprop$0 + 0x4014cea4 0x14a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x156 (size before relaxing) + *fill* 0x4014cfee 0x2 + .text.sm_WPA_PTK_GROUP_REKEYNEGOTIATING_Enter$constprop$0 + 0x4014cff0 0xea esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xf6 (size before relaxing) + *fill* 0x4014d0da 0x2 + .text.wpa_remove_ptk + 0x4014d0dc 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x3a (size before relaxing) + 0x4014d0dc wpa_remove_ptk + *fill* 0x4014d112 0x2 + .text.sm_WPA_PTK_INITIALIZE_Enter$constprop$0 + 0x4014d114 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4e (size before relaxing) + *fill* 0x4014d15e 0x2 + .text.wpa_deinit + 0x4014d160 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4014d160 wpa_deinit + *fill* 0x4014d196 0x2 + .text.wpa_ap_remove + 0x4014d198 0x47 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4014d198 wpa_ap_remove + *fill* 0x4014d1df 0x1 + .text.wpa_auth_uses_sae + 0x4014d1e0 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4014d1e0 wpa_auth_uses_sae + *fill* 0x4014d1fa 0x2 + .text.wpa_auth_get_psk$isra$0 + 0x4014d1fc 0x51 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x59 (size before relaxing) + *fill* 0x4014d24d 0x3 + .text.sm_WPA_PTK_PTKCALCNEGOTIATING_Enter$constprop$0 + 0x4014d250 0x142 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x14a (size before relaxing) + *fill* 0x4014d392 0x2 + .text.wpa_sm_step + 0x4014d394 0x409 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x438 (size before relaxing) + *fill* 0x4014d79d 0x3 + .text.wpa_rekey_ptk + 0x4014d7a0 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x4014d7b9 0x3 + .text.wpa_auth_sta_associated + 0x4014d7bc 0x67 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4014d7bc wpa_auth_sta_associated + *fill* 0x4014d823 0x1 + .text.wpa_ap_join + 0x4014d824 0xe4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xff (size before relaxing) + 0x4014d824 wpa_ap_join + *fill* 0x4014d908 0x0 + .text.wpa_receive + 0x4014d908 0x3af esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x3db (size before relaxing) + 0x4014d908 wpa_receive + *fill* 0x4014dcb7 0x1 + .text.hostap_eapol_resend_process + 0x4014dcb8 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4014dcb8 hostap_eapol_resend_process + .text.WPA_GET_BE32 + 0x4014dcf0 0x2b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + *fill* 0x4014dd1b 0x1 + .text.wpa_write_rsn_ie + 0x4014dd1c 0x1d6 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x1da (size before relaxing) + 0x4014dd1c wpa_write_rsn_ie + *fill* 0x4014def2 0x2 + .text.wpa_write_rsnxe + 0x4014def4 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x4014def4 wpa_write_rsnxe + *fill* 0x4014df26 0x2 + .text.wpa_auth_gen_wpa_ie + 0x4014df28 0x129 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x12d (size before relaxing) + 0x4014df28 wpa_auth_gen_wpa_ie + *fill* 0x4014e051 0x3 + .text.wpa_add_kde + 0x4014e054 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x4014e054 wpa_add_kde + .text.wpa_validate_wpa_ie + 0x4014e09c 0x240 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x250 (size before relaxing) + 0x4014e09c wpa_validate_wpa_ie + .text.wpa_parse_kde_ies + 0x4014e2dc 0x104 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x4014e2dc wpa_parse_kde_ies + .text._pmksa_cache_free_entry + 0x4014e3e0 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x2b (size before relaxing) + *fill* 0x4014e408 0x0 + .text.pmksa_cache_set_expiration + 0x4014e408 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x40 (size before relaxing) + .text.pmksa_cache_free_entry + 0x4014e444 0x65 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x4014e444 pmksa_cache_free_entry + *fill* 0x4014e4a9 0x3 + .text.pmksa_cache_expire + 0x4014e4ac 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x3b (size before relaxing) + *fill* 0x4014e4e0 0x0 + .text.pmksa_cache_auth_create_entry + 0x4014e4e0 0xd9 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x4014e4e0 pmksa_cache_auth_create_entry + *fill* 0x4014e5b9 0x3 + .text.pmksa_cache_auth_deinit + 0x4014e5bc 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x2f (size before relaxing) + 0x4014e5bc pmksa_cache_auth_deinit + *fill* 0x4014e5e4 0x0 + .text.pmksa_cache_auth_get + 0x4014e5e4 0x5c esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x4014e5e4 pmksa_cache_auth_get + .text.pmksa_cache_auth_add_entry + 0x4014e640 0x8d esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x99 (size before relaxing) + 0x4014e640 pmksa_cache_auth_add_entry + *fill* 0x4014e6cd 0x3 + .text.pmksa_cache_auth_add + 0x4014e6d0 0x37 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x3b (size before relaxing) + 0x4014e6d0 pmksa_cache_auth_add + *fill* 0x4014e707 0x1 + .text.pmksa_cache_auth_init + 0x4014e708 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + 0x4014e708 pmksa_cache_auth_init + .text.ap_get_sta + 0x4014e724 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0x4014e724 ap_get_sta + *fill* 0x4014e749 0x3 + .text.ap_free_sta + 0x4014e74c 0xa3 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0xa7 (size before relaxing) + 0x4014e74c ap_free_sta + *fill* 0x4014e7ef 0x1 + .text.ap_sta_add + 0x4014e7f0 0x62 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0x6a (size before relaxing) + 0x4014e7f0 ap_sta_add + *fill* 0x4014e852 0x2 + .text.auth_sae_send_commit + 0x4014e854 0x112 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x11d (size before relaxing) + *fill* 0x4014e966 0x2 + .text.auth_sae_send_confirm + 0x4014e968 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x5f (size before relaxing) + *fill* 0x4014e9bc 0x0 + .text.sae_accept_sta + 0x4014e9bc 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x4014e9bc sae_accept_sta + .text.sae_sm_step + 0x4014e9ec 0x14b esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x15f (size before relaxing) + *fill* 0x4014eb37 0x1 + .text.handle_auth_sae + 0x4014eb38 0x2cb esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x2ef (size before relaxing) + 0x4014eb38 handle_auth_sae + *fill* 0x4014ee03 0x1 + .text.auth_sae_queue + 0x4014ee04 0xb7 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0xbb (size before relaxing) + 0x4014ee04 auth_sae_queue + *fill* 0x4014eebb 0x1 + .text.comeback_token_hash + 0x4014eebc 0x23 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + 0x4014eebc comeback_token_hash + *fill* 0x4014eedf 0x1 + .text.check_comeback_token + 0x4014eee0 0x7b esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + 0x7f (size before relaxing) + 0x4014eee0 check_comeback_token + *fill* 0x4014ef5b 0x1 + .text.auth_build_token_req + 0x4014ef5c 0x128 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + 0x144 (size before relaxing) + 0x4014ef5c auth_build_token_req + .text.hkdf_expand + 0x4014f084 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .text.sae_derive_commit + 0x4014f0b0 0xf2 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x109 (size before relaxing) + *fill* 0x4014f1a2 0x2 + .text.wpabuf_put_le16 + 0x4014f1a4 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .text.wpabuf_put_u8 + 0x4014f1bc 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x4014f1ce 0x2 + .text.const_time_memcmp$part$0 + 0x4014f1d0 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x4014f1fe 0x2 + .text.sae_pwd_seed_key + 0x4014f200 0x41 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x4014f241 0x3 + .text.wpabuf_put_data + 0x4014f244 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .text.wpabuf_put_buf + 0x4014f260 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x12 (size before relaxing) + *fill* 0x4014f26e 0x2 + .text.debug_print_bignum$isra$0 + 0x4014f270 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x2a (size before relaxing) + *fill* 0x4014f296 0x2 + .text.sswu 0x4014f298 0x5d5 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x749 (size before relaxing) + *fill* 0x4014f86d 0x3 + .text.sae_derive_pwe_ecc + 0x4014f870 0x390 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x3fc (size before relaxing) + .text.sae_cn_confirm + 0x4014fc00 0x91 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x95 (size before relaxing) + *fill* 0x4014fc91 0x3 + .text.sae_cn_confirm_ffc + 0x4014fc94 0x6a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x72 (size before relaxing) + *fill* 0x4014fcfe 0x2 + .text.sae_cn_confirm_ecc + 0x4014fd00 0x61 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x69 (size before relaxing) + *fill* 0x4014fd61 0x3 + .text.sae_clear_temp_data + 0x4014fd64 0x8f esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc3 (size before relaxing) + 0x4014fd64 sae_clear_temp_data + *fill* 0x4014fdf3 0x1 + .text.sae_clear_data + 0x4014fdf4 0x2b esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x33 (size before relaxing) + 0x4014fdf4 sae_clear_data + *fill* 0x4014fe1f 0x1 + .text.sae_set_group + 0x4014fe20 0x99 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xb5 (size before relaxing) + 0x4014fe20 sae_set_group + *fill* 0x4014feb9 0x3 + .text.sae_derive_pt_ffc$isra$0 + 0x4014febc 0x1a8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1f8 (size before relaxing) + .text.sae_derive_pwe_from_pt_ecc + 0x40150064 0x13a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x176 (size before relaxing) + 0x40150064 sae_derive_pwe_from_pt_ecc + *fill* 0x4015019e 0x2 + .text.sae_derive_pwe_from_pt_ffc + 0x401501a0 0x151 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x191 (size before relaxing) + 0x401501a0 sae_derive_pwe_from_pt_ffc + *fill* 0x401502f1 0x3 + .text.sae_deinit_pt + 0x401502f4 0x2b esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x33 (size before relaxing) + 0x401502f4 sae_deinit_pt + *fill* 0x4015031f 0x1 + .text.sae_derive_pt + 0x40150320 0x26a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x2b2 (size before relaxing) + 0x40150320 sae_derive_pt + *fill* 0x4015058a 0x2 + .text.sae_prepare_commit + 0x4015058c 0x29c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x2db (size before relaxing) + 0x4015058c sae_prepare_commit + *fill* 0x40150828 0x0 + .text.sae_prepare_commit_pt + 0x40150828 0x114 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x124 (size before relaxing) + 0x40150828 sae_prepare_commit_pt + .text.sae_process_commit + 0x4015093c 0x35e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x3a6 (size before relaxing) + 0x4015093c sae_process_commit + *fill* 0x40150c9a 0x2 + .text.sae_write_commit + 0x40150c9c 0x17b esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1cf (size before relaxing) + 0x40150c9c sae_write_commit + *fill* 0x40150e17 0x1 + .text.sae_group_allowed + 0x40150e18 0x4b esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x4e (size before relaxing) + 0x40150e18 sae_group_allowed + *fill* 0x40150e63 0x1 + .text.sae_parse_commit + 0x40150e64 0x451 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x4b5 (size before relaxing) + 0x40150e64 sae_parse_commit + *fill* 0x401512b5 0x3 + .text.sae_write_confirm + 0x401512b8 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xac (size before relaxing) + 0x401512b8 sae_write_confirm + .text.sae_check_confirm + 0x40151358 0x8b esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x8f (size before relaxing) + 0x40151358 sae_check_confirm + *fill* 0x401513e3 0x1 + .text.dragonfly_get_rand_2_to_r_1 + 0x401513e4 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x31 (size before relaxing) + *fill* 0x4015140d 0x3 + .text.dragonfly_min_pwe_loop_iter + 0x40151410 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x40151410 dragonfly_min_pwe_loop_iter + *fill* 0x40151436 0x2 + .text.dragonfly_get_random_qr_qnr + 0x40151438 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x87 (size before relaxing) + 0x40151438 dragonfly_get_random_qr_qnr + *fill* 0x401514b0 0x0 + .text.dragonfly_is_quadratic_residue_blind + 0x401514b0 0x150 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x190 (size before relaxing) + 0x401514b0 dragonfly_is_quadratic_residue_blind + .text.dragonfly_generate_scalar + 0x40151600 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0x68 (size before relaxing) + 0x40151600 dragonfly_generate_scalar + .text.dragonfly_sqrt + 0x40151658 0x8b esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + 0xa7 (size before relaxing) + 0x40151658 dragonfly_sqrt + *fill* 0x401516e3 0x1 + .text.WPA_GET_BE32 + 0x401516e4 0x2b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + *fill* 0x4015170f 0x1 + .text.rsn_selector_to_bitfield + 0x40151710 0x6d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x71 (size before relaxing) + *fill* 0x4015177d 0x3 + .text.wpa_selector_to_bitfield + 0x40151780 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x48 (size before relaxing) + .text.wpa_parse_wpa_ie_rsnxe + 0x401517c4 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x30 (size before relaxing) + 0x401517c4 wpa_parse_wpa_ie_rsnxe + .text.wpa_parse_wpa_ie_rsn + 0x401517f0 0x1b9 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x1c5 (size before relaxing) + 0x401517f0 wpa_parse_wpa_ie_rsn + *fill* 0x401519a9 0x3 + .text.wpa_parse_wpa_ie_wpa + 0x401519ac 0x143 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x153 (size before relaxing) + 0x401519ac wpa_parse_wpa_ie_wpa + *fill* 0x40151aef 0x1 + .text.wpa_use_akm_defined + 0x40151af0 0x31 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x40151af0 wpa_use_akm_defined + *fill* 0x40151b21 0x3 + .text.wpa_use_aes_key_wrap + 0x40151b24 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x40151b24 wpa_use_aes_key_wrap + .text.wpa_eapol_key_mic + 0x40151b40 0x93 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x40151b40 wpa_eapol_key_mic + *fill* 0x40151bd3 0x1 + .text.wpa_akm_to_suite + 0x40151bd4 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x40151bd4 wpa_akm_to_suite + *fill* 0x40151c22 0x2 + .text.wpa_compare_rsn_ie + 0x40151c24 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x40151c24 wpa_compare_rsn_ie + *fill* 0x40151c56 0x2 + .text.rsn_pmkid + 0x40151c58 0x4d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x40151c58 rsn_pmkid + *fill* 0x40151ca5 0x3 + .text.wpa_pmk_to_ptk + 0x40151ca8 0x1c3 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x1c7 (size before relaxing) + 0x40151ca8 wpa_pmk_to_ptk + *fill* 0x40151e6b 0x1 + .text.wpa_cipher_to_suite + 0x40151e6c 0x79 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x40151e6c wpa_cipher_to_suite + *fill* 0x40151ee5 0x3 + .text.hmac_sha256_kdf + 0x40151ee8 0xc1 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + 0x40151ee8 hmac_sha256_kdf + *fill* 0x40151fa9 0x3 + .text.dh_groups_get + 0x40151fac 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + 0x40151fac dh_groups_get + .text.is_wpa2_enterprise_connection + 0x40151fbc 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x2b (size before relaxing) + *fill* 0x40151fe3 0x1 + .text.wpa_sm_pmksa_free_cb + 0x40151fe4 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x64 (size before relaxing) + .text.wpabuf_put_data$part$0 + 0x40152044 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x1a (size before relaxing) + *fill* 0x4015205a 0x2 + .text.wpa_sm_set_seq$constprop$0 + 0x4015205c 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + *fill* 0x40152096 0x2 + .text.ieee80211w_set_keys$constprop$0 + 0x40152098 0x81 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x89 (size before relaxing) + *fill* 0x40152119 0x3 + .text.wpa_eapol_key_send + 0x4015211c 0xa3 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4015211c wpa_eapol_key_send + *fill* 0x401521bf 0x1 + .text.wpa_sm_key_request + 0x401521c0 0x135 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x145 (size before relaxing) + *fill* 0x401522f5 0x3 + .text.wpa_sm_rekey_ptk + 0x401522f8 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x12 (size before relaxing) + *fill* 0x40152306 0x2 + .text.wpa_supplicant_send_2_of_4 + 0x40152308 0x103 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x113 (size before relaxing) + 0x40152308 wpa_supplicant_send_2_of_4 + *fill* 0x4015240b 0x1 + .text.wpa_supplicant_pairwise_gtk + 0x4015240c 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x78 (size before relaxing) + 0x4015240c wpa_supplicant_pairwise_gtk + .text.wpa_sm_set_state + 0x40152478 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x21 (size before relaxing) + 0x40152478 wpa_sm_set_state + *fill* 0x40152495 0x3 + .text.wpa_supplicant_key_neg_complete + 0x40152498 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x32 (size before relaxing) + 0x40152498 wpa_supplicant_key_neg_complete + *fill* 0x401524c2 0x2 + .text.wpa_supplicant_stop_countermeasures + 0x401524c4 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x2a (size before relaxing) + 0x401524c4 wpa_supplicant_stop_countermeasures + *fill* 0x401524eb 0x1 + .text.wpa_sm_set_pmk_from_pmksa + 0x401524ec 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x401524ec wpa_sm_set_pmk_from_pmksa + .text.wpa_supplicant_process_1_of_4 + 0x4015251c 0x27b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x2a7 (size before relaxing) + 0x4015251c wpa_supplicant_process_1_of_4 + *fill* 0x40152797 0x1 + .text.wpa_sm_init + 0x40152798 0x4d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x55 (size before relaxing) + 0x40152798 wpa_sm_init + *fill* 0x401527e5 0x3 + .text.wpa_sm_notify_assoc + 0x401527e8 0x76 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x401527e8 wpa_sm_notify_assoc + *fill* 0x4015285e 0x2 + .text.wpa_set_profile + 0x40152860 0x5c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x40152860 wpa_set_profile + .text.wpa_set_pmk + 0x401528bc 0x56 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x401528bc wpa_set_pmk + *fill* 0x40152912 0x2 + .text.wpa_set_passphrase + 0x40152914 0xac esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc8 (size before relaxing) + 0x40152914 wpa_set_passphrase + .text.set_assoc_ie + 0x401529c0 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x401529c0 set_assoc_ie + *fill* 0x401529e7 0x1 + .text.wpa_sm_set_key + 0x401529e8 0x62 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x66 (size before relaxing) + 0x401529e8 wpa_sm_set_key + *fill* 0x40152a4a 0x2 + .text.wpa_supplicant_install_gtk$constprop$0 + 0x40152a4c 0x148 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x150 (size before relaxing) + .text.wpa_supplicant_install_ptk$constprop$0 + 0x40152b94 0x82 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x92 (size before relaxing) + *fill* 0x40152c16 0x2 + .text.wpa_sm_rx_eapol + 0x40152c18 0x941 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x9cd (size before relaxing) + 0x40152c18 wpa_sm_rx_eapol + *fill* 0x40153559 0x3 + .text.wpa_michael_mic_failure + 0x4015355c 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x78 (size before relaxing) + 0x4015355c wpa_michael_mic_failure + .text.eapol_txcb + 0x401535c4 0x137 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x14b (size before relaxing) + 0x401535c4 eapol_txcb + *fill* 0x401536fb 0x1 + .text.wpa_sta_in_4way_handshake + 0x401536fc 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x401536fc wpa_sta_in_4way_handshake + *fill* 0x40153722 0x2 + .text.wpa_sta_cur_pmksa_matches_akm + 0x40153724 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x40153724 wpa_sta_cur_pmksa_matches_akm + *fill* 0x40153746 0x2 + .text.wpa_sta_clear_curr_pmksa + 0x40153748 0x1f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x22 (size before relaxing) + 0x40153748 wpa_sta_clear_curr_pmksa + *fill* 0x40153767 0x1 + .text.get_wpa_sm + 0x40153768 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x40153768 get_wpa_sm + .text.wpa_sm_set_ap_rsnxe + 0x40153770 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x74 (size before relaxing) + 0x40153770 wpa_sm_set_ap_rsnxe + .text.wpa_sm_set_assoc_rsnxe + 0x401537d8 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x401537d8 wpa_sm_set_assoc_rsnxe + .text.wpa_set_bss + 0x40153820 0x207 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x243 (size before relaxing) + 0x40153820 wpa_set_bss + *fill* 0x40153a27 0x1 + .text.wpa_sm_drop_sa + 0x40153a28 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x40153a28 wpa_sm_drop_sa + *fill* 0x40153a76 0x2 + .text.wpa_sm_deinit + 0x40153a78 0x2f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x33 (size before relaxing) + 0x40153a78 wpa_sm_deinit + *fill* 0x40153aa7 0x1 + .text.wpa_sm_notify_disassoc + 0x40153aa8 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x32 (size before relaxing) + 0x40153aa8 wpa_sm_notify_disassoc + *fill* 0x40153ad2 0x2 + .text.owe_build_assoc_req + 0x40153ad4 0xaf esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xd3 (size before relaxing) + 0x40153ad4 owe_build_assoc_req + *fill* 0x40153b83 0x1 + .text.owe_process_assoc_resp + 0x40153b84 0x1e5 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x221 (size before relaxing) + 0x40153b84 owe_process_assoc_resp + *fill* 0x40153d69 0x3 + .text.WPA_GET_BE32 + 0x40153d6c 0x2b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + *fill* 0x40153d97 0x1 + .text.wpa_parse_wpa_ie + 0x40153d98 0x35 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x40 (size before relaxing) + 0x40153d98 wpa_parse_wpa_ie + *fill* 0x40153dcd 0x3 + .text.wpa_gen_wpa_ie + 0x40153dd0 0x2e2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x2f2 (size before relaxing) + 0x40153dd0 wpa_gen_wpa_ie + *fill* 0x401540b2 0x2 + .text.wpa_gen_rsnxe + 0x401540b4 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x401540b4 wpa_gen_rsnxe + .text.wpa_supplicant_parse_ies + 0x401540f0 0x128 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x12c (size before relaxing) + 0x401540f0 wpa_supplicant_parse_ies + .text.wpabuf_put_data + 0x40154218 0x1b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + *fill* 0x40154233 0x1 + .text.wpabuf_alloc + 0x40154234 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x40154234 wpabuf_alloc + *fill* 0x40154252 0x2 + .text.wpabuf_alloc_copy + 0x40154254 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x1e (size before relaxing) + 0x40154254 wpabuf_alloc_copy + *fill* 0x4015426e 0x2 + .text.wpabuf_free + 0x40154270 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x40154270 wpabuf_free + .text.wpabuf_clear_free + 0x4015428c 0x1b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x4015428c wpabuf_clear_free + *fill* 0x401542a7 0x1 + .text.wpabuf_zeropad + 0x401542a8 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x44 (size before relaxing) + 0x401542a8 wpabuf_zeropad + .text.d_permute + 0x401542e4 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + *fill* 0x401542fa 0x2 + .text.d_check_char + 0x401542fc 0x71 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + *fill* 0x4015436d 0x3 + .text.wpabuf_put_data + 0x40154370 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x1a (size before relaxing) + *fill* 0x40154386 0x2 + .text.sae_pk_valid_password + 0x40154388 0xaf esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0xb3 (size before relaxing) + 0x40154388 sae_pk_valid_password + *fill* 0x40154437 0x1 + .text.sae_pk_base32_decode + 0x40154438 0xea esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x40154438 sae_pk_base32_decode + *fill* 0x40154522 0x2 + .text.sae_pk_set_password + 0x40154524 0x134 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x13c (size before relaxing) + 0x40154524 sae_pk_set_password + .text.sae_hash + 0x40154658 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x40154658 sae_hash + *fill* 0x40154676 0x2 + .text.sae_check_confirm_pk + 0x40154678 0x2ca esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x30e (size before relaxing) + 0x40154678 sae_check_confirm_pk + *fill* 0x40154942 0x2 + .text.eap_client_get_eap_state + 0x40154944 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + 0x40154944 eap_client_get_eap_state + .text.wpa_alloc_eapol + 0x40154958 0x57 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x40154958 wpa_alloc_eapol + *fill* 0x401549af 0x1 + .text.wpa_free_eapol + 0x401549b0 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x401549b0 wpa_free_eapol + .text.wpa_ether_send + 0x401549c0 0x46 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x4a (size before relaxing) + 0x401549c0 wpa_ether_send + *fill* 0x40154a06 0x2 + .text.hostapd_send_eapol + 0x40154a08 0x5c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x60 (size before relaxing) + 0x40154a08 hostapd_send_eapol + .text.wpa_supplicant_transition_disable + 0x40154a64 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x40154a64 wpa_supplicant_transition_disable + .text.wpa_sm_alloc_eapol + 0x40154abc 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x1c (size before relaxing) + 0x40154abc wpa_sm_alloc_eapol + .text.wpa_sm_free_eapol + 0x40154ad4 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0xe (size before relaxing) + 0x40154ad4 wpa_sm_free_eapol + *fill* 0x40154ade 0x2 + .text.wpa_sm_deauthenticate + 0x40154ae0 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x1e (size before relaxing) + 0x40154ae0 wpa_sm_deauthenticate + *fill* 0x40154afa 0x2 + .text.crypto_rng_wrapper + 0x40154afc 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + *fill* 0x40154b0d 0x3 + .text.crypto_bignum_init + 0x40154b10 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x1a (size before relaxing) + 0x40154b10 crypto_bignum_init + *fill* 0x40154b26 0x2 + .text.crypto_bignum_init_set + 0x40154b28 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x40154b28 crypto_bignum_init_set + *fill* 0x40154b56 0x2 + .text.crypto_bignum_init_uint + 0x40154b58 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x26 (size before relaxing) + 0x40154b58 crypto_bignum_init_uint + *fill* 0x40154b7a 0x2 + .text.crypto_bignum_deinit + 0x40154b7c 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x40154b7c crypto_bignum_deinit + *fill* 0x40154b92 0x2 + .text.crypto_bignum_to_bin + 0x40154b94 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x40154b94 crypto_bignum_to_bin + .text.crypto_bignum_add + 0x40154be0 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x40154be0 crypto_bignum_add + .text.crypto_bignum_mod + 0x40154bfc 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x40154bfc crypto_bignum_mod + .text.crypto_bignum_exptmod + 0x40154c18 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x40154c18 crypto_bignum_exptmod + .text.crypto_bignum_inverse + 0x40154c38 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x40154c38 crypto_bignum_inverse + .text.crypto_bignum_sub + 0x40154c54 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x40154c54 crypto_bignum_sub + .text.crypto_bignum_div + 0x40154c70 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x40154c70 crypto_bignum_div + *fill* 0x40154c8d 0x3 + .text.crypto_bignum_mulmod + 0x40154c90 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x40154c90 crypto_bignum_mulmod + .text.crypto_bignum_sqrmod + 0x40154cbc 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x40 (size before relaxing) + 0x40154cbc crypto_bignum_sqrmod + .text.crypto_bignum_rshift + 0x40154cf4 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x40154cf4 crypto_bignum_rshift + *fill* 0x40154d1b 0x1 + .text.crypto_bignum_cmp + 0x40154d1c 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x40154d1c crypto_bignum_cmp + *fill* 0x40154d2d 0x3 + .text.crypto_bignum_is_zero + 0x40154d30 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x40154d30 crypto_bignum_is_zero + *fill* 0x40154d46 0x2 + .text.crypto_bignum_is_one + 0x40154d48 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x40154d48 crypto_bignum_is_one + *fill* 0x40154d5e 0x2 + .text.crypto_bignum_is_odd + 0x40154d60 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x40154d60 crypto_bignum_is_odd + .text.crypto_bignum_rand + 0x40154d78 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x40154d78 crypto_bignum_rand + .text.crypto_bignum_legendre + 0x40154d98 0x87 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x8f (size before relaxing) + 0x40154d98 crypto_bignum_legendre + *fill* 0x40154e1f 0x1 + .text.crypto_bignum_addmod + 0x40154e20 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + 0x38 (size before relaxing) + 0x40154e20 crypto_bignum_addmod + .text.aes_s2v 0x40154e50 0x171 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + 0x175 (size before relaxing) + *fill* 0x40154fc1 0x3 + .text.aes_siv_decrypt + 0x40154fc4 0xcd esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + 0xd5 (size before relaxing) + 0x40154fc4 aes_siv_decrypt + *fill* 0x40155091 0x3 + .text.ieee802_11_parse_elems + 0x40155094 0xd5 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + 0x40155094 ieee802_11_parse_elems + *fill* 0x40155169 0x3 + .text.pmksa_cache_free_entry + 0x4015516c 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + *fill* 0x4015518e 0x2 + .text.pmksa_cache_set_expiration + 0x40155190 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x3e (size before relaxing) + *fill* 0x401551ca 0x2 + .text.pmksa_cache_expire + 0x401551cc 0x3b esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x43 (size before relaxing) + *fill* 0x40155207 0x1 + .text.pmksa_cache_flush + 0x40155208 0x64 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x40155208 pmksa_cache_flush + .text.pmksa_cache_add + 0x4015526c 0x1d1 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x1d9 (size before relaxing) + 0x4015526c pmksa_cache_add + *fill* 0x4015543d 0x3 + .text.pmksa_cache_deinit + 0x40155440 0x35 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x39 (size before relaxing) + 0x40155440 pmksa_cache_deinit + *fill* 0x40155475 0x3 + .text.pmksa_cache_get + 0x40155478 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x40155478 pmksa_cache_get + *fill* 0x401554b2 0x2 + .text.pmksa_cache_get_opportunistic + 0x401554b4 0x59 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x401554b4 pmksa_cache_get_opportunistic + *fill* 0x4015550d 0x3 + .text.pmksa_cache_set_current + 0x40155510 0x6f esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x73 (size before relaxing) + 0x40155510 pmksa_cache_set_current + *fill* 0x4015557f 0x1 + .text.pmksa_cache_init + 0x40155580 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x40155580 pmksa_cache_init + *fill* 0x401555a2 0x2 + .text.esp_coex_common_spin_lock_create_wrapper + 0x401555a4 0x2a esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x401555a4 esp_coex_common_spin_lock_create_wrapper + *fill* 0x401555ce 0x2 + .text.esp_coex_common_timer_done_wrapper + 0x401555d0 0xa esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0xe (size before relaxing) + 0x401555d0 esp_coex_common_timer_done_wrapper + *fill* 0x401555da 0x2 + .text.esp_coex_common_timer_setfn_wrapper + 0x401555dc 0xe esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x12 (size before relaxing) + 0x401555dc esp_coex_common_timer_setfn_wrapper + *fill* 0x401555ea 0x2 + .text.esp_coex_common_semphr_create_wrapper + 0x401555ec 0x11 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x401555ec esp_coex_common_semphr_create_wrapper + *fill* 0x401555fd 0x3 + .text.esp_coex_common_semphr_delete_wrapper + 0x40155600 0xe esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x40155600 esp_coex_common_semphr_delete_wrapper + *fill* 0x4015560e 0x2 + .text.esp_coex_common_semphr_take_wrapper + 0x40155610 0x11 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x40155610 esp_coex_common_semphr_take_wrapper + *fill* 0x40155621 0x3 + .text.esp_coex_common_semphr_give_wrapper + 0x40155624 0x15 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + 0x40155624 esp_coex_common_semphr_give_wrapper + *fill* 0x40155639 0x3 + .text.mbedtls_pk_free + 0x4015563c 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x4015563c mbedtls_pk_free + *fill* 0x4015565a 0x2 + .text.mbedtls_pk_info_from_type + 0x4015565c 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x4015565c mbedtls_pk_info_from_type + *fill* 0x40155685 0x3 + .text.mbedtls_pk_ec_ro + 0x40155688 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + 0x1c (size before relaxing) + .text.mbedtls_pk_ecc_set_group + 0x401556a0 0x3f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + 0x43 (size before relaxing) + 0x401556a0 mbedtls_pk_ecc_set_group + *fill* 0x401556df 0x1 + .text.mbedtls_pk_ecc_set_pubkey + 0x401556e0 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + 0x28 (size before relaxing) + 0x401556e0 mbedtls_pk_ecc_set_pubkey + .text.rsa_debug + 0x40155704 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.eckey_debug + 0x40155724 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x40155739 0x3 + .text.rsa_free_wrap + 0x4015573c 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x40155752 0x2 + .text.rsa_alloc_wrap + 0x40155754 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x4015576e 0x2 + .text.rsa_check_pair_wrap + 0x40155770 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x40155781 0x3 + .text.rsa_encrypt_wrap + 0x40155784 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x32 (size before relaxing) + *fill* 0x401557b2 0x2 + .text.rsa_decrypt_wrap + 0x401557b4 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.rsa_sign_wrap + 0x401557e8 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x3c (size before relaxing) + .text.rsa_verify_wrap + 0x40155820 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.rsa_get_bitlen + 0x4015585c 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.eckey_free_wrap + 0x4015586c 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x16 (size before relaxing) + *fill* 0x4015587e 0x2 + .text.eckey_alloc_wrap + 0x40155880 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x4015589a 0x2 + .text.eckey_check_pair_wrap + 0x4015589c 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x401558b1 0x3 + .text.ecdsa_sign_wrap + 0x401558b4 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x401558d9 0x3 + .text.ecdsa_verify_wrap + 0x401558dc 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x26 (size before relaxing) + *fill* 0x401558fe 0x2 + .text.pk_get_pk_alg + 0x40155900 0x89 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x91 (size before relaxing) + *fill* 0x40155989 0x3 + .text.mbedtls_pk_rsa + 0x4015598c 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x1a (size before relaxing) + *fill* 0x401559a2 0x2 + .text.pk_use_ecparams + 0x401559a4 0x36c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x3a0 (size before relaxing) + .text.mbedtls_pk_parse_subpubkey + 0x40155d10 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x11c (size before relaxing) + 0x40155d10 mbedtls_pk_parse_subpubkey + .text.mbedtls_pk_parse_public_key + 0x40155e10 0x126 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x14e (size before relaxing) + 0x40155e10 mbedtls_pk_parse_public_key + *fill* 0x40155f36 0x2 + .text.pem_aes_decrypt + 0x40155f38 0x145 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + *fill* 0x4015607d 0x3 + .text.mbedtls_pem_init + 0x40156080 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x40156080 mbedtls_pem_init + *fill* 0x40156092 0x2 + .text.mbedtls_pem_read_buffer + 0x40156094 0x2da esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x2e2 (size before relaxing) + 0x40156094 mbedtls_pem_read_buffer + *fill* 0x4015636e 0x2 + .text.mbedtls_pem_free + 0x40156370 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x40156370 mbedtls_pem_free + .text.mbedtls_ct_base64_dec_value + 0x40156394 0x6e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + 0x7e (size before relaxing) + *fill* 0x40156402 0x2 + .text.mbedtls_base64_decode + 0x40156404 0x11c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + 0x40156404 mbedtls_base64_decode + .text.misc_nvs_load + 0x40156520 0x85 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + 0xa1 (size before relaxing) + 0x40156530 misc_nvs_load + *fill* 0x401565a5 0x3 + .text.misc_nvs_deinit + 0x401565a8 0x4a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + 0x5a (size before relaxing) + 0x401565ac misc_nvs_deinit + *fill* 0x401565f2 0x2 + .text.misc_nvs_init + 0x401565f4 0x2c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + 0x3c (size before relaxing) + 0x401565f4 misc_nvs_init + .text.ethip6_output + 0x40156620 0x6c esp-idf/lwip/liblwip.a(ethip6.c.obj) + 0x74 (size before relaxing) + 0x40156620 ethip6_output + .text._ZdaPv 0x4015668c 0xe /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_opv.o) + 0x4015668c _ZdaPv + *fill* 0x4015669a 0x2 + .text._ZdaPvj 0x4015669c 0xe /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_opvs.o) + 0x4015669c _ZdaPvj + *fill* 0x401566aa 0x2 + .text._ZSt15get_new_handlerv + 0x401566ac 0x10 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_handler.o) + 0x401566ac _ZSt15get_new_handlerv + .text._ZnajRKSt9nothrow_t + 0x401566bc 0x23 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opvnt.o) + 0x401566bc _ZnajRKSt9nothrow_t + *fill* 0x401566df 0x1 + .text._ZdlPv 0x401566e0 0xe /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_op.o) + 0x401566e0 _ZdlPv + *fill* 0x401566ee 0x2 + .text.__cxa_begin_catch + 0x401566f0 0x58 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_catch.o) + 0x401566f0 __cxa_begin_catch + .text.__cxa_end_catch + 0x40156748 0x66 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_catch.o) + 0x40156748 __cxa_end_catch + *fill* 0x401567ae 0x2 + .text._ZL15eh_globals_dtorPv + 0x401567b0 0x24 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) + .text.__cxa_get_globals_fast + 0x401567d4 0x1e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) + 0x401567d4 __cxa_get_globals_fast + *fill* 0x401567f2 0x2 + .text.__cxa_get_globals + 0x401567f4 0x42 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) + 0x401567f4 __cxa_get_globals + *fill* 0x40156836 0x2 + .text.startup._GLOBAL__sub_I__ZN17__eh_globals_init7_S_initE + 0x40156838 0x1e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) + *fill* 0x40156856 0x2 + .text.exit._GLOBAL__sub_D__ZN17__eh_globals_init7_S_initE + 0x40156858 0x1e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) + *fill* 0x40156876 0x2 + .text._ZN10__cxxabiv111__terminateEPFvvE + 0x40156878 0x1a /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) + 0x40156878 _ZN10__cxxabiv111__terminateEPFvvE + *fill* 0x40156892 0x2 + .text._ZSt13get_terminatev + 0x40156894 0x10 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) + 0x40156894 _ZSt13get_terminatev + .text._ZSt9terminatev + 0x401568a4 0xf /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) + 0x401568a4 _ZSt9terminatev + *fill* 0x401568b3 0x1 + .text._Znaj 0x401568b4 0x10 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opv.o) + 0x401568b4 _Znaj + .text._Znwj 0x401568c4 0x3f /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_op.o) + 0x401568c4 _Znwj + *fill* 0x40156903 0x1 + .text._ZN10__cxxabiv120__si_class_type_infoD2Ev + 0x40156904 0x12 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) + 0x40156904 _ZN10__cxxabiv120__si_class_type_infoD1Ev + 0x40156904 _ZN10__cxxabiv120__si_class_type_infoD2Ev + *fill* 0x40156916 0x2 + .text._ZN10__cxxabiv120__si_class_type_infoD0Ev + 0x40156918 0x18 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) + 0x40156918 _ZN10__cxxabiv120__si_class_type_infoD0Ev + .text._ZNKSt9type_infoeqERKS_$isra$0 + 0x40156930 0x32 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) + *fill* 0x40156962 0x2 + .text._ZNK10__cxxabiv120__si_class_type_info12__do_dyncastEiNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE + 0x40156964 0x7a /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) + 0x40156964 _ZNK10__cxxabiv120__si_class_type_info12__do_dyncastEiNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE + *fill* 0x401569de 0x2 + .text._ZNK10__cxxabiv120__si_class_type_info20__do_find_public_srcEiPKvPKNS_17__class_type_infoES2_ + 0x401569e0 0x2c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) + 0x401569e0 _ZNK10__cxxabiv120__si_class_type_info20__do_find_public_srcEiPKvPKNS_17__class_type_infoES2_ + .text._ZNK10__cxxabiv120__si_class_type_info11__do_upcastEPKNS_17__class_type_infoEPKvRNS1_15__upcast_resultE + 0x40156a0c 0x2a /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) + 0x40156a0c _ZNK10__cxxabiv120__si_class_type_info11__do_upcastEPKNS_17__class_type_infoEPKvRNS1_15__upcast_resultE + *fill* 0x40156a36 0x2 + .text._ZNKSt9bad_alloc4whatEv + 0x40156a38 0x8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(bad_alloc.o) + 0x40156a38 _ZNKSt9bad_alloc4whatEv + .text._ZNSt9bad_allocD2Ev + 0x40156a40 0x12 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(bad_alloc.o) + 0x40156a40 _ZNSt9bad_allocD1Ev + 0x40156a40 _ZNSt9bad_allocD2Ev + *fill* 0x40156a52 0x2 + .text._ZNSt9bad_allocD0Ev + 0x40156a54 0x18 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(bad_alloc.o) + 0x40156a54 _ZNSt9bad_allocD0Ev + .text._ZN10__cxxabiv117__class_type_infoD2Ev + 0x40156a6c 0x12 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) + 0x40156a6c _ZN10__cxxabiv117__class_type_infoD2Ev + 0x40156a6c _ZN10__cxxabiv117__class_type_infoD1Ev + *fill* 0x40156a7e 0x2 + .text._ZN10__cxxabiv117__class_type_infoD0Ev + 0x40156a80 0x18 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) + 0x40156a80 _ZN10__cxxabiv117__class_type_infoD0Ev + .text._ZNKSt9type_infoeqERKS_$isra$0 + 0x40156a98 0x32 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) + *fill* 0x40156aca 0x2 + .text._ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PKvRNS0_15__upcast_resultE + 0x40156acc 0x1e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) + 0x40156acc _ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PKvRNS0_15__upcast_resultE + *fill* 0x40156aea 0x2 + .text._ZNK10__cxxabiv117__class_type_info12__do_dyncastEiNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE + 0x40156aec 0x36 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) + 0x40156aec _ZNK10__cxxabiv117__class_type_info12__do_dyncastEiNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE + *fill* 0x40156b22 0x2 + .text._ZNK10__cxxabiv117__class_type_info10__do_catchEPKSt9type_infoPPvj + 0x40156b24 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) + 0x40156b24 _ZNK10__cxxabiv117__class_type_info10__do_catchEPKSt9type_infoPPvj + .text._ZdlPvj 0x40156b4c 0xe /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_ops.o) + 0x40156b4c _ZdlPvj + *fill* 0x40156b5a 0x2 + .text.unlikely.__wrap__Unwind_DeleteException + 0x40156b5c 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x40156b5c __wrap__Unwind_DeleteException + *fill* 0x40156b65 0x3 + .text.unlikely.__wrap___gxx_personality_v0 + 0x40156b68 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x40156b68 __wrap___gxx_personality_v0 + *fill* 0x40156b71 0x3 + .text.unlikely.__wrap___cxa_allocate_exception + 0x40156b74 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x40156b74 __wrap___cxa_allocate_exception + *fill* 0x40156b7d 0x3 + .text.unlikely.__wrap___cxa_throw + 0x40156b80 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x40156b80 __wrap___cxa_throw + *fill* 0x40156b89 0x3 + .text.ram_set_pbus_mem + 0x40156b8c 0x2ef /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x307 (size before relaxing) + 0x40156bd8 ram_set_pbus_mem + *fill* 0x40156e7b 0x1 + .text.ram_start_tx_tone + 0x40156e7c 0x82 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x86 (size before relaxing) + 0x40156e88 ram_start_tx_tone + *fill* 0x40156efe 0x2 + .text.ram_bb_tx_ht20_cen + 0x40156f00 0x28 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x30 (size before relaxing) + 0x40156f04 ram_bb_tx_ht20_cen + .text.ram_phy_get_noisefloor + 0x40156f28 0x46 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x4e (size before relaxing) + 0x40156f30 ram_phy_get_noisefloor + *fill* 0x40156f6e 0x2 + .text.ram_check_noise_floor + 0x40156f70 0xfe /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x12a (size before relaxing) + 0x40156f84 ram_check_noise_floor + *fill* 0x4015706e 0x2 + .text.ram_bb_bss_bw_40_en + 0x40157070 0x26 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x2a (size before relaxing) + 0x40157074 ram_bb_bss_bw_40_en + *fill* 0x40157096 0x2 + .text.bt_txdc_cal$part$5 + 0x40157098 0xbd /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0xc5 (size before relaxing) + *fill* 0x40157155 0x3 + .text.bt_txiq_cal$part$6 + 0x40157158 0xa6 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0xc6 (size before relaxing) + *fill* 0x401571fe 0x2 + .text.ram_gen_rx_gain_table + 0x40157200 0x16b /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x17b (size before relaxing) + 0x40157210 ram_gen_rx_gain_table + *fill* 0x4015736b 0x1 + .text.set_rx_gain_cal_iq + 0x4015736c 0x363 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x3bb (size before relaxing) + 0x40157394 set_rx_gain_cal_iq + *fill* 0x401576cf 0x1 + .text.rx_chan_dc_sort + 0x401576d0 0x1c3 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x1c7 (size before relaxing) + 0x401576d0 rx_chan_dc_sort + *fill* 0x40157893 0x1 + .text.set_rx_gain_cal_dc + 0x40157894 0x3b2 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x3fa (size before relaxing) + 0x40157898 set_rx_gain_cal_dc + *fill* 0x40157c46 0x2 + .text.wr_rx_gain_mem + 0x40157c48 0x1e3 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x1f3 (size before relaxing) + 0x40157c54 wr_rx_gain_mem + *fill* 0x40157e2b 0x1 + .text.set_rx_gain_testchip_70 + 0x40157e2c 0x244 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x28c (size before relaxing) + 0x40157e48 set_rx_gain_testchip_70 + .text.bt_index_to_bb + 0x40158070 0x16 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x1a (size before relaxing) + 0x40158070 bt_index_to_bb + *fill* 0x40158086 0x2 + .text.set_tx_gain_table_bt + 0x40158088 0x33 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x4b (size before relaxing) + 0x40158090 set_tx_gain_table_bt + *fill* 0x401580bb 0x1 + .text.set_chanfreq_nomac + 0x401580bc 0x27 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x2f (size before relaxing) + 0x401580bc set_chanfreq_nomac + *fill* 0x401580e3 0x1 + .text.chip_sleep_prot_en + 0x401580e4 0x7e /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x9e (size before relaxing) + 0x401580f0 chip_sleep_prot_en + *fill* 0x40158162 0x2 + .text.chip_sleep_prot_dis + 0x40158164 0x29 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x35 (size before relaxing) + 0x40158168 chip_sleep_prot_dis + *fill* 0x4015818d 0x3 + .text.set_rx_sense + 0x40158190 0x2dc /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x32c (size before relaxing) + 0x401581cc set_rx_sense + .text.read_hw_noisefloor + 0x4015846c 0x14 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x1c (size before relaxing) + 0x4015846c read_hw_noisefloor + .text.noise_check_loop + 0x40158480 0x166 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x19a (size before relaxing) + 0x4015848c noise_check_loop + *fill* 0x401585e6 0x2 + .text.chip_v7_set_chan_misc + 0x401585e8 0x93 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0xab (size before relaxing) + 0x40158600 chip_v7_set_chan_misc + *fill* 0x4015867b 0x1 + .text.set_rx_gain_table + 0x4015867c 0x235 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x2c1 (size before relaxing) + 0x401586a0 set_rx_gain_table + *fill* 0x401588b1 0x3 + .text.txiq_cal_init + 0x401588b4 0xdc /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0xf4 (size before relaxing) + 0x401588b8 txiq_cal_init + .text.analog_gain_init + 0x40158990 0xc3 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0xc7 (size before relaxing) + 0x40158994 analog_gain_init + *fill* 0x40158a53 0x1 + .text.bb_init 0x40158a54 0xd4 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x134 (size before relaxing) + 0x40158a70 bb_init + .text.register_chipv7_phy_init_param + 0x40158b28 0x225 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x229 (size before relaxing) + 0x40158b38 register_chipv7_phy_init_param + *fill* 0x40158d4d 0x3 + .text.phy_get_romfunc_addr + 0x40158d50 0x31d /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x321 (size before relaxing) + 0x40158e08 phy_get_romfunc_addr + *fill* 0x4015906d 0x3 + .text.rf_cal_data_recovery + 0x40159070 0xa2 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0xae (size before relaxing) + 0x40159070 rf_cal_data_recovery + *fill* 0x40159112 0x2 + .text.rf_cal_data_backup + 0x40159114 0x186 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x1a2 (size before relaxing) + 0x40159124 rf_cal_data_backup + *fill* 0x4015929a 0x2 + .text.phy_get_rf_cal_version + 0x4015929c 0xc /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x401592a0 phy_get_rf_cal_version + .text.i2cmst_reg_init + 0x401592a8 0x9b /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0xcf (size before relaxing) + 0x401592b4 i2cmst_reg_init + *fill* 0x40159343 0x1 + .text.fe_reg_init + 0x40159344 0xc7 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x103 (size before relaxing) + 0x4015935c fe_reg_init + *fill* 0x4015940b 0x1 + .text.get_phy_version_str + 0x4015940c 0x30 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x3b (size before relaxing) + 0x40159420 get_phy_version_str + *fill* 0x4015943c 0x0 + .text.phy_rfcal_data_check_value + 0x4015943c 0x313 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x31f (size before relaxing) + 0x40159458 phy_rfcal_data_check_value + *fill* 0x4015974f 0x1 + .text.reset_rf_dig + 0x40159750 0x7a /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0xa6 (size before relaxing) + 0x40159754 reset_rf_dig + *fill* 0x401597ca 0x2 + .text.register_chipv7_phy + 0x401597cc 0x2b3 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x35b (size before relaxing) + 0x401597fc register_chipv7_phy + *fill* 0x40159a7f 0x1 + .text.phy_set_most_tpw + 0x40159a80 0x49 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x55 (size before relaxing) + 0x40159a8c phy_set_most_tpw + *fill* 0x40159ac9 0x3 + .text.chan14_mic_cfg + 0x40159acc 0xfa /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x11e (size before relaxing) + 0x40159ae0 chan14_mic_cfg + *fill* 0x40159bc6 0x2 + .text.phy_enable_low_rate + 0x40159bc8 0x62 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x76 (size before relaxing) + 0x40159bd4 phy_enable_low_rate + *fill* 0x40159c2a 0x2 + .text.phy_disable_low_rate + 0x40159c2c 0x5a /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x76 (size before relaxing) + 0x40159c30 phy_disable_low_rate + *fill* 0x40159c86 0x2 + .text.phy_init_param_set + 0x40159c88 0x11 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x15 (size before relaxing) + 0x40159c88 phy_init_param_set + *fill* 0x40159c99 0x3 + .text.phy_change_channel_nomac + 0x40159c9c 0x10 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + 0x17 (size before relaxing) + 0x40159c9c phy_change_channel_nomac + *fill* 0x40159cac 0x0 + .text.ram_index_to_txbbgain + 0x40159cac 0x1e /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x40159cb0 ram_index_to_txbbgain + *fill* 0x40159cca 0x2 + .text.ram_txdc_cal_v70 + 0x40159ccc 0x1c3 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x1eb (size before relaxing) + 0x40159ce0 ram_txdc_cal_v70 + *fill* 0x40159e8f 0x1 + .text.txcal_debuge_mode + 0x40159e90 0x5b /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x67 (size before relaxing) + 0x40159e90 txcal_debuge_mode + *fill* 0x40159eeb 0x1 + .text.ram_txcal_work_mode + 0x40159eec 0x2e /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x32 (size before relaxing) + 0x40159eec ram_txcal_work_mode + *fill* 0x40159f1a 0x2 + .text.ram_get_fm_sar_dout + 0x40159f1c 0xa1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0xb5 (size before relaxing) + 0x40159f20 ram_get_fm_sar_dout + *fill* 0x40159fbd 0x3 + .text.ram_txiq_get_mis_pwr + 0x40159fc0 0xe0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x100 (size before relaxing) + 0x40159fd0 ram_txiq_get_mis_pwr + .text.ram_txiq_cover + 0x4015a0a0 0x187 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x18b (size before relaxing) + 0x4015a0a0 ram_txiq_cover + *fill* 0x4015a227 0x1 + .text.rfcal_txiq + 0x4015a228 0x1dd /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x21d (size before relaxing) + 0x4015a228 rfcal_txiq + *fill* 0x4015a405 0x3 + .text.ram_iq_est_enable + 0x4015a408 0xaf /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0xcf (size before relaxing) + 0x4015a420 ram_iq_est_enable + *fill* 0x4015a4b7 0x1 + .text.ram_iq_est_disable + 0x4015a4b8 0x34 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x44 (size before relaxing) + 0x4015a4b8 ram_iq_est_disable + .text.ram_dc_iq_est + 0x4015a4ec 0x76 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x92 (size before relaxing) + 0x4015a4ec ram_dc_iq_est + *fill* 0x4015a562 0x2 + .text.ram_pbus_rx_dco_cal + 0x4015a564 0x2ff /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x323 (size before relaxing) + 0x4015a578 ram_pbus_rx_dco_cal + *fill* 0x4015a863 0x1 + .text.rxdc_est_min + 0x4015a864 0x64 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x68 (size before relaxing) + 0x4015a864 rxdc_est_min + .text.pbus_rx_dco_cal_1step + 0x4015a8c8 0x679 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x699 (size before relaxing) + 0x4015a8c8 pbus_rx_dco_cal_1step + *fill* 0x4015af41 0x3 + .text.rc_cal 0x4015af44 0x2aa /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x2ca (size before relaxing) + 0x4015af54 rc_cal + *fill* 0x4015b1ee 0x2 + .text.ram_rfcal_txcap + 0x4015b1f0 0x1f4 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x204 (size before relaxing) + 0x4015b1f8 ram_rfcal_txcap + .text.tx_cap_init + 0x4015b3e4 0x184 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x1a8 (size before relaxing) + 0x4015b3f0 tx_cap_init + .text.ram_meas_tone_pwr_db + 0x4015b568 0x55 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x5d (size before relaxing) + 0x4015b568 ram_meas_tone_pwr_db + *fill* 0x4015b5bd 0x3 + .text.ram_rfcal_pwrctrl + 0x4015b5c0 0x24e /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x25a (size before relaxing) + 0x4015b5c4 ram_rfcal_pwrctrl + *fill* 0x4015b80e 0x2 + .text.ram_tx_pwr_backoff + 0x4015b810 0x20d /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x225 (size before relaxing) + 0x4015b810 ram_tx_pwr_backoff + *fill* 0x4015ba1d 0x3 + .text.cal_rf_ana_gain + 0x4015ba20 0xdf /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0xff (size before relaxing) + 0x4015ba2c cal_rf_ana_gain + *fill* 0x4015baff 0x1 + .text.tx_pwctrl_init_cal + 0x4015bb00 0x181 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x1c1 (size before relaxing) + 0x4015bb0c tx_pwctrl_init_cal + *fill* 0x4015bc81 0x3 + .text.tx_pwctrl_init + 0x4015bc84 0x9c /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0xc8 (size before relaxing) + 0x4015bc88 tx_pwctrl_init + .text.bt_tx_pwctrl_init + 0x4015bd20 0x1ea /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x23e (size before relaxing) + 0x4015bd30 bt_tx_pwctrl_init + *fill* 0x4015bf0a 0x2 + .text.ram_phy_get_vdd33 + 0x4015bf0c 0x18c /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x1dc (size before relaxing) + 0x4015bf28 ram_phy_get_vdd33 + .text.txpwr_offset + 0x4015c098 0x90 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0xa4 (size before relaxing) + 0x4015c0a4 txpwr_offset + .text.ram_pbus_force_mode + 0x4015c128 0xd2 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x116 (size before relaxing) + 0x4015c130 ram_pbus_force_mode + *fill* 0x4015c1fa 0x2 + .text.ram_pbus_xpd_tx_on + 0x4015c1fc 0xa4 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0xa8 (size before relaxing) + 0x4015c200 ram_pbus_xpd_tx_on + .text.ram_restart_cal + 0x4015c2a0 0x5e /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x62 (size before relaxing) + 0x4015c2a0 ram_restart_cal + *fill* 0x4015c2fe 0x2 + .text.ram_wait_rfpll_cal_end + 0x4015c300 0x44 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x50 (size before relaxing) + 0x4015c304 ram_wait_rfpll_cal_end + .text.ram_rfpll_set_freq + 0x4015c344 0xb2 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0xc5 (size before relaxing) + 0x4015c360 ram_rfpll_set_freq + *fill* 0x4015c3f6 0x2 + .text.get_lna_vga_dcap_val + 0x4015c3f8 0x64 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x68 (size before relaxing) + 0x4015c400 get_lna_vga_dcap_val + .text.chip_v7_rxmax_ext_ana + 0x4015c45c 0x9a /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0xa6 (size before relaxing) + 0x4015c460 chip_v7_rxmax_ext_ana + *fill* 0x4015c4f6 0x2 + .text.phy_freq_correct_opt + 0x4015c4f8 0x5b /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x6b (size before relaxing) + 0x4015c504 phy_freq_correct_opt + *fill* 0x4015c553 0x1 + .text.i2c_bias_init + 0x4015c554 0x33 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x37 (size before relaxing) + 0x4015c558 i2c_bias_init + *fill* 0x4015c587 0x1 + .text.rfpll_1p2_opt + 0x4015c588 0x73 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x7b (size before relaxing) + 0x4015c58c rfpll_1p2_opt + *fill* 0x4015c5fb 0x1 + .text.get_rf_freq_cap + 0x4015c5fc 0xa3 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0xaf (size before relaxing) + 0x4015c5fc get_rf_freq_cap + *fill* 0x4015c69f 0x1 + .text.correct_rfpll_offset + 0x4015c6a0 0x10f /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x133 (size before relaxing) + 0x4015c6a8 correct_rfpll_offset + *fill* 0x4015c7af 0x1 + .text.wr_rf_freq_mem + 0x4015c7b0 0x6f /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x83 (size before relaxing) + 0x4015c7b0 wr_rf_freq_mem + *fill* 0x4015c81f 0x1 + .text.write_freq_mem_all + 0x4015c820 0x96 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0xaa (size before relaxing) + 0x4015c820 write_freq_mem_all + *fill* 0x4015c8b6 0x2 + .text.get_rfrx_dcap_bt + 0x4015c8b8 0x36 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x3a (size before relaxing) + 0x4015c8b8 get_rfrx_dcap_bt + *fill* 0x4015c8ee 0x2 + .text.get_rf_freq_init$part$2 + 0x4015c8f0 0x12f /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x163 (size before relaxing) + *fill* 0x4015ca1f 0x1 + .text.bt_i2c_write_set + 0x4015ca20 0x5d8 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x630 (size before relaxing) + 0x4015ca88 bt_i2c_write_set + .text.bt_i2c_set_wifi_data + 0x4015cff8 0xf6 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x102 (size before relaxing) + 0x4015d00c bt_i2c_set_wifi_data + *fill* 0x4015d0ee 0x2 + .text.tsens_read_init + 0x4015d0f0 0x61 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x85 (size before relaxing) + 0x4015d0f4 tsens_read_init + *fill* 0x4015d151 0x3 + .text.bt_get_i2c_data + 0x4015d154 0x44c /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x450 (size before relaxing) + 0x4015d158 bt_get_i2c_data + .text.write_wifi_chan_data + 0x4015d5a0 0xdc /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0xf8 (size before relaxing) + 0x4015d5a8 write_wifi_chan_data + .text.set_chan_freq_hw_init + 0x4015d67c 0xa4 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0xdc (size before relaxing) + 0x4015d684 set_chan_freq_hw_init + .text.rf_init 0x4015d720 0x76 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0xaa (size before relaxing) + 0x4015d720 rf_init + *fill* 0x4015d796 0x2 + .text.set_chan_freq_sw_start + 0x4015d798 0x1c3 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x22b (size before relaxing) + 0x4015d7a8 set_chan_freq_sw_start + *fill* 0x4015d95b 0x1 + .text.set_channel_rfpll_freq + 0x4015d95c 0xd1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x109 (size before relaxing) + 0x4015d968 set_channel_rfpll_freq + *fill* 0x4015da2d 0x3 + .text.chip_v7_set_chan_nomac + 0x4015da30 0xe5 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x128 (size before relaxing) + 0x4015da40 chip_v7_set_chan_nomac + *fill* 0x4015db15 0x3 + .text.chip_v7_set_chan + 0x4015db18 0x1b /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x2f (size before relaxing) + 0x4015db18 chip_v7_set_chan + *fill* 0x4015db33 0x1 + .text.chip_v7_set_chan_offset + 0x4015db34 0x62 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x8a (size before relaxing) + 0x4015db34 chip_v7_set_chan_offset + *fill* 0x4015db96 0x2 + .text.chip_v7_set_chan_ana + 0x4015db98 0x1f /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x2f (size before relaxing) + 0x4015db98 chip_v7_set_chan_ana + *fill* 0x4015dbb7 0x1 + .text 0x4015dbb8 0xf0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fopen.o) + 0x4015dbb8 _fopen_r + 0x4015dc94 fopen + .text 0x4015dca8 0x31 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseek.o) + 0x4015dca8 _fseek_r + 0x4015dcc0 fseek + *fill* 0x4015dcd9 0x3 + .text 0x4015dcdc 0x29f /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fvwrite.o) + 0x4015dcdc __sfvwrite_r + *fill* 0x4015df7b 0x1 + .text 0x4015df7c 0x5e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-printf.o) + 0x4015df7c _printf_r + 0x4015dfa8 printf + *fill* 0x4015dfda 0x2 + .text 0x4015dfdc 0x9a /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-puts.o) + 0x4015dfdc _puts_r + 0x4015e064 puts + *fill* 0x4015e076 0x2 + .text 0x4015e078 0x111 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-refill.o) + 0x4015e098 __srefill_r + *fill* 0x4015e189 0x3 + .text 0x4015e18c 0xdf /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-snprintf.o) + 0x4015e18c _snprintf_r + 0x4015e1f8 snprintf + *fill* 0x4015e26b 0x1 + .text 0x4015e26c 0xa7 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sprintf.o) + 0x4015e26c _sprintf_r + 0x4015e2b8 sprintf + *fill* 0x4015e313 0x1 + .text 0x4015e314 0x3d /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vprintf.o) + 0x4015e314 vprintf + 0x4015e338 _vprintf_r + *fill* 0x4015e351 0x3 + .text 0x4015e354 0x81 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vsnprintf.o) + 0x4015e354 _vsnprintf_r + 0x4015e3ac vsnprintf + *fill* 0x4015e3d5 0x3 + .text 0x4015e3d8 0xae /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wsetup.o) + 0x4015e3d8 __swsetup_r + *fill* 0x4015e486 0x2 + .text 0x4015e488 0x33e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseeko.o) + 0x4015e488 _fseeko_r + 0x4015e7b0 fseeko + *fill* 0x4015e7c6 0x2 + .text 0x4015e7c8 0xc4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-reent.o) + 0x4015e7c8 _reclaim_reent + .text 0x4015e88c 0xd /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-errno.o) + 0x4015e88c __errno + *fill* 0x4015e899 0x3 + .text 0x4015e89c 0x18 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sysgettod.o) + 0x4015e89c gettimeofday + .text 0x4015e8b4 0x32fd /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) + 0x4015ed8c _svfprintf_r + *fill* 0x40161bb1 0x3 + .text 0x40161bb4 0x34b5 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + 0x4016208c _vfprintf_r + 0x40164fa8 vfprintf + *fill* 0x40165069 0x3 + .text 0x4016506c 0x2554 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfiprintf.o) + 0x40165544 __sprint_r + 0x40165568 _vfiprintf_r + 0x40167500 vfiprintf + .text 0x401675c0 0xf7 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-makebuf.o) + 0x401675c0 __swhatbuf_r + 0x40167630 __smakebuf_r + *fill* 0x401676b7 0x1 + .text 0x401676b8 0x2b /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-localeconv.o) + 0x401676b8 __localeconv_l + 0x401676c4 _localeconv_r + 0x401676d4 localeconv + *fill* 0x401676e3 0x1 + .text 0x401676e4 0x5f /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libm_a-s_frexp.o) + 0x401676e4 frexp + *fill* 0x40167743 0x1 + .text 0x40167744 0xdb1 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) + 0x40167884 _dtoa_r + *fill* 0x401684f5 0x3 + .text 0x401684f8 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mbtowc_r.o) + 0x401684f8 _mbtowc_r + 0x40168514 __ascii_mbtowc + .text 0x40168538 0xa2e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) + 0x40168538 _Balloc + 0x401685c8 _Bfree + 0x40168608 __multadd + 0x40168690 __s2b + 0x40168724 __hi0bits + 0x40168774 __lo0bits + 0x401687e4 __i2b + 0x4016880c __multiply + 0x4016897c __pow5mult + 0x40168a24 __lshift + 0x40168b28 __mcmp + 0x40168b64 __mdiff + 0x40168c9c __ulp + 0x40168cec __b2d + 0x40168d90 __d2b + 0x40168e3c __ratio + 0x40168e90 _mprec_log10 + 0x40168ec8 __copybits + 0x40168f18 __any_on + *fill* 0x40168f66 0x2 + .text 0x40168f68 0x248e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiprintf.o) + 0x40169440 __ssprint_r + 0x40169548 _svfiprintf_r + *fill* 0x4016b3f6 0x0 + *fill* 0x4016b3f6 0x0 + *fill* 0x4016b3f6 0x0 + *fill* 0x4016b3f6 0x2 + .text.pthread_include_pthread_impl + 0x4016b3f8 0x5 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x4016b3f8 pthread_include_pthread_impl + *fill* 0x4016b3fd 0x3 + .text.pthread_include_pthread_cond_var_impl + 0x4016b400 0x5 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + 0x4016b400 pthread_include_pthread_cond_var_impl + *fill* 0x4016b405 0x0 + *fill* 0x4016b405 0x0 + *fill* 0x4016b405 0x0 + *fill* 0x4016b405 0x0 + *fill* 0x4016b405 0x0 + *fill* 0x4016b405 0x3 + .text.pthread_include_pthread_local_storage_impl + 0x4016b408 0x5 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x4016b408 pthread_include_pthread_local_storage_impl + *fill* 0x4016b40d 0x3 + .text.pthread_include_pthread_rwlock_impl + 0x4016b410 0x5 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + 0x4016b410 pthread_include_pthread_rwlock_impl + *fill* 0x4016b415 0x3 + .text.pthread_include_pthread_semaphore_impl + 0x4016b418 0x5 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + 0x4016b418 pthread_include_pthread_semaphore_impl + *fill* 0x4016b41d 0x0 + *fill* 0x4016b41d 0x0 + *fill* 0x4016b41d 0x0 + *fill* 0x4016b41d 0x0 + *fill* 0x4016b41d 0x0 + *fill* 0x4016b41d 0x0 + *fill* 0x4016b41d 0x0 + *fill* 0x4016b41d 0x0 + *fill* 0x4016b41d 0x0 + *fill* 0x4016b41d 0x0 + *fill* 0x4016b41d 0x0 + *fill* 0x4016b41d 0x0 + *fill* 0x4016b41d 0x0 + *fill* 0x4016b41d 0x0 + *fill* 0x4016b41d 0x0 + *fill* 0x4016b41d 0x3 + .text.__esp_system_init_fn_init_components0 + 0x4016b420 0x7 esp-idf/esp_system/libesp_system.a(startup.c.obj) + *fill* 0x4016b427 0x0 + *fill* 0x4016b427 0x0 + *fill* 0x4016b427 0x0 + *fill* 0x4016b427 0x0 + *fill* 0x4016b427 0x0 + *fill* 0x4016b427 0x0 + *fill* 0x4016b427 0x0 + *fill* 0x4016b427 0x0 + *fill* 0x4016b427 0x0 + *fill* 0x4016b427 0x1 + .text.panic_get_address + 0x4016b428 0x7 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x4016b428 panic_get_address + *fill* 0x4016b42f 0x1 + .text.panic_get_cause + 0x4016b430 0x8 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x4016b430 panic_get_cause + .text.panic_set_address + 0x4016b438 0x7 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x4016b438 panic_set_address + *fill* 0x4016b43f 0x0 + *fill* 0x4016b43f 0x0 + *fill* 0x4016b43f 0x0 + *fill* 0x4016b43f 0x0 + *fill* 0x4016b43f 0x0 + *fill* 0x4016b43f 0x0 + *fill* 0x4016b43f 0x0 + *fill* 0x4016b43f 0x1 + .text.heap_caps_match + 0x4016b440 0x24 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x4016b440 heap_caps_match + *fill* 0x4016b464 0x0 + *fill* 0x4016b464 0x0 + *fill* 0x4016b464 0x0 + *fill* 0x4016b464 0x0 + *fill* 0x4016b464 0x0 + *fill* 0x4016b464 0x0 + *fill* 0x4016b464 0x0 + .text.s_compare_reserved_regions + 0x4016b464 0xc esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + *fill* 0x4016b470 0x0 + *fill* 0x4016b470 0x0 + *fill* 0x4016b470 0x0 + *fill* 0x4016b470 0x0 + *fill* 0x4016b470 0x0 + *fill* 0x4016b470 0x0 + .text.esp_intr_get_cpu + 0x4016b470 0xc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x4016b470 esp_intr_get_cpu + *fill* 0x4016b47c 0x0 + *fill* 0x4016b47c 0x0 + *fill* 0x4016b47c 0x0 + *fill* 0x4016b47c 0x0 + *fill* 0x4016b47c 0x0 + *fill* 0x4016b47c 0x0 + .text.pthread_setcancelstate + 0x4016b47c 0x7 esp-idf/newlib/libnewlib.a(pthread.c.obj) + 0x4016b47c pthread_setcancelstate + *fill* 0x4016b483 0x1 + .text.newlib_include_pthread_impl + 0x4016b484 0x5 esp-idf/newlib/libnewlib.a(pthread.c.obj) + 0x4016b484 newlib_include_pthread_impl + *fill* 0x4016b489 0x0 + *fill* 0x4016b489 0x0 + *fill* 0x4016b489 0x0 + *fill* 0x4016b489 0x0 + *fill* 0x4016b489 0x3 + .text.syscall_not_implemented + 0x4016b48c 0xb esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x4016b48c _getpid_r + 0x4016b48c _kill_r + 0x4016b48c _system_r + 0x4016b48c _isatty_r + *fill* 0x4016b497 0x0 + *fill* 0x4016b497 0x1 + .text.newlib_include_syscalls_impl + 0x4016b498 0x5 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x4016b498 newlib_include_syscalls_impl + *fill* 0x4016b49d 0x0 + *fill* 0x4016b49d 0x0 + *fill* 0x4016b49d 0x0 + *fill* 0x4016b49d 0x0 + *fill* 0x4016b49d 0x0 + *fill* 0x4016b49d 0x0 + *fill* 0x4016b49d 0x0 + *fill* 0x4016b49d 0x0 + *fill* 0x4016b49d 0x0 + *fill* 0x4016b49d 0x0 + *fill* 0x4016b49d 0x0 + *fill* 0x4016b49d 0x3 + .text.__cxa_guard_dummy + 0x4016b4a0 0x5 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + 0x4016b4a0 __cxa_guard_dummy + *fill* 0x4016b4a5 0x0 + *fill* 0x4016b4a5 0x0 + *fill* 0x4016b4a5 0x0 + *fill* 0x4016b4a5 0x0 + *fill* 0x4016b4a5 0x0 + *fill* 0x4016b4a5 0x0 + *fill* 0x4016b4a5 0x0 + *fill* 0x4016b4a5 0x3 + .text.include_esp_phy_override + 0x4016b4a8 0x5 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + 0x4016b4a8 include_esp_phy_override + *fill* 0x4016b4ad 0x0 + *fill* 0x4016b4ad 0x0 + *fill* 0x4016b4ad 0x0 + *fill* 0x4016b4ad 0x0 + *fill* 0x4016b4ad 0x0 + *fill* 0x4016b4ad 0x0 + *fill* 0x4016b4ad 0x0 + *fill* 0x4016b4ad 0x0 + *fill* 0x4016b4ad 0x0 + *fill* 0x4016b4ad 0x0 + *fill* 0x4016b4ad 0x0 + *fill* 0x4016b4ad 0x0 + *fill* 0x4016b4ad 0x0 + *fill* 0x4016b4ad 0x0 + *fill* 0x4016b4ad 0x0 + *fill* 0x4016b4ad 0x3 + .text.vfs_include_syscalls_impl + 0x4016b4b0 0x5 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4016b4b0 vfs_include_syscalls_impl + *fill* 0x4016b4b5 0x0 + *fill* 0x4016b4b5 0x0 + *fill* 0x4016b4b5 0x0 + *fill* 0x4016b4b5 0x0 + *fill* 0x4016b4b5 0x0 + *fill* 0x4016b4b5 0x0 + *fill* 0x4016b4b5 0x0 + *fill* 0x4016b4b5 0x0 + *fill* 0x4016b4b5 0x0 + *fill* 0x4016b4b5 0x0 + *fill* 0x4016b4b5 0x0 + *fill* 0x4016b4b5 0x0 + *fill* 0x4016b4b5 0x0 + *fill* 0x4016b4b5 0x0 + *fill* 0x4016b4b5 0x0 + *fill* 0x4016b4b5 0x0 + *fill* 0x4016b4b5 0x0 + *fill* 0x4016b4b5 0x0 + *fill* 0x4016b4b5 0x0 + *fill* 0x4016b4b5 0x0 + *fill* 0x4016b4b5 0x0 + *fill* 0x4016b4b5 0x0 + *fill* 0x4016b4b5 0x0 + *fill* 0x4016b4b5 0x3 + .text.nvs_sec_provider_include_impl + 0x4016b4b8 0x5 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + 0x4016b4b8 nvs_sec_provider_include_impl + *fill* 0x4016b4bd 0x0 + *fill* 0x4016b4bd 0x0 + *fill* 0x4016b4bd 0x0 + *fill* 0x4016b4bd 0x0 + *fill* 0x4016b4bd 0x0 + *fill* 0x4016b4bd 0x0 + *fill* 0x4016b4bd 0x0 + *fill* 0x4016b4bd 0x0 + *fill* 0x4016b4bd 0x0 + *fill* 0x4016b4bd 0x3 + .text.esp_efuse_get_field_size + 0x4016b4c0 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x4016b4c0 esp_efuse_get_field_size + *fill* 0x4016b4dc 0x0 + *fill* 0x4016b4dc 0x0 + .text.esp_efuse_utility_get_number_of_items + 0x4016b4dc 0x16 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x4016b4dc esp_efuse_utility_get_number_of_items + *fill* 0x4016b4f2 0x0 + *fill* 0x4016b4f2 0x2 + .text.esp_efuse_utility_check_errors + 0x4016b4f4 0x7 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x4016b4f4 esp_efuse_utility_check_errors + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x0 + *fill* 0x4016b4fb 0x1 + .text.uart_hal_get_sclk + 0x4016b4fc 0x18 esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x4016b4fc uart_hal_get_sclk + .text.uart_hal_get_baudrate + 0x4016b514 0x32 esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x4016b514 uart_hal_get_baudrate + *fill* 0x4016b546 0x2 + .text.uart_hal_set_stop_bits + 0x4016b548 0x52 esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x4016b548 uart_hal_set_stop_bits + *fill* 0x4016b59a 0x2 + .text.uart_hal_get_stop_bits + 0x4016b59c 0x28 esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x4016b59c uart_hal_get_stop_bits + .text.uart_hal_set_data_bit_num + 0x4016b5c4 0x1f esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x4016b5c4 uart_hal_set_data_bit_num + *fill* 0x4016b5e3 0x1 + .text.uart_hal_get_data_bit_num + 0x4016b5e4 0x11 esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x4016b5e4 uart_hal_get_data_bit_num + *fill* 0x4016b5f5 0x3 + .text.uart_hal_set_parity + 0x4016b5f8 0x35 esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x4016b5f8 uart_hal_set_parity + *fill* 0x4016b62d 0x3 + .text.uart_hal_get_parity + 0x4016b630 0x20 esp-idf/hal/libhal.a(uart_hal.c.obj) + 0x4016b630 uart_hal_get_parity + *fill* 0x4016b650 0x0 + *fill* 0x4016b650 0x0 + *fill* 0x4016b650 0x0 + *fill* 0x4016b650 0x0 + *fill* 0x4016b650 0x0 + *fill* 0x4016b650 0x0 + *fill* 0x4016b650 0x0 + *fill* 0x4016b650 0x0 + *fill* 0x4016b650 0x0 + *fill* 0x4016b650 0x0 + *fill* 0x4016b650 0x0 + *fill* 0x4016b650 0x0 + *fill* 0x4016b650 0x0 + *fill* 0x4016b650 0x0 + *fill* 0x4016b650 0x0 + *fill* 0x4016b650 0x0 + *fill* 0x4016b650 0x0 + *fill* 0x4016b650 0x0 + .text._ZN14intrusive_listI14NVSHandleEntryE5eraseENS1_8iteratorE + 0x4016b650 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4016b650 _ZN14intrusive_listI14NVSHandleEntryE5eraseENS1_8iteratorE + *fill* 0x4016b671 0x0 + *fill* 0x4016b671 0x0 + *fill* 0x4016b671 0x0 + *fill* 0x4016b671 0x0 + *fill* 0x4016b671 0x0 + *fill* 0x4016b671 0x0 + *fill* 0x4016b671 0x0 + *fill* 0x4016b671 0x0 + *fill* 0x4016b671 0x0 + *fill* 0x4016b671 0x0 + *fill* 0x4016b671 0x0 + *fill* 0x4016b671 0x0 + *fill* 0x4016b671 0x0 + *fill* 0x4016b671 0x0 + *fill* 0x4016b671 0x0 + *fill* 0x4016b671 0x3 + .text._ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE5eraseENS3_8iteratorE + 0x4016b674 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4016b674 _ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE5eraseENS3_8iteratorE + *fill* 0x4016b696 0x0 + *fill* 0x4016b696 0x2 + .text._ZN19CompressedEnumTableIbLj1ELj256EE3setEjb + 0x4016b698 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4016b698 _ZN19CompressedEnumTableIbLj1ELj256EE3setEjb + *fill* 0x4016b6ca 0x2 + .text._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE9push_backEPS2_ + 0x4016b6cc 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4016b6cc _ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE9push_backEPS2_ + *fill* 0x4016b6ed 0x0 + *fill* 0x4016b6ed 0x3 + .text._ZN3nvs15NVSHandleSimple6commitEv + 0x4016b6f0 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x4016b6f0 _ZN3nvs15NVSHandleSimple6commitEv + *fill* 0x4016b702 0x0 + *fill* 0x4016b702 0x0 + *fill* 0x4016b702 0x0 + *fill* 0x4016b702 0x0 + *fill* 0x4016b702 0x0 + *fill* 0x4016b702 0x0 + *fill* 0x4016b702 0x0 + *fill* 0x4016b702 0x0 + *fill* 0x4016b702 0x2 + .text._ZN3nvs12NVSPartitionD2Ev + 0x4016b704 0x5 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4016b704 _ZN3nvs12NVSPartitionD2Ev + 0x4016b704 _ZN3nvs12NVSPartitionD1Ev + *fill* 0x4016b709 0x3 + .text._ZN3nvs12NVSPartition18get_partition_nameEv + 0x4016b70c 0xa esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4016b70c _ZN3nvs12NVSPartition18get_partition_nameEv + *fill* 0x4016b716 0x2 + .text._ZN3nvs12NVSPartition11get_addressEv + 0x4016b718 0x9 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4016b718 _ZN3nvs12NVSPartition11get_addressEv + *fill* 0x4016b721 0x3 + .text._ZN3nvs12NVSPartition8get_sizeEv + 0x4016b724 0x9 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4016b724 _ZN3nvs12NVSPartition8get_sizeEv + *fill* 0x4016b72d 0x3 + .text._ZN3nvs12NVSPartition12get_readonlyEv + 0x4016b730 0xa esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x4016b730 _ZN3nvs12NVSPartition12get_readonlyEv + *fill* 0x4016b73a 0x0 + *fill* 0x4016b73a 0x0 + *fill* 0x4016b73a 0x0 + *fill* 0x4016b73a 0x0 + *fill* 0x4016b73a 0x2 + .text._ZN3nvs19NVSPartitionManagerD2Ev + 0x4016b73c 0x5 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x4016b73c _ZN3nvs19NVSPartitionManagerD2Ev + 0x4016b73c _ZN3nvs19NVSPartitionManagerD1Ev + *fill* 0x4016b741 0x0 + *fill* 0x4016b741 0x0 + *fill* 0x4016b741 0x0 + *fill* 0x4016b741 0x0 + *fill* 0x4016b741 0x3 + .text._ZN14intrusive_listIN3nvs12NVSPartitionEE5eraseENS2_8iteratorE + 0x4016b744 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x4016b744 _ZN14intrusive_listIN3nvs12NVSPartitionEE5eraseENS2_8iteratorE + *fill* 0x4016b766 0x0 + *fill* 0x4016b766 0x0 + *fill* 0x4016b766 0x2 + .text._ZN14intrusive_listIN3nvs15NVSHandleSimpleEE5eraseENS2_8iteratorE + 0x4016b768 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x4016b768 _ZN14intrusive_listIN3nvs15NVSHandleSimpleEE5eraseENS2_8iteratorE + *fill* 0x4016b789 0x0 + *fill* 0x4016b789 0x0 + *fill* 0x4016b789 0x0 + *fill* 0x4016b789 0x3 + .text._ZN3nvs4Lock4initEv + 0x4016b78c 0x7 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + 0x4016b78c _ZN3nvs4Lock4initEv + *fill* 0x4016b793 0x1 + .text._ZN3nvs8HashListC2Ev + 0x4016b794 0xd esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x4016b794 _ZN3nvs8HashListC2Ev + 0x4016b794 _ZN3nvs8HashListC1Ev + *fill* 0x4016b7a1 0x3 + .text._ZN3nvs8HashList13HashListBlockC2Ev + 0x4016b7a4 0x1b esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x4016b7a4 _ZN3nvs8HashList13HashListBlockC1Ev + 0x4016b7a4 _ZN3nvs8HashList13HashListBlockC2Ev + *fill* 0x4016b7bf 0x1 + .text._ZN14intrusive_listIN3nvs8HashList13HashListBlockEE5eraseENS3_8iteratorE + 0x4016b7c0 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x4016b7c0 _ZN14intrusive_listIN3nvs8HashList13HashListBlockEE5eraseENS3_8iteratorE + *fill* 0x4016b7e2 0x0 + *fill* 0x4016b7e2 0x0 + *fill* 0x4016b7e2 0x0 + *fill* 0x4016b7e2 0x2 + .text._ZN3nvs20isVariableLengthTypeENS_8ItemTypeE + 0x4016b7e4 0x26 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4016b7e4 _ZN3nvs20isVariableLengthTypeENS_8ItemTypeE + *fill* 0x4016b80a 0x0 + *fill* 0x4016b80a 0x0 + *fill* 0x4016b80a 0x2 + .text._ZN3nvs4Page14alterPageStateENS0_9PageStateE + 0x4016b80c 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4016b80c _ZN3nvs4Page14alterPageStateENS0_9PageStateE + *fill* 0x4016b82e 0x2 + .text._ZNK3nvs4Page9readEntryEjRNS_4ItemE + 0x4016b830 0x2a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4016b830 _ZNK3nvs4Page9readEntryEjRNS_4ItemE + *fill* 0x4016b85a 0x2 + .text._ZNK3nvs4Page12getSeqNumberERm + 0x4016b85c 0x21 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4016b85c _ZNK3nvs4Page12getSeqNumberERm + *fill* 0x4016b87d 0x3 + .text._ZN3nvs4Page12setSeqNumberEm + 0x4016b880 0x16 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4016b880 _ZN3nvs4Page12setSeqNumberEm + *fill* 0x4016b896 0x0 + *fill* 0x4016b896 0x0 + *fill* 0x4016b896 0x0 + *fill* 0x4016b896 0x2 + .text._ZNK3nvs4Page18getVarDataTailroomEv + 0x4016b898 0x2a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4016b898 _ZNK3nvs4Page18getVarDataTailroomEv + *fill* 0x4016b8c2 0x2 + .text._ZNK19CompressedEnumTableIN3nvs4Page10EntryStateELj2ELj126EE3getEjPS2_ + 0x4016b8c4 0x2a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4016b8c4 _ZNK19CompressedEnumTableIN3nvs4Page10EntryStateELj2ELj126EE3getEjPS2_ + *fill* 0x4016b8ee 0x0 + *fill* 0x4016b8ee 0x2 + .text._ZN19CompressedEnumTableIN3nvs4Page10EntryStateELj2ELj126EE3setEjS2_ + 0x4016b8f0 0x37 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4016b8f0 _ZN19CompressedEnumTableIN3nvs4Page10EntryStateELj2ELj126EE3setEjS2_ + *fill* 0x4016b927 0x0 + *fill* 0x4016b927 0x0 + *fill* 0x4016b927 0x0 + *fill* 0x4016b927 0x0 + *fill* 0x4016b927 0x0 + *fill* 0x4016b927 0x0 + *fill* 0x4016b927 0x0 + *fill* 0x4016b927 0x0 + *fill* 0x4016b927 0x0 + *fill* 0x4016b927 0x0 + *fill* 0x4016b927 0x0 + *fill* 0x4016b927 0x1 + .text._ZN14intrusive_listIN3nvs4PageEE9push_backEPS1_ + 0x4016b928 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x4016b928 _ZN14intrusive_listIN3nvs4PageEE9push_backEPS1_ + .text._ZN14intrusive_listIN3nvs4PageEE5eraseENS2_8iteratorE + 0x4016b948 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x4016b948 _ZN14intrusive_listIN3nvs4PageEE5eraseENS2_8iteratorE + *fill* 0x4016b96a 0x0 + *fill* 0x4016b96a 0x0 + *fill* 0x4016b96a 0x0 + *fill* 0x4016b96a 0x0 + *fill* 0x4016b96a 0x0 + *fill* 0x4016b96a 0x0 + *fill* 0x4016b96a 0x0 + *fill* 0x4016b96a 0x0 + *fill* 0x4016b96a 0x0 + *fill* 0x4016b96a 0x0 + *fill* 0x4016b96a 0x0 + *fill* 0x4016b96a 0x0 + *fill* 0x4016b96a 0x0 + *fill* 0x4016b96a 0x0 + *fill* 0x4016b96a 0x0 + *fill* 0x4016b96a 0x0 + *fill* 0x4016b96a 0x0 + *fill* 0x4016b96a 0x2 + .text.esp_netif_reset_ip_info$isra$0 + 0x4016b96c 0xd esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x4016b979 0x0 + *fill* 0x4016b979 0x0 + *fill* 0x4016b979 0x0 + *fill* 0x4016b979 0x0 + *fill* 0x4016b979 0x0 + *fill* 0x4016b979 0x0 + *fill* 0x4016b979 0x0 + *fill* 0x4016b979 0x0 + *fill* 0x4016b979 0x0 + *fill* 0x4016b979 0x3 + .text.esp_netif_get_io_driver + 0x4016b97c 0x7 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4016b97c esp_netif_get_io_driver + *fill* 0x4016b983 0x0 + *fill* 0x4016b983 0x0 + *fill* 0x4016b983 0x1 + .text.esp_netif_set_driver_config + 0x4016b984 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4016b984 esp_netif_set_driver_config + *fill* 0x4016b9b4 0x0 + *fill* 0x4016b9b4 0x0 + .text.esp_netif_free_rx_buffer + 0x4016b9b4 0xe esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4016b9b4 esp_netif_free_rx_buffer + *fill* 0x4016b9c2 0x2 + .text.esp_netif_transmit_wrap + 0x4016b9c4 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4016b9c4 esp_netif_transmit_wrap + .text.esp_netif_receive + 0x4016b9d8 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4016b9d8 esp_netif_receive + .text.esp_netif_dhcpc_get_status + 0x4016b9ec 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4016b9ec esp_netif_dhcpc_get_status + .text.esp_netif_get_hostname + 0x4016ba04 0x1e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4016ba04 esp_netif_get_hostname + *fill* 0x4016ba22 0x2 + .text.esp_netif_is_netif_up + 0x4016ba24 0x16 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4016ba24 esp_netif_is_netif_up + *fill* 0x4016ba3a 0x0 + *fill* 0x4016ba3a 0x0 + *fill* 0x4016ba3a 0x0 + *fill* 0x4016ba3a 0x2 + .text.esp_netif_is_valid_static_ip + 0x4016ba3c 0x17 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4016ba3c esp_netif_is_valid_static_ip + *fill* 0x4016ba53 0x1 + .text.esp_netif_get_flags + 0x4016ba54 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4016ba54 esp_netif_get_flags + .text.esp_netif_get_ifkey + 0x4016ba5c 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4016ba5c esp_netif_get_ifkey + .text.esp_netif_get_desc + 0x4016ba64 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4016ba64 esp_netif_get_desc + .text.esp_netif_get_event_id + 0x4016ba6c 0x1a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4016ba6c esp_netif_get_event_id + *fill* 0x4016ba86 0x0 + *fill* 0x4016ba86 0x0 + *fill* 0x4016ba86 0x0 + *fill* 0x4016ba86 0x0 + *fill* 0x4016ba86 0x0 + *fill* 0x4016ba86 0x0 + *fill* 0x4016ba86 0x0 + *fill* 0x4016ba86 0x0 + *fill* 0x4016ba86 0x0 + *fill* 0x4016ba86 0x0 + *fill* 0x4016ba86 0x0 + *fill* 0x4016ba86 0x0 + *fill* 0x4016ba86 0x0 + *fill* 0x4016ba86 0x0 + *fill* 0x4016ba86 0x0 + *fill* 0x4016ba86 0x0 + *fill* 0x4016ba86 0x0 + *fill* 0x4016ba86 0x0 + *fill* 0x4016ba86 0x0 + *fill* 0x4016ba86 0x2 + .text.rc4_skip + 0x4016ba88 0xa9 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + 0x4016ba88 rc4_skip + *fill* 0x4016bb31 0x0 + *fill* 0x4016bb31 0x0 + *fill* 0x4016bb31 0x0 + *fill* 0x4016bb31 0x0 + *fill* 0x4016bb31 0x0 + *fill* 0x4016bb31 0x0 + *fill* 0x4016bb31 0x0 + *fill* 0x4016bb31 0x0 + *fill* 0x4016bb31 0x0 + *fill* 0x4016bb31 0x0 + *fill* 0x4016bb31 0x0 + *fill* 0x4016bb31 0x3 + .text.WPA_PUT_BE64 + 0x4016bb34 0x31 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + *fill* 0x4016bb65 0x0 + *fill* 0x4016bb65 0x3 + .text.xor_block + 0x4016bb68 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + *fill* 0x4016bb91 0x0 + *fill* 0x4016bb91 0x0 + *fill* 0x4016bb91 0x0 + *fill* 0x4016bb91 0x0 + *fill* 0x4016bb91 0x0 + *fill* 0x4016bb91 0x0 + *fill* 0x4016bb91 0x0 + *fill* 0x4016bb91 0x3 + .text.hex2num 0x4016bb94 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + *fill* 0x4016bbc0 0x0 + *fill* 0x4016bbc0 0x0 + .text.inc_byte_array + 0x4016bbc0 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x4016bbc0 inc_byte_array + *fill* 0x4016bbda 0x2 + .text.buf_shift_right + 0x4016bbdc 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x4016bbdc buf_shift_right + *fill* 0x4016bc16 0x0 + *fill* 0x4016bc16 0x0 + *fill* 0x4016bc16 0x0 + *fill* 0x4016bc16 0x2 + .text.int_array_len + 0x4016bc18 0x1b esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x4016bc18 int_array_len + *fill* 0x4016bc33 0x0 + *fill* 0x4016bc33 0x0 + *fill* 0x4016bc33 0x1 + .text.os_reltime_initialized + 0x4016bc34 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x4016bc34 os_reltime_initialized + *fill* 0x4016bc4b 0x0 + *fill* 0x4016bc4b 0x1 + .text.xor_aes_block + 0x4016bc4c 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + *fill* 0x4016bc75 0x0 + *fill* 0x4016bc75 0x0 + *fill* 0x4016bc75 0x0 + *fill* 0x4016bc75 0x0 + *fill* 0x4016bc75 0x0 + *fill* 0x4016bc75 0x0 + *fill* 0x4016bc75 0x0 + *fill* 0x4016bc75 0x0 + *fill* 0x4016bc75 0x3 + .text.nan_start + 0x4016bc78 0x7 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x4016bc78 nan_start + *fill* 0x4016bc7f 0x1 + .text.nan_stop + 0x4016bc80 0x7 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x4016bc80 nan_stop + *fill* 0x4016bc87 0x1 + .text.nan_input + 0x4016bc88 0x7 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x4016bc88 nan_input + *fill* 0x4016bc8f 0x1 + .text.nan_sm_handle_event + 0x4016bc90 0x5 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x4016bc90 nan_sm_handle_event + *fill* 0x4016bc95 0x0 + *fill* 0x4016bc95 0x0 + *fill* 0x4016bc95 0x0 + *fill* 0x4016bc95 0x0 + *fill* 0x4016bc95 0x0 + *fill* 0x4016bc95 0x0 + *fill* 0x4016bc95 0x0 + *fill* 0x4016bc95 0x0 + *fill* 0x4016bc95 0x3 + .text.mbedtls_ct_bool + 0x4016bc98 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mbedtls_mpi_init + 0x4016bcac 0xd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4016bcac mbedtls_mpi_init + *fill* 0x4016bcb9 0x0 + *fill* 0x4016bcb9 0x0 + *fill* 0x4016bcb9 0x0 + *fill* 0x4016bcb9 0x0 + *fill* 0x4016bcb9 0x0 + *fill* 0x4016bcb9 0x3 + .text.mbedtls_mpi_get_bit + 0x4016bcbc 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4016bcbc mbedtls_mpi_get_bit + *fill* 0x4016bce2 0x0 + *fill* 0x4016bce2 0x2 + .text.mbedtls_mpi_lsb + 0x4016bce4 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4016bce4 mbedtls_mpi_lsb + *fill* 0x4016bd17 0x0 + *fill* 0x4016bd17 0x0 + *fill* 0x4016bd17 0x0 + *fill* 0x4016bd17 0x0 + *fill* 0x4016bd17 0x0 + *fill* 0x4016bd17 0x1 + .text.mbedtls_mpi_cmp_abs + 0x4016bd18 0x71 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4016bd18 mbedtls_mpi_cmp_abs + *fill* 0x4016bd89 0x3 + .text.mbedtls_mpi_cmp_mpi + 0x4016bd8c 0x9b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4016bd8c mbedtls_mpi_cmp_mpi + *fill* 0x4016be27 0x0 + *fill* 0x4016be27 0x0 + *fill* 0x4016be27 0x0 + *fill* 0x4016be27 0x0 + *fill* 0x4016be27 0x0 + *fill* 0x4016be27 0x0 + *fill* 0x4016be27 0x0 + *fill* 0x4016be27 0x0 + *fill* 0x4016be27 0x0 + *fill* 0x4016be27 0x1 + .text.mbedtls_mpi_mod_int + 0x4016be28 0x63 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4016be28 mbedtls_mpi_mod_int + *fill* 0x4016be8b 0x0 + *fill* 0x4016be8b 0x0 + *fill* 0x4016be8b 0x0 + *fill* 0x4016be8b 0x1 + .text.mbedtls_ct_bool + 0x4016be8c 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + *fill* 0x4016bea0 0x0 + .text.mbedtls_mpi_core_bitlen + 0x4016bea0 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4016bea0 mbedtls_mpi_core_bitlen + *fill* 0x4016bec2 0x0 + *fill* 0x4016bec2 0x0 + *fill* 0x4016bec2 0x0 + *fill* 0x4016bec2 0x2 + .text.mbedtls_mpi_core_cond_assign + 0x4016bec4 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4016bec4 mbedtls_mpi_core_cond_assign + *fill* 0x4016beef 0x1 + .text.mbedtls_mpi_core_cond_swap + 0x4016bef0 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4016bef0 mbedtls_mpi_core_cond_swap + *fill* 0x4016bf2e 0x0 + *fill* 0x4016bf2e 0x0 + *fill* 0x4016bf2e 0x0 + *fill* 0x4016bf2e 0x0 + *fill* 0x4016bf2e 0x0 + *fill* 0x4016bf2e 0x2 + .text.mbedtls_mpi_core_add + 0x4016bf30 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4016bf30 mbedtls_mpi_core_add + *fill* 0x4016bf67 0x1 + .text.mbedtls_mpi_core_sub + 0x4016bf68 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4016bf68 mbedtls_mpi_core_sub + .text.mbedtls_mpi_core_mla + 0x4016bfa0 0x195 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4016bfa0 mbedtls_mpi_core_mla + *fill* 0x4016c135 0x3 + .text.mbedtls_mpi_core_montmul_init + 0x4016c138 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4016c138 mbedtls_mpi_core_montmul_init + *fill* 0x4016c15f 0x0 + *fill* 0x4016c15f 0x0 + *fill* 0x4016c15f 0x0 + *fill* 0x4016c15f 0x1 + .text.mbedtls_mpi_core_sub_int + 0x4016c160 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + 0x4016c160 mbedtls_mpi_core_sub_int + *fill* 0x4016c189 0x0 + *fill* 0x4016c189 0x0 + *fill* 0x4016c189 0x0 + *fill* 0x4016c189 0x0 + *fill* 0x4016c189 0x0 + *fill* 0x4016c189 0x0 + *fill* 0x4016c189 0x0 + *fill* 0x4016c189 0x0 + *fill* 0x4016c189 0x0 + *fill* 0x4016c189 0x0 + *fill* 0x4016c189 0x0 + *fill* 0x4016c189 0x0 + *fill* 0x4016c189 0x0 + *fill* 0x4016c189 0x0 + *fill* 0x4016c189 0x0 + *fill* 0x4016c189 0x0 + *fill* 0x4016c189 0x0 + *fill* 0x4016c189 0x0 + *fill* 0x4016c189 0x0 + *fill* 0x4016c189 0x0 + *fill* 0x4016c189 0x0 + *fill* 0x4016c189 0x0 + *fill* 0x4016c189 0x0 + *fill* 0x4016c189 0x0 + *fill* 0x4016c189 0x0 + *fill* 0x4016c189 0x0 + *fill* 0x4016c189 0x0 + *fill* 0x4016c189 0x0 + *fill* 0x4016c189 0x0 + *fill* 0x4016c189 0x0 + *fill* 0x4016c189 0x3 + .text.mbedtls_ct_memcmp + 0x4016c18c 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x4016c18c mbedtls_ct_memcmp + .text.mbedtls_ct_memmove_left + 0x4016c1b8 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x4016c1b8 mbedtls_ct_memmove_left + .text.mbedtls_ct_memcpy_if + 0x4016c250 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x4016c250 mbedtls_ct_memcpy_if + *fill* 0x4016c281 0x3 + .text.mbedtls_ct_zeroize_if + 0x4016c284 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + 0x4016c284 mbedtls_ct_zeroize_if + *fill* 0x4016c2a2 0x0 + *fill* 0x4016c2a2 0x0 + *fill* 0x4016c2a2 0x0 + *fill* 0x4016c2a2 0x0 + *fill* 0x4016c2a2 0x0 + *fill* 0x4016c2a2 0x0 + *fill* 0x4016c2a2 0x0 + *fill* 0x4016c2a2 0x0 + *fill* 0x4016c2a2 0x0 + *fill* 0x4016c2a2 0x0 + *fill* 0x4016c2a2 0x0 + *fill* 0x4016c2a2 0x2 + .text.mbedtls_md_get_size + 0x4016c2a4 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x4016c2a4 mbedtls_md_get_size + *fill* 0x4016c2b2 0x0 + *fill* 0x4016c2b2 0x0 + *fill* 0x4016c2b2 0x0 + *fill* 0x4016c2b2 0x0 + *fill* 0x4016c2b2 0x0 + *fill* 0x4016c2b2 0x0 + *fill* 0x4016c2b2 0x0 + *fill* 0x4016c2b2 0x0 + *fill* 0x4016c2b2 0x0 + *fill* 0x4016c2b2 0x0 + *fill* 0x4016c2b2 0x0 + *fill* 0x4016c2b2 0x0 + *fill* 0x4016c2b2 0x0 + *fill* 0x4016c2b2 0x0 + *fill* 0x4016c2b2 0x2 + .text.esp_gf128mul_x_ble + 0x4016c2b4 0x10e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + *fill* 0x4016c3c2 0x0 + *fill* 0x4016c3c2 0x0 + *fill* 0x4016c3c2 0x0 + *fill* 0x4016c3c2 0x2 + .text.valid_key_length + 0x4016c3c4 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + 0x4016c3c4 valid_key_length + *fill* 0x4016c3e6 0x0 + *fill* 0x4016c3e6 0x0 + *fill* 0x4016c3e6 0x0 + *fill* 0x4016c3e6 0x0 + *fill* 0x4016c3e6 0x0 + *fill* 0x4016c3e6 0x0 + *fill* 0x4016c3e6 0x0 + *fill* 0x4016c3e6 0x0 + *fill* 0x4016c3e6 0x2 + .text.mpi_words + 0x4016c3e8 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + *fill* 0x4016c406 0x0 + *fill* 0x4016c406 0x0 + *fill* 0x4016c406 0x0 + *fill* 0x4016c406 0x0 + *fill* 0x4016c406 0x0 + *fill* 0x4016c406 0x0 + *fill* 0x4016c406 0x0 + *fill* 0x4016c406 0x0 + *fill* 0x4016c406 0x0 + *fill* 0x4016c406 0x0 + *fill* 0x4016c406 0x0 + *fill* 0x4016c406 0x0 + *fill* 0x4016c406 0x0 + *fill* 0x4016c406 0x0 + *fill* 0x4016c406 0x0 + *fill* 0x4016c406 0x0 + *fill* 0x4016c406 0x0 + *fill* 0x4016c406 0x0 + *fill* 0x4016c406 0x0 + *fill* 0x4016c406 0x0 + *fill* 0x4016c406 0x0 + *fill* 0x4016c406 0x0 + *fill* 0x4016c406 0x0 + *fill* 0x4016c406 0x0 + *fill* 0x4016c406 0x0 + *fill* 0x4016c406 0x0 + *fill* 0x4016c406 0x0 + *fill* 0x4016c406 0x0 + *fill* 0x4016c406 0x0 + *fill* 0x4016c406 0x0 + *fill* 0x4016c406 0x0 + *fill* 0x4016c406 0x0 + *fill* 0x4016c406 0x0 + *fill* 0x4016c406 0x0 + *fill* 0x4016c406 0x0 + *fill* 0x4016c406 0x0 + *fill* 0x4016c406 0x2 + .text.aria_sl 0x4016c408 0xe1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + *fill* 0x4016c4e9 0x0 + *fill* 0x4016c4e9 0x0 + *fill* 0x4016c4e9 0x0 + *fill* 0x4016c4e9 0x0 + *fill* 0x4016c4e9 0x0 + *fill* 0x4016c4e9 0x0 + *fill* 0x4016c4e9 0x0 + *fill* 0x4016c4e9 0x0 + *fill* 0x4016c4e9 0x3 + .text.mbedtls_asn1_get_len + 0x4016c4ec 0x67 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x4016c4ec mbedtls_asn1_get_len + *fill* 0x4016c553 0x0 + *fill* 0x4016c553 0x0 + *fill* 0x4016c553 0x0 + *fill* 0x4016c553 0x0 + *fill* 0x4016c553 0x0 + *fill* 0x4016c553 0x1 + .text.mbedtls_asn1_write_len + 0x4016c554 0x46 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x4016c554 mbedtls_asn1_write_len + *fill* 0x4016c59a 0x2 + .text.mbedtls_asn1_write_tag + 0x4016c59c 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x4016c59c mbedtls_asn1_write_tag + *fill* 0x4016c5ba 0x0 + *fill* 0x4016c5ba 0x0 + *fill* 0x4016c5ba 0x0 + *fill* 0x4016c5ba 0x0 + *fill* 0x4016c5ba 0x0 + *fill* 0x4016c5ba 0x2 + .text.mbedtls_ct_bool + 0x4016c5bc 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + *fill* 0x4016c5d0 0x0 + *fill* 0x4016c5d0 0x0 + *fill* 0x4016c5d0 0x0 + *fill* 0x4016c5d0 0x0 + *fill* 0x4016c5d0 0x0 + *fill* 0x4016c5d0 0x0 + *fill* 0x4016c5d0 0x0 + *fill* 0x4016c5d0 0x0 + *fill* 0x4016c5d0 0x0 + .text.mbedtls_rsa_get_len + 0x4016c5d0 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x4016c5d0 mbedtls_rsa_get_len + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x0 + *fill* 0x4016c5d7 0x1 + .text.mbedtls_ecp_get_type + 0x4016c5d8 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4016c5d8 mbedtls_ecp_get_type + *fill* 0x4016c5ee 0x0 + *fill* 0x4016c5ee 0x0 + *fill* 0x4016c5ee 0x0 + *fill* 0x4016c5ee 0x0 + *fill* 0x4016c5ee 0x0 + *fill* 0x4016c5ee 0x0 + *fill* 0x4016c5ee 0x0 + *fill* 0x4016c5ee 0x0 + *fill* 0x4016c5ee 0x0 + *fill* 0x4016c5ee 0x0 + *fill* 0x4016c5ee 0x0 + *fill* 0x4016c5ee 0x0 + *fill* 0x4016c5ee 0x0 + *fill* 0x4016c5ee 0x0 + *fill* 0x4016c5ee 0x0 + *fill* 0x4016c5ee 0x0 + *fill* 0x4016c5ee 0x0 + *fill* 0x4016c5ee 0x0 + *fill* 0x4016c5ee 0x0 + *fill* 0x4016c5ee 0x2 + .text.add64 0x4016c5f0 0x3b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + *fill* 0x4016c62b 0x1 + .text.add32 0x4016c62c 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + *fill* 0x4016c646 0x2 + .text.sub32 0x4016c648 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + *fill* 0x4016c666 0x2 + .text.mbedtls_ecp_fix_negative + 0x4016c668 0x47 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + *fill* 0x4016c6af 0x0 + *fill* 0x4016c6af 0x0 + *fill* 0x4016c6af 0x0 + *fill* 0x4016c6af 0x0 + *fill* 0x4016c6af 0x0 + *fill* 0x4016c6af 0x0 + *fill* 0x4016c6af 0x0 + *fill* 0x4016c6af 0x0 + *fill* 0x4016c6af 0x0 + *fill* 0x4016c6af 0x0 + *fill* 0x4016c6af 0x0 + *fill* 0x4016c6af 0x1 + .text.mbedtls_entropy_add_source + 0x4016c6b0 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x4016c6b0 mbedtls_entropy_add_source + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x0 + *fill* 0x4016c6d6 0x2 + .text.is_self_mac_greater + 0x4016c6d8 0x82 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x4016c6d8 is_self_mac_greater + *fill* 0x4016c75a 0x0 + *fill* 0x4016c75a 0x0 + *fill* 0x4016c75a 0x0 + *fill* 0x4016c75a 0x0 + *fill* 0x4016c75a 0x0 + *fill* 0x4016c75a 0x0 + *fill* 0x4016c75a 0x0 + *fill* 0x4016c75a 0x0 + *fill* 0x4016c75a 0x0 + *fill* 0x4016c75a 0x0 + *fill* 0x4016c75a 0x0 + *fill* 0x4016c75a 0x0 + *fill* 0x4016c75a 0x0 + *fill* 0x4016c75a 0x0 + *fill* 0x4016c75a 0x0 + *fill* 0x4016c75a 0x2 + .text.mesh_is_better_parent + 0x4016c75c 0x32 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + 0x4016c75c mesh_is_better_parent + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x0 + *fill* 0x4016c78e 0x2 + .text.is_zero_addr + 0x4016c790 0x30 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_get_vnd_ext_assoc_len + 0x4016c7c0 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x4016c7c0 esp_mesh_get_vnd_ext_assoc_len + *fill* 0x4016c7c7 0x0 + *fill* 0x4016c7c7 0x0 + *fill* 0x4016c7c7 0x0 + *fill* 0x4016c7c7 0x0 + *fill* 0x4016c7c7 0x0 + *fill* 0x4016c7c7 0x0 + *fill* 0x4016c7c7 0x0 + *fill* 0x4016c7c7 0x1 + .text.mesh_coding_ie_key + 0x4016c7c8 0x3d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + 0x4016c7c8 mesh_coding_ie_key + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x0 + *fill* 0x4016c805 0x3 + .text.ieee80211_is_robust_mgmt_frm + 0x4016c808 0x4a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x4016c808 ieee80211_is_robust_mgmt_frm + *fill* 0x4016c852 0x2 + .text.ieee80211_crypto_attach + 0x4016c854 0x5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + 0x4016c854 ieee80211_crypto_attach + *fill* 0x4016c859 0x0 + *fill* 0x4016c859 0x0 + *fill* 0x4016c859 0x0 + *fill* 0x4016c859 0x0 + *fill* 0x4016c859 0x0 + *fill* 0x4016c859 0x3 + .text.ieee80211_get_cipher_mic_len + 0x4016c85c 0x2a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + 0x4016c85c ieee80211_get_cipher_mic_len + *fill* 0x4016c886 0x0 + *fill* 0x4016c886 0x2 + .text.ieee80211_is_action_category_robust + 0x4016c888 0x31 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + *fill* 0x4016c8b9 0x0 + *fill* 0x4016c8b9 0x0 + *fill* 0x4016c8b9 0x0 + *fill* 0x4016c8b9 0x0 + *fill* 0x4016c8b9 0x0 + *fill* 0x4016c8b9 0x0 + *fill* 0x4016c8b9 0x0 + *fill* 0x4016c8b9 0x0 + *fill* 0x4016c8b9 0x0 + *fill* 0x4016c8b9 0x0 + *fill* 0x4016c8b9 0x0 + *fill* 0x4016c8b9 0x0 + *fill* 0x4016c8b9 0x0 + *fill* 0x4016c8b9 0x0 + *fill* 0x4016c8b9 0x0 + *fill* 0x4016c8b9 0x0 + *fill* 0x4016c8b9 0x0 + *fill* 0x4016c8b9 0x0 + *fill* 0x4016c8b9 0x0 + *fill* 0x4016c8b9 0x0 + *fill* 0x4016c8b9 0x3 + .text.addba_get_rap_from_private + 0x4016c8bc 0x38 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + *fill* 0x4016c8f4 0x0 + *fill* 0x4016c8f4 0x0 + *fill* 0x4016c8f4 0x0 + *fill* 0x4016c8f4 0x0 + *fill* 0x4016c8f4 0x0 + *fill* 0x4016c8f4 0x0 + *fill* 0x4016c8f4 0x0 + *fill* 0x4016c8f4 0x0 + *fill* 0x4016c8f4 0x0 + *fill* 0x4016c8f4 0x0 + *fill* 0x4016c8f4 0x0 + *fill* 0x4016c8f4 0x0 + *fill* 0x4016c8f4 0x0 + .text.addba_timeout_process + 0x4016c8f4 0x21 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x4016c8f4 addba_timeout_process + *fill* 0x4016c915 0x3 + .text.ampdu_dispatch_movement + 0x4016c918 0x3e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x4016c918 ampdu_dispatch_movement + *fill* 0x4016c956 0x0 + *fill* 0x4016c956 0x0 + *fill* 0x4016c956 0x0 + *fill* 0x4016c956 0x0 + *fill* 0x4016c956 0x0 + *fill* 0x4016c956 0x0 + *fill* 0x4016c956 0x0 + *fill* 0x4016c956 0x0 + *fill* 0x4016c956 0x0 + *fill* 0x4016c956 0x0 + *fill* 0x4016c956 0x0 + *fill* 0x4016c956 0x0 + *fill* 0x4016c956 0x0 + *fill* 0x4016c956 0x0 + *fill* 0x4016c956 0x0 + *fill* 0x4016c956 0x0 + *fill* 0x4016c956 0x0 + *fill* 0x4016c956 0x0 + *fill* 0x4016c956 0x0 + *fill* 0x4016c956 0x2 + .text.ieee80211_is_support_rate + 0x4016c958 0x48 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x4016c958 ieee80211_is_support_rate + .text.ieee80211_is_lr_only + 0x4016c9a0 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x4016c9a0 ieee80211_is_lr_only + *fill* 0x4016c9b8 0x0 + *fill* 0x4016c9b8 0x0 + *fill* 0x4016c9b8 0x0 + *fill* 0x4016c9b8 0x0 + *fill* 0x4016c9b8 0x0 + *fill* 0x4016c9b8 0x0 + *fill* 0x4016c9b8 0x0 + *fill* 0x4016c9b8 0x0 + .text.ieee80211_setup_rateset + 0x4016c9b8 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x4016c9b8 ieee80211_setup_rateset + *fill* 0x4016c9bf 0x0 + *fill* 0x4016c9bf 0x0 + *fill* 0x4016c9bf 0x0 + *fill* 0x4016c9bf 0x0 + *fill* 0x4016c9bf 0x1 + .text.adc2_wifi_acquire + 0x4016c9c0 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x4016c9c0 adc2_wifi_acquire + *fill* 0x4016c9c7 0x1 + .text.adc2_wifi_release + 0x4016c9c8 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x4016c9c8 adc2_wifi_release + *fill* 0x4016c9cf 0x1 + .text.wifi_station_get_reconnect_policy + 0x4016c9d0 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x4016c9d0 wifi_station_get_reconnect_policy + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x0 + *fill* 0x4016c9d7 0x1 + .text.ieee80211_is_bufferable_mmpdu + 0x4016c9d8 0x58 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x4016c9d8 ieee80211_is_bufferable_mmpdu + *fill* 0x4016ca30 0x0 + .text.ieee80211_gettid + 0x4016ca30 0x36 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + 0x4016ca30 ieee80211_gettid + *fill* 0x4016ca66 0x2 + .text.ieee80211_set_shortslottime + 0x4016ca68 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + 0x4016ca68 ieee80211_set_shortslottime + *fill* 0x4016ca83 0x0 + *fill* 0x4016ca83 0x0 + *fill* 0x4016ca83 0x0 + *fill* 0x4016ca83 0x0 + *fill* 0x4016ca83 0x0 + *fill* 0x4016ca83 0x0 + *fill* 0x4016ca83 0x0 + *fill* 0x4016ca83 0x0 + *fill* 0x4016ca83 0x0 + *fill* 0x4016ca83 0x0 + *fill* 0x4016ca83 0x0 + *fill* 0x4016ca83 0x0 + *fill* 0x4016ca83 0x0 + *fill* 0x4016ca83 0x0 + *fill* 0x4016ca83 0x0 + *fill* 0x4016ca83 0x0 + *fill* 0x4016ca83 0x0 + *fill* 0x4016ca83 0x0 + *fill* 0x4016ca83 0x0 + *fill* 0x4016ca83 0x0 + *fill* 0x4016ca83 0x0 + *fill* 0x4016ca83 0x0 + *fill* 0x4016ca83 0x0 + *fill* 0x4016ca83 0x0 + *fill* 0x4016ca83 0x0 + *fill* 0x4016ca83 0x0 + *fill* 0x4016ca83 0x1 + .text.scan_check_hidden + 0x4016ca84 0x26 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x4016ca84 scan_check_hidden + *fill* 0x4016caaa 0x0 + *fill* 0x4016caaa 0x0 + *fill* 0x4016caaa 0x0 + *fill* 0x4016caaa 0x0 + *fill* 0x4016caaa 0x0 + *fill* 0x4016caaa 0x0 + *fill* 0x4016caaa 0x0 + *fill* 0x4016caaa 0x0 + *fill* 0x4016caaa 0x0 + *fill* 0x4016caaa 0x0 + *fill* 0x4016caaa 0x2 + .text.scan_fill_wps_scan_ie + 0x4016caac 0x31 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x4016caac scan_fill_wps_scan_ie + *fill* 0x4016cadd 0x0 + *fill* 0x4016cadd 0x0 + *fill* 0x4016cadd 0x3 + .text.ieee80211_is_action_category_robust + 0x4016cae0 0x31 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x0 + *fill* 0x4016cb11 0x3 + .text.cnx_rc_update_age + 0x4016cb14 0x1b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x4016cb14 cnx_rc_update_age + *fill* 0x4016cb2f 0x0 + *fill* 0x4016cb2f 0x0 + *fill* 0x4016cb2f 0x0 + *fill* 0x4016cb2f 0x0 + *fill* 0x4016cb2f 0x0 + *fill* 0x4016cb2f 0x0 + *fill* 0x4016cb2f 0x0 + *fill* 0x4016cb2f 0x0 + *fill* 0x4016cb2f 0x0 + *fill* 0x4016cb2f 0x0 + *fill* 0x4016cb2f 0x0 + *fill* 0x4016cb2f 0x0 + *fill* 0x4016cb2f 0x0 + *fill* 0x4016cb2f 0x0 + *fill* 0x4016cb2f 0x0 + *fill* 0x4016cb2f 0x1 + .text.send_inval + 0x4016cb30 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + *fill* 0x4016cb37 0x1 + .text.recv_inval + 0x4016cb38 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + *fill* 0x4016cb3f 0x0 + *fill* 0x4016cb3f 0x0 + *fill* 0x4016cb3f 0x0 + *fill* 0x4016cb3f 0x0 + *fill* 0x4016cb3f 0x0 + *fill* 0x4016cb3f 0x0 + *fill* 0x4016cb3f 0x0 + *fill* 0x4016cb3f 0x0 + *fill* 0x4016cb3f 0x0 + *fill* 0x4016cb3f 0x0 + *fill* 0x4016cb3f 0x0 + *fill* 0x4016cb3f 0x0 + *fill* 0x4016cb3f 0x0 + *fill* 0x4016cb3f 0x0 + *fill* 0x4016cb3f 0x1 + .text.wep_decap + 0x4016cb40 0x29 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + 0x4016cb40 wep_decap + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x0 + *fill* 0x4016cb69 0x3 + .text.pm_noise_check_process + 0x4016cb6c 0x5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x4016cb6c pm_noise_check_process + *fill* 0x4016cb71 0x0 + *fill* 0x4016cb71 0x0 + *fill* 0x4016cb71 0x0 + *fill* 0x4016cb71 0x0 + *fill* 0x4016cb71 0x0 + *fill* 0x4016cb71 0x0 + *fill* 0x4016cb71 0x0 + *fill* 0x4016cb71 0x0 + *fill* 0x4016cb71 0x0 + *fill* 0x4016cb71 0x0 + *fill* 0x4016cb71 0x0 + *fill* 0x4016cb71 0x0 + *fill* 0x4016cb71 0x0 + *fill* 0x4016cb71 0x0 + *fill* 0x4016cb71 0x0 + *fill* 0x4016cb71 0x0 + *fill* 0x4016cb71 0x0 + *fill* 0x4016cb71 0x0 + *fill* 0x4016cb71 0x0 + *fill* 0x4016cb71 0x0 + *fill* 0x4016cb71 0x0 + *fill* 0x4016cb71 0x0 + *fill* 0x4016cb71 0x0 + *fill* 0x4016cb71 0x0 + *fill* 0x4016cb71 0x0 + *fill* 0x4016cb71 0x0 + *fill* 0x4016cb71 0x0 + *fill* 0x4016cb71 0x0 + *fill* 0x4016cb71 0x0 + *fill* 0x4016cb71 0x0 + *fill* 0x4016cb71 0x0 + *fill* 0x4016cb71 0x0 + *fill* 0x4016cb71 0x0 + *fill* 0x4016cb71 0x0 + *fill* 0x4016cb71 0x0 + *fill* 0x4016cb71 0x0 + *fill* 0x4016cb71 0x0 + *fill* 0x4016cb71 0x0 + *fill* 0x4016cb71 0x3 + .text.pm_force_scan_unlock + 0x4016cb74 0x5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x4016cb74 pm_force_scan_unlock + *fill* 0x4016cb79 0x0 + *fill* 0x4016cb79 0x0 + *fill* 0x4016cb79 0x0 + *fill* 0x4016cb79 0x0 + *fill* 0x4016cb79 0x3 + .text.getle32 0x4016cb7c 0x23 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x4016cb7c getle32 + *fill* 0x4016cb9f 0x1 + .text.putle32 0x4016cba0 0x20 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x4016cba0 putle32 + *fill* 0x4016cbc0 0x0 + *fill* 0x4016cbc0 0x0 + *fill* 0x4016cbc0 0x0 + *fill* 0x4016cbc0 0x0 + *fill* 0x4016cbc0 0x0 + *fill* 0x4016cbc0 0x0 + *fill* 0x4016cbc0 0x0 + *fill* 0x4016cbc0 0x0 + *fill* 0x4016cbc0 0x0 + *fill* 0x4016cbc0 0x0 + .text.ppSetInterface + 0x4016cbc0 0x5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x4016cbc0 ppSetInterface + *fill* 0x4016cbc5 0x3 + .text.pp_gettid + 0x4016cbc8 0x2e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x4016cbc8 pp_gettid + *fill* 0x4016cbf6 0x0 + *fill* 0x4016cbf6 0x0 + *fill* 0x4016cbf6 0x0 + *fill* 0x4016cbf6 0x0 + *fill* 0x4016cbf6 0x0 + *fill* 0x4016cbf6 0x0 + *fill* 0x4016cbf6 0x0 + *fill* 0x4016cbf6 0x0 + *fill* 0x4016cbf6 0x0 + *fill* 0x4016cbf6 0x0 + *fill* 0x4016cbf6 0x0 + *fill* 0x4016cbf6 0x0 + *fill* 0x4016cbf6 0x0 + *fill* 0x4016cbf6 0x0 + *fill* 0x4016cbf6 0x0 + *fill* 0x4016cbf6 0x0 + *fill* 0x4016cbf6 0x0 + *fill* 0x4016cbf6 0x0 + *fill* 0x4016cbf6 0x2 + .text.dbg_lmac_init + 0x4016cbf8 0x5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + 0x4016cbf8 dbg_lmac_init + *fill* 0x4016cbfd 0x0 + *fill* 0x4016cbfd 0x0 + *fill* 0x4016cbfd 0x0 + *fill* 0x4016cbfd 0x0 + *fill* 0x4016cbfd 0x0 + *fill* 0x4016cbfd 0x0 + *fill* 0x4016cbfd 0x0 + *fill* 0x4016cbfd 0x0 + *fill* 0x4016cbfd 0x0 + *fill* 0x4016cbfd 0x0 + *fill* 0x4016cbfd 0x0 + *fill* 0x4016cbfd 0x0 + *fill* 0x4016cbfd 0x0 + *fill* 0x4016cbfd 0x3 + .text.RC_SetBasicRate + 0x4016cc00 0x7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + 0x4016cc00 RC_SetBasicRate + *fill* 0x4016cc07 0x0 + *fill* 0x4016cc07 0x0 + *fill* 0x4016cc07 0x0 + *fill* 0x4016cc07 0x1 + .text.rc11NRate2SchedIdx + 0x4016cc08 0x4c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rcLoRaRate2SchedIdx + 0x4016cc54 0x1c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x4016cc54 rcLoRaRate2SchedIdx + .text.rcBuildIndex + 0x4016cc70 0x1d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + *fill* 0x4016cc8d 0x3 + .text.trc_calc_duration + 0x4016cc90 0x11 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x4016cc90 trc_calc_duration + *fill* 0x4016cca1 0x0 + *fill* 0x4016cca1 0x3 + .text.trcAmpduSetState + 0x4016cca4 0x26 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x4016cca4 trcAmpduSetState + *fill* 0x4016ccca 0x2 + .text.rcSetTxAmpduLimit + 0x4016cccc 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x4016cccc rcSetTxAmpduLimit + *fill* 0x4016cd07 0x0 + *fill* 0x4016cd07 0x1 + .text.rcGetDefaultHigestRateIdx + 0x4016cd08 0x18 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x4016cd08 rcGetDefaultHigestRateIdx + *fill* 0x4016cd20 0x0 + *fill* 0x4016cd20 0x0 + *fill* 0x4016cd20 0x0 + *fill* 0x4016cd20 0x0 + *fill* 0x4016cd20 0x0 + .text.rcUpdateAckSnr + 0x4016cd20 0x4f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x4016cd20 rcUpdateAckSnr + *fill* 0x4016cd6f 0x0 + *fill* 0x4016cd6f 0x0 + *fill* 0x4016cd6f 0x0 + *fill* 0x4016cd6f 0x0 + *fill* 0x4016cd6f 0x0 + *fill* 0x4016cd6f 0x0 + *fill* 0x4016cd6f 0x0 + *fill* 0x4016cd6f 0x0 + *fill* 0x4016cd6f 0x0 + *fill* 0x4016cd6f 0x0 + *fill* 0x4016cd6f 0x0 + *fill* 0x4016cd6f 0x0 + *fill* 0x4016cd6f 0x0 + *fill* 0x4016cd6f 0x0 + *fill* 0x4016cd6f 0x0 + *fill* 0x4016cd6f 0x1 + .text.wDev_SetAuthed + 0x4016cd70 0x5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x4016cd70 wDev_SetAuthed + *fill* 0x4016cd75 0x0 + *fill* 0x4016cd75 0x0 + *fill* 0x4016cd75 0x0 + *fill* 0x4016cd75 0x0 + *fill* 0x4016cd75 0x0 + *fill* 0x4016cd75 0x0 + *fill* 0x4016cd75 0x0 + *fill* 0x4016cd75 0x0 + *fill* 0x4016cd75 0x0 + *fill* 0x4016cd75 0x0 + *fill* 0x4016cd75 0x0 + *fill* 0x4016cd75 0x0 + *fill* 0x4016cd75 0x0 + *fill* 0x4016cd75 0x3 + .text.wDev_RxSecError + 0x4016cd78 0x2c /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x4016cd78 wDev_RxSecError + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + *fill* 0x4016cda4 0x0 + .text.mpu_hal_set_region_access + 0x4016cda4 0x33 esp-idf/hal/libhal.a(mpu_hal.c.obj) + 0x4016cda4 mpu_hal_set_region_access + *fill* 0x4016cdd7 0x0 + *fill* 0x4016cdd7 0x0 + *fill* 0x4016cdd7 0x0 + *fill* 0x4016cdd7 0x0 + *fill* 0x4016cdd7 0x0 + *fill* 0x4016cdd7 0x1 + .text.mpi_hal_calc_hardware_words + 0x4016cdd8 0xc esp-idf/hal/libhal.a(mpi_hal.c.obj) + 0x4016cdd8 mpi_hal_calc_hardware_words + *fill* 0x4016cde4 0x0 + *fill* 0x4016cde4 0x0 + *fill* 0x4016cde4 0x0 + *fill* 0x4016cde4 0x0 + *fill* 0x4016cde4 0x0 + *fill* 0x4016cde4 0x0 + *fill* 0x4016cde4 0x0 + *fill* 0x4016cde4 0x0 + *fill* 0x4016cde4 0x0 + *fill* 0x4016cde4 0x0 + *fill* 0x4016cde4 0x0 + *fill* 0x4016cde4 0x0 + *fill* 0x4016cde4 0x0 + *fill* 0x4016cde4 0x0 + *fill* 0x4016cde4 0x0 + *fill* 0x4016cde4 0x0 + *fill* 0x4016cde4 0x0 + *fill* 0x4016cde4 0x0 + *fill* 0x4016cde4 0x0 + .text.esp_phy_modem_init + 0x4016cde4 0x5 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x4016cde4 esp_phy_modem_init + *fill* 0x4016cde9 0x3 + .text.esp_phy_modem_deinit + 0x4016cdec 0x5 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x4016cdec esp_phy_modem_deinit + *fill* 0x4016cdf1 0x0 + *fill* 0x4016cdf1 0x0 + *fill* 0x4016cdf1 0x0 + *fill* 0x4016cdf1 0x0 + *fill* 0x4016cdf1 0x3 + .text.esp_phy_update_country_info + 0x4016cdf4 0x7 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + 0x4016cdf4 esp_phy_update_country_info + *fill* 0x4016cdfb 0x0 + *fill* 0x4016cdfb 0x0 + *fill* 0x4016cdfb 0x0 + *fill* 0x4016cdfb 0x0 + *fill* 0x4016cdfb 0x0 + *fill* 0x4016cdfb 0x0 + *fill* 0x4016cdfb 0x0 + *fill* 0x4016cdfb 0x0 + *fill* 0x4016cdfb 0x0 + *fill* 0x4016cdfb 0x0 + *fill* 0x4016cdfb 0x0 + *fill* 0x4016cdfb 0x0 + *fill* 0x4016cdfb 0x0 + *fill* 0x4016cdfb 0x0 + *fill* 0x4016cdfb 0x0 + *fill* 0x4016cdfb 0x0 + *fill* 0x4016cdfb 0x0 + *fill* 0x4016cdfb 0x0 + *fill* 0x4016cdfb 0x0 + *fill* 0x4016cdfb 0x0 + *fill* 0x4016cdfb 0x0 + *fill* 0x4016cdfb 0x0 + *fill* 0x4016cdfb 0x0 + *fill* 0x4016cdfb 0x0 + *fill* 0x4016cdfb 0x0 + *fill* 0x4016cdfb 0x0 + *fill* 0x4016cdfb 0x1 + .text.lwip_htons + 0x4016cdfc 0x11 esp-idf/lwip/liblwip.a(def.c.obj) + 0x4016cdfc lwip_htons + *fill* 0x4016ce0d 0x3 + .text.dns_init + 0x4016ce10 0x5 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x4016ce10 dns_init + *fill* 0x4016ce15 0x0 + *fill* 0x4016ce15 0x0 + *fill* 0x4016ce15 0x0 + *fill* 0x4016ce15 0x3 + .text.mem_init + 0x4016ce18 0x5 esp-idf/lwip/liblwip.a(mem.c.obj) + 0x4016ce18 mem_init + *fill* 0x4016ce1d 0x3 + .text.mem_trim + 0x4016ce20 0x5 esp-idf/lwip/liblwip.a(mem.c.obj) + 0x4016ce20 mem_trim + *fill* 0x4016ce25 0x0 + *fill* 0x4016ce25 0x0 + *fill* 0x4016ce25 0x3 + .text.memp_init + 0x4016ce28 0x5 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x4016ce28 memp_init + *fill* 0x4016ce2d 0x0 + *fill* 0x4016ce2d 0x3 + .text.netif_null_output_ip6 + 0x4016ce30 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x4016ce38 0x0 + *fill* 0x4016ce38 0x0 + *fill* 0x4016ce38 0x0 + *fill* 0x4016ce38 0x0 + .text.netif_null_output_ip4 + 0x4016ce38 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x4016ce40 0x0 + *fill* 0x4016ce40 0x0 + *fill* 0x4016ce40 0x0 + *fill* 0x4016ce40 0x0 + *fill* 0x4016ce40 0x0 + *fill* 0x4016ce40 0x0 + *fill* 0x4016ce40 0x0 + *fill* 0x4016ce40 0x0 + *fill* 0x4016ce40 0x0 + *fill* 0x4016ce40 0x0 + *fill* 0x4016ce40 0x0 + *fill* 0x4016ce40 0x0 + *fill* 0x4016ce40 0x0 + *fill* 0x4016ce40 0x0 + *fill* 0x4016ce40 0x0 + *fill* 0x4016ce40 0x0 + .text.pbuf_skip_const + 0x4016ce40 0x1f esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x4016ce5f 0x0 + *fill* 0x4016ce5f 0x0 + *fill* 0x4016ce5f 0x0 + *fill* 0x4016ce5f 0x1 + .text.pbuf_alloced_custom + 0x4016ce60 0x3b esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4016ce60 pbuf_alloced_custom + *fill* 0x4016ce9b 0x0 + *fill* 0x4016ce9b 0x0 + *fill* 0x4016ce9b 0x0 + *fill* 0x4016ce9b 0x0 + *fill* 0x4016ce9b 0x0 + *fill* 0x4016ce9b 0x1 + .text.pbuf_clen + 0x4016ce9c 0x16 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4016ce9c pbuf_clen + *fill* 0x4016ceb2 0x0 + *fill* 0x4016ceb2 0x0 + *fill* 0x4016ceb2 0x0 + *fill* 0x4016ceb2 0x0 + *fill* 0x4016ceb2 0x0 + *fill* 0x4016ceb2 0x0 + *fill* 0x4016ceb2 0x0 + *fill* 0x4016ceb2 0x0 + *fill* 0x4016ceb2 0x0 + *fill* 0x4016ceb2 0x0 + *fill* 0x4016ceb2 0x0 + *fill* 0x4016ceb2 0x0 + *fill* 0x4016ceb2 0x0 + *fill* 0x4016ceb2 0x0 + *fill* 0x4016ceb2 0x0 + *fill* 0x4016ceb2 0x0 + *fill* 0x4016ceb2 0x0 + *fill* 0x4016ceb2 0x0 + *fill* 0x4016ceb2 0x0 + *fill* 0x4016ceb2 0x0 + *fill* 0x4016ceb2 0x0 + *fill* 0x4016ceb2 0x0 + *fill* 0x4016ceb2 0x2 + .text.tcp_arg 0x4016ceb4 0xa esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4016ceb4 tcp_arg + *fill* 0x4016cebe 0x0 + *fill* 0x4016cebe 0x0 + *fill* 0x4016cebe 0x0 + *fill* 0x4016cebe 0x2 + .text.tcp_accept + 0x4016cec0 0xf esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4016cec0 tcp_accept + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x0 + *fill* 0x4016cecf 0x1 + .text.udp_recv + 0x4016ced0 0xe esp-idf/lwip/liblwip.a(udp.c.obj) + 0x4016ced0 udp_recv + *fill* 0x4016cede 0x0 + *fill* 0x4016cede 0x0 + *fill* 0x4016cede 0x2 + .text.dhcp_set_state + 0x4016cee0 0x18 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x4016cef8 0x0 + *fill* 0x4016cef8 0x0 + *fill* 0x4016cef8 0x0 + *fill* 0x4016cef8 0x0 + *fill* 0x4016cef8 0x0 + *fill* 0x4016cef8 0x0 + *fill* 0x4016cef8 0x0 + *fill* 0x4016cef8 0x0 + *fill* 0x4016cef8 0x0 + *fill* 0x4016cef8 0x0 + *fill* 0x4016cef8 0x0 + *fill* 0x4016cef8 0x0 + *fill* 0x4016cef8 0x0 + *fill* 0x4016cef8 0x0 + *fill* 0x4016cef8 0x0 + *fill* 0x4016cef8 0x0 + *fill* 0x4016cef8 0x0 + .text.dhcp_supplied_address + 0x4016cef8 0x32 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4016cef8 dhcp_supplied_address + *fill* 0x4016cf2a 0x0 + *fill* 0x4016cf2a 0x0 + *fill* 0x4016cf2a 0x0 + *fill* 0x4016cf2a 0x0 + *fill* 0x4016cf2a 0x0 + *fill* 0x4016cf2a 0x0 + *fill* 0x4016cf2a 0x0 + *fill* 0x4016cf2a 0x0 + *fill* 0x4016cf2a 0x0 + *fill* 0x4016cf2a 0x0 + *fill* 0x4016cf2a 0x0 + *fill* 0x4016cf2a 0x0 + *fill* 0x4016cf2a 0x0 + *fill* 0x4016cf2a 0x0 + *fill* 0x4016cf2a 0x0 + *fill* 0x4016cf2a 0x0 + *fill* 0x4016cf2a 0x0 + *fill* 0x4016cf2a 0x0 + *fill* 0x4016cf2a 0x0 + *fill* 0x4016cf2a 0x0 + *fill* 0x4016cf2a 0x0 + *fill* 0x4016cf2a 0x0 + *fill* 0x4016cf2a 0x0 + *fill* 0x4016cf2a 0x0 + *fill* 0x4016cf2a 0x0 + *fill* 0x4016cf2a 0x2 + .text.igmp_lookfor_group + 0x4016cf2c 0x16 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x4016cf2c igmp_lookfor_group + *fill* 0x4016cf42 0x0 + *fill* 0x4016cf42 0x0 + *fill* 0x4016cf42 0x0 + *fill* 0x4016cf42 0x0 + *fill* 0x4016cf42 0x0 + *fill* 0x4016cf42 0x0 + *fill* 0x4016cf42 0x0 + *fill* 0x4016cf42 0x0 + *fill* 0x4016cf42 0x0 + *fill* 0x4016cf42 0x0 + *fill* 0x4016cf42 0x0 + *fill* 0x4016cf42 0x0 + *fill* 0x4016cf42 0x0 + *fill* 0x4016cf42 0x2 + .text.ip4_addr_isbroadcast_u32 + 0x4016cf44 0x3c esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + 0x4016cf44 ip4_addr_isbroadcast_u32 + *fill* 0x4016cf80 0x0 + *fill* 0x4016cf80 0x0 + *fill* 0x4016cf80 0x0 + *fill* 0x4016cf80 0x0 + *fill* 0x4016cf80 0x0 + *fill* 0x4016cf80 0x0 + *fill* 0x4016cf80 0x0 + *fill* 0x4016cf80 0x0 + *fill* 0x4016cf80 0x0 + *fill* 0x4016cf80 0x0 + *fill* 0x4016cf80 0x0 + *fill* 0x4016cf80 0x0 + *fill* 0x4016cf80 0x0 + *fill* 0x4016cf80 0x0 + *fill* 0x4016cf80 0x0 + .text.mld6_lookfor_group + 0x4016cf80 0x35 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x4016cf80 mld6_lookfor_group + *fill* 0x4016cfb5 0x0 + *fill* 0x4016cfb5 0x0 + *fill* 0x4016cfb5 0x0 + *fill* 0x4016cfb5 0x0 + *fill* 0x4016cfb5 0x0 + *fill* 0x4016cfb5 0x0 + *fill* 0x4016cfb5 0x0 + *fill* 0x4016cfb5 0x0 + *fill* 0x4016cfb5 0x0 + *fill* 0x4016cfb5 0x0 + *fill* 0x4016cfb5 0x0 + *fill* 0x4016cfb5 0x0 + *fill* 0x4016cfb5 0x0 + *fill* 0x4016cfb5 0x0 + *fill* 0x4016cfb5 0x0 + *fill* 0x4016cfb5 0x0 + *fill* 0x4016cfb5 0x3 + .text.nd6_restart_netif + 0x4016cfb8 0xa esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x4016cfb8 nd6_restart_netif + *fill* 0x4016cfc2 0x0 + *fill* 0x4016cfc2 0x0 + *fill* 0x4016cfc2 0x0 + *fill* 0x4016cfc2 0x0 + *fill* 0x4016cfc2 0x0 + *fill* 0x4016cfc2 0x0 + *fill* 0x4016cfc2 0x2 + .text.dhcp_append_extra_opts + 0x4016cfc4 0x5d esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + 0x4016cfc4 dhcp_append_extra_opts + *fill* 0x4016d021 0x0 + *fill* 0x4016d021 0x0 + *fill* 0x4016d021 0x0 + *fill* 0x4016d021 0x0 + *fill* 0x4016d021 0x0 + *fill* 0x4016d021 0x0 + *fill* 0x4016d021 0x0 + *fill* 0x4016d021 0x0 + *fill* 0x4016d021 0x0 + *fill* 0x4016d021 0x0 + *fill* 0x4016d021 0x0 + *fill* 0x4016d021 0x0 + *fill* 0x4016d021 0x0 + *fill* 0x4016d021 0x0 + *fill* 0x4016d021 0x0 + *fill* 0x4016d021 0x0 + *fill* 0x4016d021 0x0 + *fill* 0x4016d021 0x0 + *fill* 0x4016d021 0x0 + *fill* 0x4016d021 0x0 + *fill* 0x4016d021 0x0 + *fill* 0x4016d021 0x0 + *fill* 0x4016d021 0x3 + .text.add_offer_options + 0x4016d024 0x178 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x4016d19c 0x0 + *fill* 0x4016d19c 0x0 + *fill* 0x4016d19c 0x0 + *fill* 0x4016d19c 0x0 + .text.dhcps_set_option_info + 0x4016d19c 0x7c esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x4016d19c dhcps_set_option_info + .text.node_remove_from_list + 0x4016d218 0x29 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x4016d218 node_remove_from_list + *fill* 0x4016d241 0x0 + *fill* 0x4016d241 0x0 + *fill* 0x4016d241 0x3 + .text.dhcps_set_new_lease_cb + 0x4016d244 0x12 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x4016d244 dhcps_set_new_lease_cb + *fill* 0x4016d256 0x0 + *fill* 0x4016d256 0x0 + *fill* 0x4016d256 0x0 + *fill* 0x4016d256 0x0 + *fill* 0x4016d256 0x0 + *fill* 0x4016d256 0x0 + *fill* 0x4016d256 0x0 + *fill* 0x4016d256 0x0 + *fill* 0x4016d256 0x0 + *fill* 0x4016d256 0x0 + *fill* 0x4016d256 0x0 + *fill* 0x4016d256 0x0 + *fill* 0x4016d256 0x0 + *fill* 0x4016d256 0x0 + *fill* 0x4016d256 0x0 + *fill* 0x4016d256 0x0 + *fill* 0x4016d256 0x0 + *fill* 0x4016d256 0x0 + *fill* 0x4016d256 0x0 + *fill* 0x4016d256 0x0 + *fill* 0x4016d256 0x0 + *fill* 0x4016d256 0x0 + *fill* 0x4016d256 0x0 + *fill* 0x4016d256 0x0 + *fill* 0x4016d256 0x0 + *fill* 0x4016d256 0x0 + *fill* 0x4016d256 0x0 + *fill* 0x4016d256 0x0 + *fill* 0x4016d256 0x0 + *fill* 0x4016d256 0x0 + *fill* 0x4016d256 0x0 + *fill* 0x4016d256 0x0 + *fill* 0x4016d256 0x0 + *fill* 0x4016d256 0x0 + *fill* 0x4016d256 0x0 + *fill* 0x4016d256 0x0 + *fill* 0x4016d256 0x0 + *fill* 0x4016d256 0x0 + *fill* 0x4016d256 0x2 + .text.lwip_standard_chksum + 0x4016d258 0x66 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x4016d258 lwip_standard_chksum + *fill* 0x4016d2be 0x0 + *fill* 0x4016d2be 0x0 + *fill* 0x4016d2be 0x0 + *fill* 0x4016d2be 0x0 + *fill* 0x4016d2be 0x0 + *fill* 0x4016d2be 0x0 + *fill* 0x4016d2be 0x0 + *fill* 0x4016d2be 0x0 + *fill* 0x4016d2be 0x0 + *fill* 0x4016d2be 0x0 + *fill* 0x4016d2be 0x0 + *fill* 0x4016d2be 0x0 + *fill* 0x4016d2be 0x0 + *fill* 0x4016d2be 0x0 + *fill* 0x4016d2be 0x0 + *fill* 0x4016d2be 0x2 + .text.wpa_ap_get_peer_spp_msg + 0x4016d2c0 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4016d2c0 wpa_ap_get_peer_spp_msg + *fill* 0x4016d2da 0x0 + *fill* 0x4016d2da 0x0 + *fill* 0x4016d2da 0x0 + *fill* 0x4016d2da 0x0 + *fill* 0x4016d2da 0x0 + *fill* 0x4016d2da 0x0 + *fill* 0x4016d2da 0x0 + *fill* 0x4016d2da 0x0 + *fill* 0x4016d2da 0x0 + *fill* 0x4016d2da 0x0 + *fill* 0x4016d2da 0x0 + *fill* 0x4016d2da 0x0 + *fill* 0x4016d2da 0x0 + *fill* 0x4016d2da 0x0 + *fill* 0x4016d2da 0x0 + *fill* 0x4016d2da 0x0 + *fill* 0x4016d2da 0x0 + *fill* 0x4016d2da 0x0 + *fill* 0x4016d2da 0x0 + *fill* 0x4016d2da 0x0 + *fill* 0x4016d2da 0x2 + .text.supplicant_sta_conn_handler + 0x4016d2dc 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x4016d2dc supplicant_sta_conn_handler + *fill* 0x4016d2e1 0x3 + .text.supplicant_sta_disconn_handler + 0x4016d2e4 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x4016d2e4 supplicant_sta_disconn_handler + *fill* 0x4016d2e9 0x3 + .text.esp_set_scan_ie + 0x4016d2ec 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + 0x4016d2ec esp_set_scan_ie + *fill* 0x4016d2f1 0x0 + *fill* 0x4016d2f1 0x0 + *fill* 0x4016d2f1 0x0 + *fill* 0x4016d2f1 0x0 + *fill* 0x4016d2f1 0x0 + *fill* 0x4016d2f1 0x0 + *fill* 0x4016d2f1 0x0 + *fill* 0x4016d2f1 0x0 + *fill* 0x4016d2f1 0x0 + *fill* 0x4016d2f1 0x0 + *fill* 0x4016d2f1 0x0 + *fill* 0x4016d2f1 0x0 + *fill* 0x4016d2f1 0x0 + *fill* 0x4016d2f1 0x0 + *fill* 0x4016d2f1 0x0 + *fill* 0x4016d2f1 0x0 + *fill* 0x4016d2f1 0x0 + *fill* 0x4016d2f1 0x0 + *fill* 0x4016d2f1 0x0 + *fill* 0x4016d2f1 0x0 + *fill* 0x4016d2f1 0x3 + .text.crypto_ec_get_prime + 0x4016d2f4 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4016d2f4 crypto_ec_get_prime + *fill* 0x4016d2fb 0x1 + .text.crypto_ec_get_order + 0x4016d2fc 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4016d2fc crypto_ec_get_order + .text.crypto_ec_get_b + 0x4016d304 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4016d304 crypto_ec_get_b + *fill* 0x4016d30c 0x0 + *fill* 0x4016d30c 0x0 + *fill* 0x4016d30c 0x0 + *fill* 0x4016d30c 0x0 + *fill* 0x4016d30c 0x0 + *fill* 0x4016d30c 0x0 + *fill* 0x4016d30c 0x0 + *fill* 0x4016d30c 0x0 + *fill* 0x4016d30c 0x0 + .text.crypto_ec_get_mbedtls_to_nist_group_id + 0x4016d30c 0x33 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4016d30c crypto_ec_get_mbedtls_to_nist_group_id + *fill* 0x4016d33f 0x0 + *fill* 0x4016d33f 0x1 + .text.crypto_mbedtls_get_grp_id + 0x4016d340 0x1f esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + 0x4016d340 crypto_mbedtls_get_grp_id + *fill* 0x4016d35f 0x0 + *fill* 0x4016d35f 0x0 + *fill* 0x4016d35f 0x0 + *fill* 0x4016d35f 0x0 + *fill* 0x4016d35f 0x0 + *fill* 0x4016d35f 0x0 + *fill* 0x4016d35f 0x0 + *fill* 0x4016d35f 0x0 + *fill* 0x4016d35f 0x0 + *fill* 0x4016d35f 0x0 + *fill* 0x4016d35f 0x0 + *fill* 0x4016d35f 0x0 + *fill* 0x4016d35f 0x0 + *fill* 0x4016d35f 0x0 + *fill* 0x4016d35f 0x0 + *fill* 0x4016d35f 0x0 + *fill* 0x4016d35f 0x0 + *fill* 0x4016d35f 0x0 + *fill* 0x4016d35f 0x1 + .text.wpa_auth_pmksa_free_cb + 0x4016d360 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x4016d365 0x0 + *fill* 0x4016d365 0x0 + *fill* 0x4016d365 0x0 + *fill* 0x4016d365 0x0 + *fill* 0x4016d365 0x0 + *fill* 0x4016d365 0x0 + *fill* 0x4016d365 0x0 + *fill* 0x4016d365 0x0 + *fill* 0x4016d365 0x0 + *fill* 0x4016d365 0x0 + *fill* 0x4016d365 0x0 + *fill* 0x4016d365 0x0 + *fill* 0x4016d365 0x0 + *fill* 0x4016d365 0x0 + *fill* 0x4016d365 0x0 + *fill* 0x4016d365 0x0 + *fill* 0x4016d365 0x0 + *fill* 0x4016d365 0x0 + *fill* 0x4016d365 0x0 + *fill* 0x4016d365 0x0 + *fill* 0x4016d365 0x0 + *fill* 0x4016d365 0x0 + *fill* 0x4016d365 0x0 + *fill* 0x4016d365 0x0 + *fill* 0x4016d365 0x0 + *fill* 0x4016d365 0x0 + *fill* 0x4016d365 0x0 + *fill* 0x4016d365 0x0 + *fill* 0x4016d365 0x0 + *fill* 0x4016d365 0x0 + *fill* 0x4016d365 0x0 + *fill* 0x4016d365 0x0 + *fill* 0x4016d365 0x0 + *fill* 0x4016d365 0x0 + *fill* 0x4016d365 0x0 + *fill* 0x4016d365 0x0 + *fill* 0x4016d365 0x0 + *fill* 0x4016d365 0x3 + .text.wpa_auth_uses_mfp + 0x4016d368 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x4016d368 wpa_auth_uses_mfp + *fill* 0x4016d37a 0x0 + *fill* 0x4016d37a 0x0 + *fill* 0x4016d37a 0x0 + *fill* 0x4016d37a 0x0 + *fill* 0x4016d37a 0x0 + *fill* 0x4016d37a 0x0 + *fill* 0x4016d37a 0x0 + *fill* 0x4016d37a 0x0 + *fill* 0x4016d37a 0x2 + .text.ap_sta_hash_add + 0x4016d37c 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + 0x4016d37c ap_sta_hash_add + *fill* 0x4016d390 0x0 + *fill* 0x4016d390 0x0 + *fill* 0x4016d390 0x0 + .text.sae_status_success$isra$0 + 0x4016d390 0x46 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + *fill* 0x4016d3d6 0x0 + *fill* 0x4016d3d6 0x0 + *fill* 0x4016d3d6 0x0 + *fill* 0x4016d3d6 0x0 + *fill* 0x4016d3d6 0x2 + .text.wpa_res_to_status_code + 0x4016d3d8 0x5a esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + 0x4016d3d8 wpa_res_to_status_code + *fill* 0x4016d432 0x0 + *fill* 0x4016d432 0x0 + *fill* 0x4016d432 0x2 + .text.const_time_is_zero + 0x4016d434 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .text.const_time_select_bin + 0x4016d444 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x4016d46b 0x0 + *fill* 0x4016d46b 0x0 + *fill* 0x4016d46b 0x0 + *fill* 0x4016d46b 0x0 + *fill* 0x4016d46b 0x0 + *fill* 0x4016d46b 0x0 + *fill* 0x4016d46b 0x0 + *fill* 0x4016d46b 0x0 + *fill* 0x4016d46b 0x0 + *fill* 0x4016d46b 0x0 + *fill* 0x4016d46b 0x0 + *fill* 0x4016d46b 0x0 + *fill* 0x4016d46b 0x0 + *fill* 0x4016d46b 0x1 + .text.sae_ecc_prime_len_2_hash_len + 0x4016d46c 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x4016d46c sae_ecc_prime_len_2_hash_len + *fill* 0x4016d47f 0x1 + .text.sae_ffc_prime_len_2_hash_len + 0x4016d480 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x4016d480 sae_ffc_prime_len_2_hash_len + *fill* 0x4016d49a 0x0 + *fill* 0x4016d49a 0x0 + *fill* 0x4016d49a 0x0 + *fill* 0x4016d49a 0x0 + *fill* 0x4016d49a 0x0 + *fill* 0x4016d49a 0x0 + *fill* 0x4016d49a 0x0 + *fill* 0x4016d49a 0x0 + *fill* 0x4016d49a 0x0 + *fill* 0x4016d49a 0x0 + *fill* 0x4016d49a 0x0 + *fill* 0x4016d49a 0x0 + *fill* 0x4016d49a 0x0 + *fill* 0x4016d49a 0x0 + *fill* 0x4016d49a 0x0 + *fill* 0x4016d49a 0x0 + *fill* 0x4016d49a 0x2 + .text.wpa_mic_len + 0x4016d49c 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x4016d49c wpa_mic_len + *fill* 0x4016d4ba 0x2 + .text.wpa_cipher_valid_mgmt_group + 0x4016d4bc 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x4016d4bc wpa_cipher_valid_mgmt_group + *fill* 0x4016d4de 0x0 + *fill* 0x4016d4de 0x0 + *fill* 0x4016d4de 0x0 + *fill* 0x4016d4de 0x0 + *fill* 0x4016d4de 0x0 + *fill* 0x4016d4de 0x0 + *fill* 0x4016d4de 0x0 + *fill* 0x4016d4de 0x2 + .text.wpa_cipher_key_len + 0x4016d4e0 0x45 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x4016d4e0 wpa_cipher_key_len + *fill* 0x4016d525 0x0 + *fill* 0x4016d525 0x3 + .text.wpa_cipher_to_alg + 0x4016d528 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x4016d528 wpa_cipher_to_alg + *fill* 0x4016d552 0x2 + .text.wpa_cipher_valid_pairwise + 0x4016d554 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x4016d554 wpa_cipher_valid_pairwise + *fill* 0x4016d582 0x0 + *fill* 0x4016d582 0x2 + .text.rsn_cipher_put_suites + 0x4016d584 0x5b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x4016d584 rsn_cipher_put_suites + *fill* 0x4016d5df 0x1 + .text.wpa_cipher_put_suites + 0x4016d5e0 0x5a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x4016d5e0 wpa_cipher_put_suites + *fill* 0x4016d63a 0x0 + *fill* 0x4016d63a 0x0 + *fill* 0x4016d63a 0x0 + *fill* 0x4016d63a 0x0 + *fill* 0x4016d63a 0x0 + *fill* 0x4016d63a 0x2 + .text.cipher_type_map_supp_to_public + 0x4016d63c 0x62 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4016d63c cipher_type_map_supp_to_public + *fill* 0x4016d69e 0x2 + .text.cipher_type_map_public_to_supp + 0x4016d6a0 0x55 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4016d6a0 cipher_type_map_public_to_supp + *fill* 0x4016d6f5 0x0 + *fill* 0x4016d6f5 0x0 + *fill* 0x4016d6f5 0x0 + *fill* 0x4016d6f5 0x0 + *fill* 0x4016d6f5 0x3 + .text.wpa_supplicant_gtk_tx_bit_workaround + 0x4016d6f8 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4016d6f8 wpa_supplicant_gtk_tx_bit_workaround + *fill* 0x4016d70e 0x0 + *fill* 0x4016d70e 0x0 + *fill* 0x4016d70e 0x0 + *fill* 0x4016d70e 0x0 + *fill* 0x4016d70e 0x0 + *fill* 0x4016d70e 0x0 + *fill* 0x4016d70e 0x0 + *fill* 0x4016d70e 0x0 + *fill* 0x4016d70e 0x0 + *fill* 0x4016d70e 0x0 + *fill* 0x4016d70e 0x0 + *fill* 0x4016d70e 0x0 + *fill* 0x4016d70e 0x0 + *fill* 0x4016d70e 0x0 + *fill* 0x4016d70e 0x0 + *fill* 0x4016d70e 0x0 + *fill* 0x4016d70e 0x0 + *fill* 0x4016d70e 0x0 + *fill* 0x4016d70e 0x0 + *fill* 0x4016d70e 0x0 + *fill* 0x4016d70e 0x0 + *fill* 0x4016d70e 0x0 + *fill* 0x4016d70e 0x0 + *fill* 0x4016d70e 0x0 + *fill* 0x4016d70e 0x0 + *fill* 0x4016d70e 0x0 + *fill* 0x4016d70e 0x0 + *fill* 0x4016d70e 0x2 + .text.wpabuf_put + 0x4016d710 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x4016d710 wpabuf_put + *fill* 0x4016d71f 0x0 + *fill* 0x4016d71f 0x0 + *fill* 0x4016d71f 0x0 + *fill* 0x4016d71f 0x0 + *fill* 0x4016d71f 0x0 + *fill* 0x4016d71f 0x1 + .text.sae_pk_get_be19 + 0x4016d720 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x4016d720 sae_pk_get_be19 + *fill* 0x4016d73d 0x3 + .text.sae_pk_buf_shift_left_19 + 0x4016d740 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + 0x4016d740 sae_pk_buf_shift_left_19 + *fill* 0x4016d782 0x0 + *fill* 0x4016d782 0x0 + *fill* 0x4016d782 0x0 + *fill* 0x4016d782 0x0 + *fill* 0x4016d782 0x0 + *fill* 0x4016d782 0x0 + *fill* 0x4016d782 0x2 + .text.wpa_sm_mlme_setprotection + 0x4016d784 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x4016d784 wpa_sm_mlme_setprotection + *fill* 0x4016d78b 0x1 + .text.wpa_sm_disassociate + 0x4016d78c 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x4016d78c wpa_sm_disassociate + *fill* 0x4016d791 0x0 + *fill* 0x4016d791 0x0 + *fill* 0x4016d791 0x0 + *fill* 0x4016d791 0x0 + *fill* 0x4016d791 0x0 + *fill* 0x4016d791 0x0 + *fill* 0x4016d791 0x0 + *fill* 0x4016d791 0x0 + *fill* 0x4016d791 0x0 + *fill* 0x4016d791 0x0 + *fill* 0x4016d791 0x0 + *fill* 0x4016d791 0x3 + .text.dbl 0x4016d794 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + *fill* 0x4016d7cd 0x0 + *fill* 0x4016d7cd 0x0 + *fill* 0x4016d7cd 0x0 + *fill* 0x4016d7cd 0x0 + *fill* 0x4016d7cd 0x0 + *fill* 0x4016d7cd 0x0 + *fill* 0x4016d7cd 0x0 + *fill* 0x4016d7cd 0x0 + *fill* 0x4016d7cd 0x0 + *fill* 0x4016d7cd 0x0 + *fill* 0x4016d7cd 0x3 + .text.pmksa_cache_get_current + 0x4016d7d0 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x4016d7d0 pmksa_cache_get_current + *fill* 0x4016d7da 0x2 + .text.pmksa_cache_clear_current + 0x4016d7dc 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x4016d7dc pmksa_cache_clear_current + *fill* 0x4016d7e8 0x0 + *fill* 0x4016d7e8 0x0 + *fill* 0x4016d7e8 0x0 + *fill* 0x4016d7e8 0x0 + *fill* 0x4016d7e8 0x0 + *fill* 0x4016d7e8 0x0 + *fill* 0x4016d7e8 0x0 + *fill* 0x4016d7e8 0x0 + *fill* 0x4016d7e8 0x0 + .text.mbedtls_pk_init + 0x4016d7e8 0xb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x4016d7e8 mbedtls_pk_init + *fill* 0x4016d7f3 0x0 + *fill* 0x4016d7f3 0x0 + *fill* 0x4016d7f3 0x1 + .text.mbedtls_pk_setup + 0x4016d7f4 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x4016d7f4 mbedtls_pk_setup + *fill* 0x4016d822 0x2 + .text.mbedtls_pk_get_type + 0x4016d824 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x4016d824 mbedtls_pk_get_type + *fill* 0x4016d836 0x0 + *fill* 0x4016d836 0x2 + .text.rsa_can_do + 0x4016d838 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x4016d851 0x3 + .text.eckey_can_do + 0x4016d854 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x4016d863 0x1 + .text.eckey_get_bitlen + 0x4016d864 0x9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x4016d86d 0x0 + *fill* 0x4016d86d 0x3 + .text.eckeydh_can_do + 0x4016d870 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x4016d87f 0x1 + .text.ecdsa_can_do + 0x4016d880 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x4016d88f 0x0 + *fill* 0x4016d88f 0x0 + *fill* 0x4016d88f 0x0 + *fill* 0x4016d88f 0x0 + *fill* 0x4016d88f 0x0 + *fill* 0x4016d88f 0x0 + *fill* 0x4016d88f 0x0 + *fill* 0x4016d88f 0x0 + *fill* 0x4016d88f 0x0 + *fill* 0x4016d88f 0x0 + *fill* 0x4016d88f 0x0 + *fill* 0x4016d88f 0x0 + *fill* 0x4016d88f 0x0 + *fill* 0x4016d88f 0x0 + *fill* 0x4016d88f 0x0 + *fill* 0x4016d88f 0x1 + .text.mbedtls_ct_uchar_in_range_if + 0x4016d890 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + *fill* 0x4016d8ad 0x0 + *fill* 0x4016d8ad 0x0 + *fill* 0x4016d8ad 0x0 + *fill* 0x4016d8ad 0x0 + *fill* 0x4016d8ad 0x0 + *fill* 0x4016d8ad 0x0 + *fill* 0x4016d8ad 0x0 + *fill* 0x4016d8ad 0x0 + *fill* 0x4016d8ad 0x0 + *fill* 0x4016d8ad 0x0 + *fill* 0x4016d8ad 0x0 + *fill* 0x4016d8ad 0x0 + *fill* 0x4016d8ad 0x0 + *fill* 0x4016d8ad 0x0 + *fill* 0x4016d8ad 0x0 + *fill* 0x4016d8ad 0x0 + *fill* 0x4016d8ad 0x0 + *fill* 0x4016d8ad 0x0 + *fill* 0x4016d8ad 0x0 + *fill* 0x4016d8ad 0x3 + .text._ZNSt9type_infoD2Ev + 0x4016d8b0 0x5 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(tinfo.o) + 0x4016d8b0 _ZNSt9type_infoD1Ev + 0x4016d8b0 _ZNSt9type_infoD2Ev + *fill* 0x4016d8b5 0x3 + .text._ZNKSt9type_info14__is_pointer_pEv + 0x4016d8b8 0x7 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(tinfo.o) + 0x4016d8b8 _ZNKSt9type_info14__is_pointer_pEv + 0x4016d8b8 _ZNKSt9type_info15__is_function_pEv + *fill* 0x4016d8bf 0x0 + *fill* 0x4016d8bf 0x1 + .text._ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PPv + 0x4016d8c0 0x2f /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) + 0x4016d8c0 _ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PPv + *fill* 0x4016d8ef 0x1 + .text._ZNK10__cxxabiv117__class_type_info20__do_find_public_srcEiPKvPKS0_S2_ + 0x4016d8f0 0xf /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) + 0x4016d8f0 _ZNK10__cxxabiv117__class_type_info20__do_find_public_srcEiPKvPKS0_S2_ + *fill* 0x4016d8ff 0x0 + *fill* 0x4016d8ff 0x0 + *fill* 0x4016d8ff 0x0 + *fill* 0x4016d8ff 0x0 + *fill* 0x4016d8ff 0x0 + *fill* 0x4016d8ff 0x1 + .text._ZNSt9exceptionD2Ev + 0x4016d900 0x5 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + 0x4016d900 _ZNSt9exceptionD2Ev + 0x4016d900 _ZNSt9exceptionD1Ev + *fill* 0x4016d905 0x3 + .text 0x4016d908 0x59 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divsf3.o) + 0x4016d908 __divsf3 + *fill* 0x4016d961 0x0 + *fill* 0x4016d961 0x0 + *fill* 0x4016d961 0x0 + *fill* 0x4016d961 0x0 + *fill* 0x4016d961 0x0 + *fill* 0x4016d961 0x0 + *fill* 0x4016d961 0x0 + *fill* 0x4016d961 0x0 + *fill* 0x4016d961 0x0 + *fill* 0x4016d961 0x0 + *fill* 0x4016d961 0x0 + *fill* 0x4016d961 0x3 + .text.spur_cal$part$8 + 0x4016d964 0x4a /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + *fill* 0x4016d9ae 0x0 + *fill* 0x4016d9ae 0x0 + *fill* 0x4016d9ae 0x0 + *fill* 0x4016d9ae 0x0 + *fill* 0x4016d9ae 0x0 + *fill* 0x4016d9ae 0x0 + *fill* 0x4016d9ae 0x0 + *fill* 0x4016d9ae 0x0 + *fill* 0x4016d9ae 0x0 + *fill* 0x4016d9ae 0x0 + *fill* 0x4016d9ae 0x0 + *fill* 0x4016d9ae 0x0 + *fill* 0x4016d9ae 0x0 + *fill* 0x4016d9ae 0x0 + *fill* 0x4016d9ae 0x0 + *fill* 0x4016d9ae 0x0 + *fill* 0x4016d9ae 0x2 + .text.phy_byte_to_word + 0x4016d9b0 0x23 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x4016d9b0 phy_byte_to_word + *fill* 0x4016d9d3 0x0 + *fill* 0x4016d9d3 0x0 + *fill* 0x4016d9d3 0x1 + .text.phy_rfcal_data_check + 0x4016d9d4 0xc7 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x4016d9d4 phy_rfcal_data_check + *fill* 0x4016da9b 0x0 + *fill* 0x4016da9b 0x0 + *fill* 0x4016da9b 0x0 + *fill* 0x4016da9b 0x0 + *fill* 0x4016da9b 0x0 + *fill* 0x4016da9b 0x0 + *fill* 0x4016da9b 0x0 + *fill* 0x4016da9b 0x0 + *fill* 0x4016da9b 0x0 + *fill* 0x4016da9b 0x0 + *fill* 0x4016da9b 0x0 + *fill* 0x4016da9b 0x0 + *fill* 0x4016da9b 0x0 + *fill* 0x4016da9b 0x0 + *fill* 0x4016da9b 0x0 + *fill* 0x4016da9b 0x0 + *fill* 0x4016da9b 0x0 + *fill* 0x4016da9b 0x0 + *fill* 0x4016da9b 0x0 + *fill* 0x4016da9b 0x0 + *fill* 0x4016da9b 0x0 + *fill* 0x4016da9b 0x0 + *fill* 0x4016da9b 0x0 + *fill* 0x4016da9b 0x0 + *fill* 0x4016da9b 0x0 + *fill* 0x4016da9b 0x0 + *fill* 0x4016da9b 0x0 + *fill* 0x4016da9b 0x0 + *fill* 0x4016da9b 0x0 + *fill* 0x4016da9b 0x0 + *fill* 0x4016da9b 0x0 + *fill* 0x4016da9b 0x1 + .text.ram_rfpll_reset + 0x4016da9c 0x5 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x4016da9c ram_rfpll_reset + *fill* 0x4016daa1 0x0 + *fill* 0x4016daa1 0x0 + *fill* 0x4016daa1 0x0 + *fill* 0x4016daa1 0x0 + *fill* 0x4016daa1 0x0 + *fill* 0x4016daa1 0x0 + *fill* 0x4016daa1 0x0 + *fill* 0x4016daa1 0x0 + *fill* 0x4016daa1 0x0 + *fill* 0x4016daa1 0x0 + *fill* 0x4016daa1 0x0 + *fill* 0x4016daa1 0x0 + *fill* 0x4016daa1 0x0 + *fill* 0x4016daa1 0x0 + *fill* 0x4016daa1 0x0 + *fill* 0x4016daa1 0x0 + *fill* 0x4016daa1 0x0 + *fill* 0x4016daa1 0x0 + *fill* 0x4016daa1 0x0 + *fill* 0x4016daa1 0x0 + *fill* 0x4016daa1 0x0 + *fill* 0x4016daa1 0x0 + *fill* 0x4016daa1 0x3 + .text 0x4016daa4 0x37 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fwalk.o) + 0x4016daa4 _fwalk_sglue + *fill* 0x4016dadb 0x0 + *fill* 0x4016dadb 0x0 + *fill* 0x4016dadb 0x0 + *fill* 0x4016dadb 0x0 + *fill* 0x4016dadb 0x0 + *fill* 0x4016dadb 0x0 + *fill* 0x4016dadb 0x0 + *fill* 0x4016dadb 0x0 + *fill* 0x4016dadb 0x0 + *fill* 0x4016dadb 0x0 + *fill* 0x4016dadb 0x0 + *fill* 0x4016dadb 0x0 + *fill* 0x4016dadb 0x1 + .text 0x4016dadc 0x80 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-flags.o) + 0x4016dadc __sflags + *fill* 0x4016db5c 0x0 + *fill* 0x4016db5c 0x0 + *fill* 0x4016db5c 0x0 + *fill* 0x4016db5c 0x0 + *fill* 0x4016db5c 0x0 + *(EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifi0iram EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifi0iram.*) + *(.wifiextrairam .wifiextrairam.*) + .wifiextrairam.6 + 0x4016db5c 0x5e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x72 (size before relaxing) + 0x4016db60 ieee80211_alloc_tx_buf + *fill* 0x4016dbba 0x2 + .wifiextrairam.19 + 0x4016dbbc 0x6a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x72 (size before relaxing) + 0x4016dbc4 ieee80211_align_eb + *fill* 0x4016dc26 0x2 + .wifiextrairam.5 + 0x4016dc28 0x81 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x99 (size before relaxing) + 0x4016dc40 ieee80211_post_hmac_tx + *fill* 0x4016dca9 0x3 + .wifiextrairam.7 + 0x4016dcac 0x184 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x1c0 (size before relaxing) + 0x4016dcc4 ieee80211_output_do + .wifiextrairam.10 + 0x4016de30 0x19 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x1d (size before relaxing) + 0x4016de30 esp_wifi_internal_tx + *fill* 0x4016de49 0x3 + .wifiextrairam.60 + 0x4016de4c 0xed /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x109 (size before relaxing) + 0x4016de50 ieee80211_set_tx_desc + *fill* 0x4016df39 0x3 + .wifiextrairam.39 + 0x4016df3c 0x1a8 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x1c0 (size before relaxing) + 0x4016df60 sta_rx_eapol + .wifiextrairam.5 + 0x4016e0e4 0x1da /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x1f6 (size before relaxing) + 0x4016e0f4 esf_buf_alloc_dynamic + *fill* 0x4016e2be 0x2 + .wifiextrairam.5 + 0x4016e2c0 0x17e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x18e (size before relaxing) + 0x4016e2e4 lmacSetTxFrame + *fill* 0x4016e43e 0x2 + .wifiextrairam.20 + 0x4016e440 0xb7 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0xce (size before relaxing) + 0x4016e454 lmacDiscardFrameExchangeSequence + *fill* 0x4016e4f7 0x1 + .wifiextrairam.15 + 0x4016e4f8 0xfa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x116 (size before relaxing) + 0x4016e508 lmacProcessTxSuccess + *fill* 0x4016e5f2 0x2 + .wifiextrairam.35 + 0x4016e5f4 0x158 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x1ac (size before relaxing) + 0x4016e60c lmacProcessTxComplete + .wifiextrairam.46 + 0x4016e74c 0x1c0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x204 (size before relaxing) + 0x4016e768 pm_tx_data_process + .wifiextrairam.52 + 0x4016e90c 0x10 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x17 (size before relaxing) + 0x4016e90c pm_on_data_tx + *fill* 0x4016e91c 0x0 + .wifiextrairam.17 + 0x4016e91c 0x63 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x6f (size before relaxing) + 0x4016e92c ppRecycleRxPkt + *fill* 0x4016e97f 0x1 + .wifiextrairam.19 + 0x4016e980 0x5b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x5f (size before relaxing) + 0x4016e980 pp_coex_tx_release + *fill* 0x4016e9db 0x1 + .wifiextrairam.43 + 0x4016e9dc 0x2a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x2e (size before relaxing) + 0x4016e9dc ppTxqUpdateBitmap + *fill* 0x4016ea06 0x2 + .wifiextrairam.47 + 0x4016ea08 0x5b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x73 (size before relaxing) + 0x4016ea10 ppEnqueueTxDone + *fill* 0x4016ea63 0x1 + .wifiextrairam.49 + 0x4016ea64 0x25 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x29 (size before relaxing) + 0x4016ea64 ppDequeueTxDone_Locked + *fill* 0x4016ea89 0x3 + .wifiextrairam.21 + 0x4016ea8c 0x162 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x18e (size before relaxing) + 0x4016eaa4 ppProcTxDone + *fill* 0x4016ebee 0x2 + .wifiextrairam.59 + 0x4016ebf0 0x8f /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x93 (size before relaxing) + 0x4016ebf8 ppGetTxframe + *fill* 0x4016ec7f 0x1 + .wifiextrairam.63 + 0x4016ec80 0xfa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x106 (size before relaxing) + 0x4016ec88 ppMapWaitTxq + *fill* 0x4016ed7a 0x2 + .wifiextrairam.64 + 0x4016ed7c 0x59 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x65 (size before relaxing) + 0x4016ed80 ppProcessWaitingQueue + *fill* 0x4016edd5 0x3 + .wifiextrairam.61 + 0x4016edd8 0x8e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x9a (size before relaxing) + 0x4016edd8 ppSelectNextQueue + *fill* 0x4016ee66 0x2 + .wifiextrairam.38 + 0x4016ee68 0x93 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0xab (size before relaxing) + 0x4016ee74 ppAssembleAMPDU + *fill* 0x4016eefb 0x1 + .wifiextrairam.40 + 0x4016eefc 0xb3 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0xc3 (size before relaxing) + 0x4016ef04 ppAMPDU2Normal + *fill* 0x4016efaf 0x1 + .wifiextrairam.71 + 0x4016efb0 0x51 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x5d (size before relaxing) + 0x4016efb4 ppDirectRecycleAmpdu + *fill* 0x4016f001 0x3 + .wifiextrairam.72 + 0x4016f004 0x74 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x88 (size before relaxing) + 0x4016f008 ppRecycleAmpdu + .wifiextrairam.73 + 0x4016f078 0x78 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x8c (size before relaxing) + 0x4016f078 ppRegressAmpdu + .wifiextrairam.13 + 0x4016f0f0 0x93 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x9f (size before relaxing) + 0x4016f100 rcGetRate + *fill* 0x4016f183 0x1 + .wifiextrairam.19 + 0x4016f184 0x8d /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0xa1 (size before relaxing) + 0x4016f188 trc_onPPTxDone + *fill* 0x4016f211 0x3 + .wifiextrairam.6 + 0x4016f214 0x28 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x2c (size before relaxing) + 0x4016f218 hal_mac_txq_disable + .wifiextrairam.16 + 0x4016f23c 0x73 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + 0x7b (size before relaxing) + 0x4016f248 hal_get_tsf_time + *fill* 0x4016f2af 0x0 + *fill* 0x4016f2af 0x0 + *fill* 0x4016f2af 0x0 + *fill* 0x4016f2af 0x0 + *fill* 0x4016f2af 0x0 + *fill* 0x4016f2af 0x0 + *fill* 0x4016f2af 0x0 + *fill* 0x4016f2af 0x0 + *fill* 0x4016f2af 0x0 + *fill* 0x4016f2af 0x0 + *fill* 0x4016f2af 0x0 + *fill* 0x4016f2af 0x0 + *fill* 0x4016f2af 0x0 + *fill* 0x4016f2af 0x0 + *fill* 0x4016f2af 0x0 + *fill* 0x4016f2af 0x0 + *fill* 0x4016f2af 0x0 + *fill* 0x4016f2af 0x0 + *fill* 0x4016f2af 0x0 + *fill* 0x4016f2af 0x0 + *fill* 0x4016f2af 0x0 + *fill* 0x4016f2af 0x0 + *fill* 0x4016f2af 0x0 + *fill* 0x4016f2af 0x0 + *fill* 0x4016f2af 0x0 + *fill* 0x4016f2af 0x0 + *(EXCLUDE_FILE(*libpp.a) .wifiorslpiram EXCLUDE_FILE(*libpp.a) .wifiorslpiram.*) + *(EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifirxiram EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifirxiram.*) + *(.wifislpiram .wifislpiram.*) + *fill* 0x4016f2af 0x1 + .wifislpiram.42 + 0x4016f2b0 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x17 (size before relaxing) + 0x4016f2b0 esp_wifi_internal_update_mac_time + *fill* 0x4016f2c3 0x1 + .wifislpiram.5 + 0x4016f2c4 0x27 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x2b (size before relaxing) + 0x4016f2c4 pm_get_connectionless_status + *fill* 0x4016f2eb 0x1 + .wifislpiram.19 + 0x4016f2ec 0x17 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x1b (size before relaxing) + 0x4016f2f0 pm_disable_dream_timer + *fill* 0x4016f303 0x1 + .wifislpiram.20 + 0x4016f304 0x28 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x34 (size before relaxing) + 0x4016f304 pm_enable_dream_timer + .wifislpiram.22 + 0x4016f32c 0x12b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x157 (size before relaxing) + 0x4016f338 pm_update_by_connectionless_status + *fill* 0x4016f457 0x1 + .wifislpiram.34 + 0x4016f458 0x5b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x67 (size before relaxing) + 0x4016f464 pm_handle_tbtt_interval + *fill* 0x4016f4b3 0x1 + .wifislpiram.36 + 0x4016f4b4 0x2ca /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x302 (size before relaxing) + 0x4016f4cc pm_update_next_tbtt + *fill* 0x4016f77e 0x2 + .wifislpiram.42 + 0x4016f780 0x5a /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x6a (size before relaxing) + 0x4016f780 pm_connectionless_wake_interval_timeout_process + *fill* 0x4016f7da 0x2 + .wifislpiram.43 + 0x4016f7dc 0x48 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x60 (size before relaxing) + 0x4016f7dc pm_connectionless_wake_window_timeout_process + .wifislpiram.3 + 0x4016f824 0x13 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + *fill* 0x4016f837 0x1 + .wifislpiram.4 + 0x4016f838 0x8e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x9e (size before relaxing) + 0x4016f844 pp_timer_do_process + *fill* 0x4016f8c6 0x2 + .wifislpiram.16 + 0x4016f8c8 0x1e /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x4016f8cc wdev_csi_len_align + *fill* 0x4016f8e6 0x2 + .wifislpiram.26 + 0x4016f8e8 0x24 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x28 (size before relaxing) + 0x4016f8ec wDev_DiscardFrame + *fill* 0x4016f90c 0x0 + *fill* 0x4016f90c 0x0 + *fill* 0x4016f90c 0x0 + *fill* 0x4016f90c 0x0 + *fill* 0x4016f90c 0x0 + *fill* 0x4016f90c 0x0 + *fill* 0x4016f90c 0x0 + *fill* 0x4016f90c 0x0 + .wifislpiram.6 + 0x4016f90c 0x29 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x4016f90c pp_hdrsize + *fill* 0x4016f935 0x0 + *fill* 0x4016f935 0x0 + *fill* 0x4016f935 0x0 + *fill* 0x4016f935 0x0 + *(EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifislprxiram EXCLUDE_FILE(*libpp.a *libnet80211.a) .wifislprxiram.*) + *libdriver.a:gptimer.*(.literal.gptimer_del_timer .literal.gptimer_destroy .literal.gptimer_disable .literal.gptimer_enable .literal.gptimer_get_captured_count .literal.gptimer_get_raw_count .literal.gptimer_get_resolution .literal.gptimer_new_timer .literal.gptimer_register_event_callbacks .literal.gptimer_release_group_handle .literal.gptimer_set_alarm_action .literal.gptimer_set_raw_count .literal.gptimer_start .literal.gptimer_stop .text .text.gptimer_del_timer .text.gptimer_destroy .text.gptimer_disable .text.gptimer_enable .text.gptimer_get_captured_count .text.gptimer_get_raw_count .text.gptimer_get_resolution .text.gptimer_new_timer .text.gptimer_register_event_callbacks .text.gptimer_release_group_handle .text.gptimer_set_alarm_action .text.gptimer_set_raw_count .text.gptimer_start .text.gptimer_stop) + *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* 0x4016f935 0x3 + .text.esp_event_handler_register + 0x4016f938 0x1c esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x20 (size before relaxing) + 0x4016f938 esp_event_handler_register + .text.esp_event_handler_unregister + 0x4016f954 0x1e esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x4016f954 esp_event_handler_unregister + *fill* 0x4016f972 0x2 + .text.esp_event_post + 0x4016f974 0x22 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x4016f974 esp_event_post + *fill* 0x4016f996 0x2 + .text.esp_event_loop_create_default + 0x4016f998 0x28 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x4016f998 esp_event_loop_create_default + *fill* 0x4016f9c0 0x0 + *fill* 0x4016f9c0 0x0 + *libesp_event.a:esp_event.*(.literal.base_node_add_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 .text .text.base_node_add_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_instances_add .text.handler_instances_remove .text.handler_instances_remove_all .text.loop_node_add_handler) + .text.handler_instances_add + 0x4016f9c0 0x8c esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text.base_node_add_handler + 0x4016fa4c 0xc4 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0xc7 (size before relaxing) + *fill* 0x4016fb10 0x0 + .text.loop_node_add_handler + 0x4016fb10 0x107 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x4016fc17 0x1 + .text.handler_instances_remove + 0x4016fc18 0x63 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x4016fc7b 0x1 + .text.esp_event_loop_create + 0x4016fc7c 0x132 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x4016fc7c esp_event_loop_create + *fill* 0x4016fdae 0x2 + .text.esp_event_loop_run + 0x4016fdb0 0x193 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x4016fdb0 esp_event_loop_run + *fill* 0x4016ff43 0x1 + .text.esp_event_loop_run_task + 0x4016ff44 0x34 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text.esp_event_handler_register_with_internal + 0x4016ff78 0x132 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x4016ff78 esp_event_handler_register_with_internal + *fill* 0x401700aa 0x2 + .text.esp_event_handler_register_with + 0x401700ac 0x1d esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x401700ac esp_event_handler_register_with + *fill* 0x401700c9 0x3 + .text.esp_event_handler_unregister_with_internal + 0x401700cc 0x154 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x15c (size before relaxing) + 0x401700cc esp_event_handler_unregister_with_internal + .text.esp_event_handler_unregister_with + 0x40170220 0x1d esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x40170220 esp_event_handler_unregister_with + *fill* 0x4017023d 0x3 + .text.esp_event_post_to + 0x40170240 0x102 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x40170240 esp_event_post_to + *fill* 0x40170342 0x0 + *fill* 0x40170342 0x0 + *fill* 0x40170342 0x0 + *fill* 0x40170342 0x0 + *fill* 0x40170342 0x0 + *fill* 0x40170342 0x0 + *fill* 0x40170342 0x0 + *fill* 0x40170342 0x0 + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_set_watchpoint .text .text.esp_cpu_clear_breakpoint .text.esp_cpu_clear_watchpoint .text.esp_cpu_set_breakpoint .text.esp_cpu_set_watchpoint) + *fill* 0x40170342 0x2 + .text.esp_cpu_set_breakpoint + 0x40170344 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x40170344 esp_cpu_set_breakpoint + *libesp_hw_support.a:esp_gpio_reserve.*(.text) + *libesp_hw_support.a:periph_ctrl.*(.literal.periph_ll_get_rst_en_reg .literal.periph_module_disable .literal.periph_module_enable .literal.periph_rcc_acquire_enter .literal.periph_rcc_acquire_exit .literal.periph_rcc_release_enter .literal.periph_rcc_release_exit .text .text.periph_ll_get_clk_en_mask .text.periph_ll_get_rst_en_mask .text.periph_ll_get_rst_en_reg .text.periph_module_disable .text.periph_module_enable .text.periph_rcc_acquire_enter .text.periph_rcc_acquire_exit .text.periph_rcc_release_enter .text.periph_rcc_release_exit) + *fill* 0x4017036a 0x2 + .text.periph_ll_get_rst_en_reg + 0x4017036c 0x2b esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x40170397 0x1 + .text.periph_rcc_acquire_enter + 0x40170398 0x13 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x40170398 periph_rcc_acquire_enter + *fill* 0x401703ab 0x1 + .text.periph_rcc_acquire_exit + 0x401703ac 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x401703ac periph_rcc_acquire_exit + *fill* 0x401703c2 0x2 + .text.periph_module_enable + 0x401703c4 0xaf esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0xbb (size before relaxing) + 0x401703c4 periph_module_enable + *fill* 0x40170473 0x1 + .text.periph_module_disable + 0x40170474 0xaf esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0xbb (size before relaxing) + 0x40170474 periph_module_disable + *fill* 0x40170523 0x1 + .text.periph_ll_get_clk_en_mask + 0x40170524 0x132 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x40170656 0x2 + .text.periph_ll_get_rst_en_mask + 0x40170658 0x112 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x4017076a 0x0 + *fill* 0x4017076a 0x0 + *fill* 0x4017076a 0x0 + *fill* 0x4017076a 0x0 + *fill* 0x4017076a 0x0 + *libesp_hw_support.a:rtc_init.*(.literal.rtc_init .text .text.rtc_init) + *fill* 0x4017076a 0x2 + .text.rtc_init + 0x4017076c 0x3e5 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x4017076c rtc_init + *fill* 0x40170b51 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* 0x40170b51 0x3 + .text.s_sar_power_release + 0x40170b54 0x74 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.s_sar_power_acquire + 0x40170bc8 0x46 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + *fill* 0x40170c0e 0x2 + .text.sar_periph_ctrl_init + 0x40170c10 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0x40170c10 sar_periph_ctrl_init + *fill* 0x40170c2a 0x2 + .text.sar_periph_ctrl_pwdet_power_acquire + 0x40170c2c 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0xb (size before relaxing) + 0x40170c2c sar_periph_ctrl_pwdet_power_acquire + *fill* 0x40170c34 0x0 + .text.sar_periph_ctrl_pwdet_power_release + 0x40170c34 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0xb (size before relaxing) + 0x40170c34 sar_periph_ctrl_pwdet_power_release + *fill* 0x40170c3c 0x0 + *fill* 0x40170c3c 0x0 + *fill* 0x40170c3c 0x0 + *fill* 0x40170c3c 0x0 + *libesp_system.a:esp_system_chip.*(.literal.esp_get_free_heap_size .literal.esp_get_free_internal_heap_size .literal.esp_get_idf_version .literal.esp_get_minimum_free_heap_size .text .text.esp_get_free_heap_size .text.esp_get_free_internal_heap_size .text.esp_get_idf_version .text.esp_get_minimum_free_heap_size) + *fill* 0x40170c3c 0x0 + .text.esp_get_free_heap_size + 0x40170c3c 0x12 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0x40170c3c esp_get_free_heap_size + *fill* 0x40170c4e 0x2 + .text.esp_get_free_internal_heap_size + 0x40170c50 0x12 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0x40170c50 esp_get_free_internal_heap_size + *fill* 0x40170c62 0x2 + .text.esp_get_minimum_free_heap_size + 0x40170c64 0x12 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0x40170c64 esp_get_minimum_free_heap_size + *fill* 0x40170c76 0x0 + *fill* 0x40170c76 0x0 + *fill* 0x40170c76 0x0 + *libesp_wifi.a:esp_adapter.*(.literal.esp_cpu_intr_disable .literal.esp_cpu_intr_enable .literal.esp_event_post_wrapper .literal.esp_phy_disable_wrapper .literal.esp_phy_enable_wrapper .literal.event_group_wait_bits_wrapper .literal.get_time_wrapper .literal.mutex_create_wrapper .literal.mutex_delete_wrapper .literal.queue_create_wrapper .literal.queue_delete_wrapper .literal.queue_recv_wrapper .literal.queue_send_to_back_wrapper .literal.queue_send_to_front_wrapper .literal.queue_send_wrapper .literal.recursive_mutex_create_wrapper .literal.set_intr_wrapper .literal.set_isr_wrapper .literal.task_create_pinned_to_core_wrapper .literal.task_create_wrapper .literal.wifi_clock_disable_wrapper .literal.wifi_clock_enable_wrapper .literal.wifi_create_queue .literal.wifi_create_queue_wrapper .literal.wifi_delete_queue .literal.wifi_delete_queue_wrapper .literal.wifi_reset_mac_wrapper .literal.wifi_thread_semphr_free .literal.wifi_thread_semphr_get_wrapper .text .text.clear_intr_wrapper .text.coex_deinit_wrapper .text.coex_disable_wrapper .text.coex_enable_wrapper .text.coex_init_wrapper .text.coex_register_start_cb_wrapper .text.coex_schm_curr_period_get_wrapper .text.coex_schm_curr_phase_get_wrapper .text.coex_schm_flexible_period_get_wrapper .text.coex_schm_flexible_period_set_wrapper .text.coex_schm_interval_get_wrapper .text.coex_schm_process_restart_wrapper .text.coex_schm_register_cb_wrapper .text.coex_schm_status_bit_clear_wrapper .text.coex_schm_status_bit_set_wrapper .text.coex_wifi_channel_set_wrapper .text.coex_wifi_request_wrapper .text.esp_cpu_intr_disable .text.esp_cpu_intr_enable .text.esp_event_post_wrapper .text.esp_phy_disable_wrapper .text.esp_phy_enable_wrapper .text.event_group_wait_bits_wrapper .text.get_time_wrapper .text.mutex_create_wrapper .text.mutex_delete_wrapper .text.queue_create_wrapper .text.queue_delete_wrapper .text.queue_recv_wrapper .text.queue_send_to_back_wrapper .text.queue_send_to_front_wrapper .text.queue_send_wrapper .text.recursive_mutex_create_wrapper .text.set_intr_wrapper .text.set_isr_wrapper .text.task_create_pinned_to_core_wrapper .text.task_create_wrapper .text.task_get_max_priority_wrapper .text.wifi_clock_disable_wrapper .text.wifi_clock_enable_wrapper .text.wifi_create_queue .text.wifi_create_queue_wrapper .text.wifi_delete_queue .text.wifi_delete_queue_wrapper .text.wifi_reset_mac_wrapper .text.wifi_thread_semphr_free .text.wifi_thread_semphr_get_wrapper) + *fill* 0x40170c76 0x2 + .text.esp_cpu_intr_enable + 0x40170c78 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40170c86 0x2 + .text.esp_cpu_intr_disable + 0x40170c88 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40170c96 0x2 + .text.mutex_delete_wrapper + 0x40170c98 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40170ca6 0x2 + .text.wifi_thread_semphr_free + 0x40170ca8 0xf esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40170cb7 0x1 + .text.get_time_wrapper + 0x40170cb8 0x10 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text.wifi_clock_disable_wrapper + 0x40170cc8 0xb esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40170cd3 0x1 + .text.wifi_clock_enable_wrapper + 0x40170cd4 0xb esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40170cdf 0x1 + .text.wifi_reset_mac_wrapper + 0x40170ce0 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40170cee 0x2 + .text.esp_phy_enable_wrapper + 0x40170cf0 0x12 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x16 (size before relaxing) + *fill* 0x40170d02 0x2 + .text.esp_phy_disable_wrapper + 0x40170d04 0x12 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x16 (size before relaxing) + *fill* 0x40170d16 0x2 + .text.task_create_wrapper + 0x40170d18 0x20 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text.task_create_pinned_to_core_wrapper + 0x40170d38 0x25 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40170d5d 0x3 + .text.queue_send_to_front_wrapper + 0x40170d60 0x15 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40170d75 0x3 + .text.queue_send_to_back_wrapper + 0x40170d78 0x15 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40170d8d 0x3 + .text.queue_create_wrapper + 0x40170d90 0x44 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text.recursive_mutex_create_wrapper + 0x40170dd4 0x10 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text.mutex_create_wrapper + 0x40170de4 0x10 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text.wifi_thread_semphr_get_wrapper + 0x40170df4 0x48 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text.set_isr_wrapper + 0x40170e3c 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x12 (size before relaxing) + *fill* 0x40170e4a 0x2 + .text.set_intr_wrapper + 0x40170e4c 0x12 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40170e5e 0x2 + .text.esp_event_post_wrapper + 0x40170e60 0x14 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x18 (size before relaxing) + .text.event_group_wait_bits_wrapper + 0x40170e74 0x18 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text.queue_recv_wrapper + 0x40170e8c 0x14 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text.queue_send_wrapper + 0x40170ea0 0x15 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40170eb5 0x3 + .text.queue_delete_wrapper + 0x40170eb8 0x2a esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40170ee2 0x2 + .text.wifi_create_queue + 0x40170ee4 0x26 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x40170ee4 wifi_create_queue + *fill* 0x40170f0a 0x2 + .text.wifi_create_queue_wrapper + 0x40170f0c 0x11 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40170f1d 0x3 + .text.wifi_delete_queue + 0x40170f20 0x17 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x40170f20 wifi_delete_queue + *fill* 0x40170f37 0x1 + .text.wifi_delete_queue_wrapper + 0x40170f38 0xa esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xe (size before relaxing) + *fill* 0x40170f42 0x0 + *fill* 0x40170f42 0x0 + *fill* 0x40170f42 0x2 + .text.clear_intr_wrapper + 0x40170f44 0x5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40170f49 0x3 + .text.task_get_max_priority_wrapper + 0x40170f4c 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40170f53 0x1 + .text.coex_init_wrapper + 0x40170f54 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40170f5b 0x1 + .text.coex_deinit_wrapper + 0x40170f5c 0x5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40170f61 0x3 + .text.coex_wifi_request_wrapper + 0x40170f64 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40170f6b 0x1 + .text.coex_wifi_channel_set_wrapper + 0x40170f6c 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40170f73 0x1 + .text.coex_schm_interval_get_wrapper + 0x40170f74 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40170f7b 0x1 + .text.coex_schm_curr_period_get_wrapper + 0x40170f7c 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40170f83 0x1 + .text.coex_schm_curr_phase_get_wrapper + 0x40170f84 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40170f8b 0x1 + .text.coex_register_start_cb_wrapper + 0x40170f8c 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40170f93 0x1 + .text.coex_schm_register_cb_wrapper + 0x40170f94 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40170f9b 0x1 + .text.coex_schm_flexible_period_set_wrapper + 0x40170f9c 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40170fa3 0x1 + .text.coex_schm_flexible_period_get_wrapper + 0x40170fa4 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40170fab 0x0 + *fill* 0x40170fab 0x0 + *fill* 0x40170fab 0x0 + *fill* 0x40170fab 0x0 + *fill* 0x40170fab 0x0 + *fill* 0x40170fab 0x0 + *fill* 0x40170fab 0x0 + *fill* 0x40170fab 0x0 + *fill* 0x40170fab 0x0 + *fill* 0x40170fab 0x0 + *fill* 0x40170fab 0x0 + *fill* 0x40170fab 0x0 + *fill* 0x40170fab 0x0 + *fill* 0x40170fab 0x0 + *fill* 0x40170fab 0x1 + .text.coex_schm_status_bit_clear_wrapper + 0x40170fac 0x5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40170fb1 0x3 + .text.coex_schm_status_bit_set_wrapper + 0x40170fb4 0x5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40170fb9 0x3 + .text.coex_schm_process_restart_wrapper + 0x40170fbc 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40170fc3 0x1 + .text.coex_enable_wrapper + 0x40170fc4 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40170fcb 0x1 + .text.coex_disable_wrapper + 0x40170fcc 0x5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x40170fd1 0x0 + *fill* 0x40170fd1 0x0 + *fill* 0x40170fd1 0x0 + *fill* 0x40170fd1 0x0 + *libesp_wifi.a:wifi_netif.*(.literal.esp_wifi_create_if_driver .literal.esp_wifi_destroy_if_driver .literal.esp_wifi_get_if_mac .literal.esp_wifi_register_if_rxcb .literal.wifi_ap_receive .literal.wifi_driver_start .literal.wifi_free .literal.wifi_transmit .text .text.esp_wifi_create_if_driver .text.esp_wifi_destroy_if_driver .text.esp_wifi_get_if_mac .text.esp_wifi_is_if_ready_when_started .text.esp_wifi_register_if_rxcb .text.wifi_ap_receive .text.wifi_driver_start .text.wifi_free .text.wifi_transmit) + *fill* 0x40170fd1 0x3 + .text.wifi_ap_receive + 0x40170fd4 0x1c esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .text.wifi_driver_start + 0x40170ff0 0x24 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .text.wifi_free + 0x40171014 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0xf (size before relaxing) + *fill* 0x40171020 0x0 + .text.wifi_transmit + 0x40171020 0x14 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .text.esp_wifi_create_if_driver + 0x40171034 0x3a esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x40171034 esp_wifi_create_if_driver + *fill* 0x4017106e 0x2 + .text.esp_wifi_get_if_mac + 0x40171070 0x11 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x40171070 esp_wifi_get_if_mac + *fill* 0x40171081 0x3 + .text.esp_wifi_register_if_rxcb + 0x40171084 0x9e esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0xa2 (size before relaxing) + 0x40171084 esp_wifi_register_if_rxcb + *fill* 0x40171122 0x0 + *fill* 0x40171122 0x0 + *fill* 0x40171122 0x0 + *fill* 0x40171122 0x2 + .text.esp_wifi_is_if_ready_when_started + 0x40171124 0x10 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x40171124 esp_wifi_is_if_ready_when_started + *libfreertos.a:app_startup.*(.literal .literal.* .text .text.*) + .text.other_cpu_startup_idle_hook_cb + 0x40171134 0x12 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + *fill* 0x40171146 0x2 + .text.main_task + 0x40171148 0xcf esp-idf/freertos/libfreertos.a(app_startup.c.obj) + *fill* 0x40171217 0x1 + .text.esp_startup_start_app + 0x40171218 0x58 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0x40171218 esp_startup_start_app + .text.esp_startup_start_app_other_cores + 0x40171270 0x33 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0x40171270 esp_startup_start_app_other_cores + *fill* 0x401712a3 0x0 + *fill* 0x401712a3 0x0 + *fill* 0x401712a3 0x0 + *libfreertos.a:freertos_compatibility.*(.literal .literal.* .text .text.*) + *libfreertos.a:idf_additions.*(.literal .literal.* .text .text.*) + *libfreertos.a:tasks.*(.literal.uxTaskGetSnapshotAll .text.uxTaskGetSnapshotAll) + *libfreertos.a:tasks.*(.literal.xTaskGetNext .text.xTaskGetNext) + *libhal.a:timer_hal.*(.literal.timer_hal_deinit .literal.timer_hal_init .text .text.timer_hal_deinit .text.timer_hal_init .text.timer_hal_set_counter_value) + *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_info_impl .text.multi_heap_get_info_tlsf .text.multi_heap_minimum_free_size_impl .text.multi_heap_register_impl) + *fill* 0x401712a3 0x1 + .text.multi_heap_register_impl + 0x401712a4 0x4c esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x401712a4 multi_heap_register_impl + 0x401712a4 multi_heap_register + .text.multi_heap_get_info_impl + 0x401712f0 0x66 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x6e (size before relaxing) + 0x401712f0 multi_heap_get_info + 0x401712f0 multi_heap_get_info_impl + *fill* 0x40171356 0x2 + .text.multi_heap_get_info_tlsf + 0x40171358 0x24 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_free_size_impl + 0x4017137c 0xe esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x4017137c multi_heap_free_size_impl + 0x4017137c multi_heap_free_size + *fill* 0x4017138a 0x2 + .text.multi_heap_minimum_free_size_impl + 0x4017138c 0xe esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x4017138c multi_heap_minimum_free_size + 0x4017138c multi_heap_minimum_free_size_impl + *fill* 0x4017139a 0x0 + *libheap.a:tlsf.*(.literal.default_walker .literal.integrity_walker .literal.tlsf_add_pool .literal.tlsf_check .literal.tlsf_check_pool .literal.tlsf_create .literal.tlsf_create_with_pool .literal.tlsf_remove_pool .literal.tlsf_walk_pool .text .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* 0x4017139a 0x2 + .text.default_walker + 0x4017139c 0x1e esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x401713ba 0x2 + .text.tlsf_walk_pool + 0x401713bc 0x48 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x401713bc tlsf_walk_pool + .text.tlsf_add_pool + 0x40171404 0x12e esp-idf/heap/libheap.a(tlsf.c.obj) + 0x132 (size before relaxing) + 0x40171404 tlsf_add_pool + *fill* 0x40171532 0x2 + .text.tlsf_create + 0x40171534 0x103 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x40171534 tlsf_create + *fill* 0x40171637 0x1 + .text.tlsf_create_with_pool + 0x40171638 0x22 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x26 (size before relaxing) + 0x40171638 tlsf_create_with_pool + *fill* 0x4017165a 0x0 + *fill* 0x4017165a 0x2 + .text.tlsf_fit_size + 0x4017165c 0x2a esp-idf/heap/libheap.a(tlsf.c.obj) + 0x4017165c tlsf_fit_size + *fill* 0x40171686 0x0 + *fill* 0x40171686 0x0 + *fill* 0x40171686 0x0 + *liblog.a:log.*(.literal.esp_log_level_get .literal.esp_log_level_set .literal.esp_log_set_vprintf .literal.esp_log_writev .literal.fix_cache_generation_overflow .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.fix_cache_generation_overflow .text.heap_bubble_down .text.s_log_level_get_and_unlock) + *fill* 0x40171686 0x2 + .text.fix_cache_generation_overflow + 0x40171688 0x2c esp-idf/log/liblog.a(log.c.obj) + .text.heap_bubble_down + 0x401716b4 0x47 esp-idf/log/liblog.a(log.c.obj) + *fill* 0x401716fb 0x1 + .text.s_log_level_get_and_unlock + 0x401716fc 0xfb esp-idf/log/liblog.a(log.c.obj) + 0x103 (size before relaxing) + *fill* 0x401717f7 0x1 + .text.esp_log_level_set + 0x401717f8 0xf1 esp-idf/log/liblog.a(log.c.obj) + 0x401717f8 esp_log_level_set + *fill* 0x401718e9 0x3 + .text.esp_log_writev + 0x401718ec 0x2e esp-idf/log/liblog.a(log.c.obj) + 0x32 (size before relaxing) + 0x401718ec esp_log_writev + *fill* 0x4017191a 0x0 + *fill* 0x4017191a 0x0 + *fill* 0x4017191a 0x0 + *fill* 0x4017191a 0x0 + *liblog.a:log_freertos.*(.literal.esp_log_system_timestamp .text .text.esp_log_system_timestamp) + *libphy.a:(.phyiram .phyiram.*) + *fill* 0x4017191a 0x2 + .phyiram.0 0x4017191c 0x27 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x2b (size before relaxing) + 0x40171920 ram_bb_bss_cbw40_dig + *fill* 0x40171943 0x1 + .phyiram.1 0x40171944 0x75 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x89 (size before relaxing) + 0x40171950 ram_cbw2040_cfg + *fill* 0x401719b9 0x3 + .phyiram.2 0x401719bc 0x1f6 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x23a (size before relaxing) + 0x401719d8 ram_spur_coef_cfg + *fill* 0x40171bb2 0x2 + .phyiram.3 0x40171bb4 0x9e /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0xba (size before relaxing) + 0x40171bc0 set_chan_rxcomp + *fill* 0x40171c52 0x2 + .phyiram.6 0x40171c54 0xd6 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0xf2 (size before relaxing) + 0x40171c6c tx_delay_cfg + *fill* 0x40171d2a 0x2 + .phyiram.4 0x40171d2c 0xde /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x116 (size before relaxing) + 0x40171d34 bb_bss_cbw40 + *fill* 0x40171e0a 0x2 + .phyiram.7 0x40171e0c 0xd0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0xfc (size before relaxing) + 0x40171e34 tx_paon_set + .phyiram.8 0x40171edc 0x1f3 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x257 (size before relaxing) + 0x40171f28 agc_reg_init + *fill* 0x401720cf 0x1 + .phyiram.9 0x401720d0 0x15f /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x193 (size before relaxing) + 0x40172118 bb_reg_init + *fill* 0x4017222f 0x1 + .phyiram.10 0x40172230 0x86 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0xa6 (size before relaxing) + 0x40172234 mac_enable_bb + *fill* 0x401722b6 0x2 + .phyiram.13 0x401722b8 0x168 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x1b4 (size before relaxing) + 0x401722d8 rx_11b_opt + .phyiram.15 0x40172420 0x9a /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0xca (size before relaxing) + 0x40172430 opt_11b_resart + *fill* 0x401724ba 0x2 + .phyiram.14 0x401724bc 0xd7 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x123 (size before relaxing) + 0x401724e0 phy_reg_init + *fill* 0x40172593 0x1 + .phyiram.16 0x40172594 0x1a0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x21b (size before relaxing) + 0x4017259c set_chan_reg + *fill* 0x40172734 0x0 + .phyiram.18 0x40172734 0x62 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x76 (size before relaxing) + 0x40172740 i2c_master_reset + *fill* 0x40172796 0x2 + .phyiram.12 0x40172798 0x58 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x7c (size before relaxing) + 0x401727a0 reg_init_begin + .phyiram.17 0x401727f0 0xc2 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + 0x11a (size before relaxing) + 0x401727fc phy_wakeup_init + *fill* 0x401728b2 0x2 + .phyiram.25 0x401728b4 0x42 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x4e (size before relaxing) + 0x401728c0 phy_set_bbfreq_init + *fill* 0x401728f6 0x2 + .phyiram.26 0x401728f8 0x29 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x31 (size before relaxing) + 0x401728fc ram_tx_pwctrl_bg_init + *fill* 0x40172921 0x3 + .phyiram.27 0x40172924 0xdf /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x123 (size before relaxing) + 0x40172930 pwdet_sar2_init + *fill* 0x40172a03 0x1 + .phyiram.28 0x40172a04 0x6f /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x9f (size before relaxing) + 0x40172a04 ram_en_pwdet + *fill* 0x40172a73 0x1 + .phyiram.23 0x40172a74 0x59 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x61 (size before relaxing) + 0x40172abc i2c_bbpll_init + *fill* 0x40172acd 0x3 + .phyiram.21 0x40172ad0 0x106 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x10e (size before relaxing) + 0x40172ad0 bb_bss_cbw40_ana + *fill* 0x40172bd6 0x2 + .phyiram.22 0x40172bd8 0x96 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x9e (size before relaxing) + 0x40172bd8 i2c_bt_filter_set + *fill* 0x40172c6e 0x2 + .phyiram.19 0x40172c70 0x2cb /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x30f (size before relaxing) + 0x40172c74 phy_i2c_init + *fill* 0x40172f3b 0x0 + *fill* 0x40172f3b 0x0 + *fill* 0x40172f3b 0x0 + *fill* 0x40172f3b 0x0 + *fill* 0x40172f3b 0x0 + *fill* 0x40172f3b 0x0 + *fill* 0x40172f3b 0x0 + *fill* 0x40172f3b 0x0 + *fill* 0x40172f3b 0x0 + *fill* 0x40172f3b 0x0 + *fill* 0x40172f3b 0x0 + *fill* 0x40172f3b 0x0 + *fill* 0x40172f3b 0x0 + *fill* 0x40172f3b 0x0 + *fill* 0x40172f3b 0x0 + *fill* 0x40172f3b 0x0 + *fill* 0x40172f3b 0x0 + *fill* 0x40172f3b 0x0 + *fill* 0x40172f3b 0x0 + *fill* 0x40172f3b 0x0 + *fill* 0x40172f3b 0x0 + *fill* 0x40172f3b 0x0 + *libxtensa.a:xt_trax.*(.literal .literal.* .text .text.*) + *libxtensa.a:xtensa_intr.*(.literal .literal.* .text .text.*) + *fill* 0x40172f3b 0x1 + .text.xt_int_has_handler + 0x40172f3c 0x1d esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x40172f3c xt_int_has_handler + *fill* 0x40172f59 0x3 + .text.xt_set_interrupt_handler + 0x40172f5c 0x3e esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x40172f5c xt_set_interrupt_handler + *fill* 0x40172f9a 0x0 + *fill* 0x40172f9a 0x0 + *(.stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*) + *(.irom0.text) + *(.fini.literal) + *(.fini) + *fill* 0x40172f9a 0x2 + .fini 0x40172f9c 0x3 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crti.o + 0x40172f9c _fini + *(.gnu.version) + 0x40172faf . = (. + _esp_flash_mmap_prefetch_pad_size) + *fill* 0x40172f9f 0x10 + 0x40172faf _text_end = ABSOLUTE (.) + 0x40172faf _instruction_reserved_end = ABSOLUTE (.) + 0x40172faf _etext = . + 0x00000000 _flash_cache_start = ABSOLUTE (0x0) + +.iram0.text_end + 0x4009559f 0x1 + 0x400955a0 . = ALIGN (0x4) + *fill* 0x4009559f 0x1 + 0x400955a0 _iram_text_end = ABSOLUTE (.) + +.iram0.data 0x400955a0 0x0 + 0x400955a0 . = ALIGN (0x4) + 0x400955a0 _iram_data_start = ABSOLUTE (.) + *(.iram.data .iram.data.*) + 0x400955a0 _coredump_iram_start = ABSOLUTE (.) + *(.iram2.coredump .iram2.coredump.*) + 0x400955a0 _coredump_iram_end = ABSOLUTE (.) + 0x400955a0 _iram_data_end = ABSOLUTE (.) + +.iram0.bss 0x400955a0 0x0 + 0x400955a0 . = ALIGN (0x4) + 0x400955a0 _iram_bss_start = ABSOLUTE (.) + *(.iram.bss .iram.bss.*) + 0x400955a0 _iram_bss_end = ABSOLUTE (.) + 0x400955a0 . = ALIGN (0x4) + 0x400955a0 _iram_end = ABSOLUTE (.) + +.dram0.heap_start + 0x3ffb9998 0x0 + 0x3ffb9998 . = ALIGN (0x8) + 0x3ffb9998 _heap_low_start = ABSOLUTE (.) + +.debug + *(.debug) + +.line + *(.line) + +.debug_srcinfo + *(.debug_srcinfo) + +.debug_sfnames + *(.debug_sfnames) + +.debug_aranges 0x00000000 0xb2d8 + *(.debug_aranges) + .debug_aranges + 0x00000000 0x30 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_aranges + 0x00000030 0x148 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_aranges + 0x00000178 0x88 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_aranges + 0x00000200 0x58 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_aranges + 0x00000258 0x60 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_aranges + 0x000002b8 0x58 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_aranges + 0x00000310 0xb8 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_aranges + 0x000003c8 0x40 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_aranges + 0x00000408 0x48 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_aranges + 0x00000450 0x60 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_aranges + 0x000004b0 0x28 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .debug_aranges + 0x000004d8 0x20 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .debug_aranges + 0x000004f8 0x20 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .debug_aranges + 0x00000518 0x40 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_aranges + 0x00000558 0x28 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_aranges + 0x00000580 0x30 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_aranges + 0x000005b0 0x70 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_aranges + 0x00000620 0x30 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_aranges + 0x00000650 0x48 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_aranges + 0x00000698 0x50 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_aranges + 0x000006e8 0x30 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_aranges + 0x00000718 0x20 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .debug_aranges + 0x00000738 0x60 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_aranges + 0x00000798 0x40 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_aranges + 0x000007d8 0x20 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .debug_aranges + 0x000007f8 0x28 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_aranges + 0x00000820 0x68 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_aranges + 0x00000888 0x20 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .debug_aranges + 0x000008a8 0x48 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_aranges + 0x000008f0 0x58 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_aranges + 0x00000948 0x70 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .debug_aranges + 0x000009b8 0x40 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_aranges + 0x000009f8 0x20 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_aranges + 0x00000a18 0x58 esp-idf/log/liblog.a(log.c.obj) + .debug_aranges + 0x00000a70 0x48 esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_aranges + 0x00000ab8 0xf0 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_aranges + 0x00000ba8 0x48 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_aranges + 0x00000bf0 0xd0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_aranges + 0x00000cc0 0xd8 esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_aranges + 0x00000d98 0x30 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_aranges + 0x00000dc8 0x18 esp-idf/heap/libheap.a(memory_layout.c.obj) + .debug_aranges + 0x00000de0 0x40 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .debug_aranges + 0x00000e20 0x28 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_aranges + 0x00000e48 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_aranges + 0x00000ea8 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_aranges + 0x00000f10 0xd0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_aranges + 0x00000fe0 0x98 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_aranges + 0x00001078 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_aranges + 0x000010b8 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_aranges + 0x000010f0 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .debug_aranges + 0x00001150 0x118 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_aranges + 0x00001268 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_aranges + 0x00001298 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_aranges + 0x000012f8 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_aranges + 0x00001318 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_aranges + 0x00001388 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .debug_aranges + 0x000013a8 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_aranges + 0x00001400 0x38 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_aranges + 0x00001438 0x130 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_aranges + 0x00001568 0x298 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_aranges + 0x00001800 0x90 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_aranges + 0x00001890 0x20 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_aranges + 0x000018b0 0x28 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .debug_aranges + 0x000018d8 0x50 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_aranges + 0x00001928 0x28 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_aranges + 0x00001950 0x28 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_aranges + 0x00001978 0x40 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_aranges + 0x000019b8 0x20 esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_aranges + 0x000019d8 0x30 esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_aranges + 0x00001a08 0xa0 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_aranges + 0x00001aa8 0xd8 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_aranges + 0x00001b80 0x38 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_aranges + 0x00001bb8 0x28 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_aranges + 0x00001be0 0x38 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_aranges + 0x00001c18 0x60 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_aranges + 0x00001c78 0x78 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_aranges + 0x00001cf0 0x50 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_aranges + 0x00001d40 0x40 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_aranges + 0x00001d80 0xd0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_aranges + 0x00001e50 0x30 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_aranges + 0x00001e80 0x38 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_aranges + 0x00001eb8 0x70 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_aranges + 0x00001f28 0x50 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_aranges + 0x00001f78 0x1e0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_aranges + 0x00002158 0x98 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .debug_aranges + 0x000021f0 0x100 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_aranges + 0x000022f0 0x28 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_aranges + 0x00002318 0x48 esp-idf/main/libmain.a(mesh_main.c.obj) + .debug_aranges + 0x00002360 0x40 esp-idf/main/libmain.a(mesh_light.c.obj) + .debug_aranges + 0x000023a0 0x20 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .debug_aranges + 0x000023c0 0x20 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .debug_aranges + 0x000023e0 0x38 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_aranges + 0x00002418 0x70 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .debug_aranges + 0x00002488 0x90 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_aranges + 0x00002518 0xa8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_aranges + 0x000025c0 0x90 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_aranges + 0x00002650 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_aranges + 0x00002668 0x40 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_aranges + 0x000026a8 0x98 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_aranges + 0x00002740 0x18 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .debug_aranges + 0x00002758 0x30 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .debug_aranges + 0x00002788 0x188 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_aranges + 0x00002910 0x190 esp-idf/driver/libdriver.a(ledc.c.obj) + .debug_aranges + 0x00002aa0 0x220 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_aranges + 0x00002cc0 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_aranges + 0x00002ce0 0xb0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_aranges + 0x00002d90 0x60 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_aranges + 0x00002df0 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .debug_aranges + 0x00002e18 0x48 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_aranges + 0x00002e60 0x30 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_aranges + 0x00002e90 0x88 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_aranges + 0x00002f18 0x78 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_aranges + 0x00002f90 0x48 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_aranges + 0x00002fd8 0x110 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_aranges + 0x000030e8 0x58 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_aranges + 0x00003140 0xb8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_aranges + 0x000031f8 0x40 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_aranges + 0x00003238 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_aranges + 0x00003250 0x110 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_aranges + 0x00003360 0x38 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_aranges + 0x00003398 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_aranges + 0x000033c8 0x48 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_aranges + 0x00003410 0x48 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_aranges + 0x00003458 0x78 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_aranges + 0x000034d0 0x30 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_aranges + 0x00003500 0x58 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_aranges + 0x00003558 0x48 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_aranges + 0x000035a0 0xd0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_aranges + 0x00003670 0x50 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_aranges + 0x000036c0 0x20 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .debug_aranges + 0x000036e0 0x28 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_aranges + 0x00003708 0x68 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_aranges + 0x00003770 0x48 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .debug_aranges + 0x000037b8 0x38 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_aranges + 0x000037f0 0x98 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_aranges + 0x00003888 0x48 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_aranges + 0x000038d0 0xe8 esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_aranges + 0x000039b8 0x28 esp-idf/hal/libhal.a(ledc_hal.c.obj) + .debug_aranges + 0x000039e0 0x58 esp-idf/hal/libhal.a(ledc_hal_iram.c.obj) + .debug_aranges + 0x00003a38 0x18 esp-idf/soc/libsoc.a(interrupts.c.obj) + .debug_aranges + 0x00003a50 0x18 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_aranges + 0x00003a68 0x18 esp-idf/soc/libsoc.a(ledc_periph.c.obj) + .debug_aranges + 0x00003a80 0x18 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .debug_aranges + 0x00003a98 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_aranges + 0x00003ac8 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_aranges + 0x00003ae8 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .debug_aranges + 0x00003b30 0x180 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_aranges + 0x00003cb0 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_aranges + 0x00003cd8 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_aranges + 0x00003cf8 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_aranges + 0x00003d38 0x28 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_aranges + 0x00003d60 0x58 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_aranges + 0x00003db8 0xa8 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_aranges + 0x00003e60 0x1d8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_aranges + 0x00004038 0x108 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_aranges + 0x00004140 0xc8 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_aranges + 0x00004208 0x78 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_aranges + 0x00004280 0x80 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_aranges + 0x00004300 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .debug_aranges + 0x00004338 0x58 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_aranges + 0x00004390 0x128 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_aranges + 0x000044b8 0x50 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_aranges + 0x00004508 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_aranges + 0x00004530 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_aranges + 0x00004560 0x50 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_aranges + 0x000045b0 0x3b0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_aranges + 0x00004960 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_aranges + 0x000049a8 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .debug_aranges + 0x000049d0 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .debug_aranges + 0x000049f0 0x138 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_aranges + 0x00004b28 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_aranges + 0x00004b48 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_aranges + 0x00004b68 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_aranges + 0x00004b88 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_aranges + 0x00004bc8 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_aranges + 0x00004c18 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + .debug_aranges + 0x00004ca0 0xe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_aranges + 0x00004d88 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + .debug_aranges + 0x00004db0 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_aranges + 0x00004df8 0x20 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_aranges + 0x00004e18 0x60 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_aranges + 0x00004e78 0xc8 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_aranges + 0x00004f40 0x70 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_aranges + 0x00004fb0 0x248 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_aranges + 0x000051f8 0x1b0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_aranges + 0x000053a8 0x110 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .debug_aranges + 0x000054b8 0x110 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_aranges + 0x000055c8 0x108 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_aranges + 0x000056d0 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .debug_aranges + 0x00005710 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .debug_aranges + 0x00005780 0xc8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_aranges + 0x00005848 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_aranges + 0x00005870 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_aranges + 0x000058b0 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_aranges + 0x000058d8 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_aranges + 0x00005900 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_aranges + 0x00005938 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_aranges + 0x00005970 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .debug_aranges + 0x000059e0 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_aranges + 0x00005a08 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_aranges + 0x00005a50 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_aranges + 0x00005a88 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_aranges + 0x00005b08 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_aranges + 0x00005b60 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .debug_aranges + 0x00005bc0 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_aranges + 0x00005c18 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_aranges + 0x00005c78 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_aranges + 0x00005cd8 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .debug_aranges + 0x00005d48 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .debug_aranges + 0x00005d98 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .debug_aranges + 0x00005e18 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_aranges + 0x00005ec0 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_aranges + 0x00005f80 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_aranges + 0x00006018 0x1b0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_aranges + 0x000061c8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .debug_aranges + 0x00006208 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_aranges + 0x00006268 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_aranges + 0x00006320 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_aranges + 0x000063a0 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_aranges + 0x00006438 0x228 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_aranges + 0x00006660 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_aranges + 0x000066f0 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_aranges + 0x00006780 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_aranges + 0x00006820 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_aranges + 0x000068f0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_aranges + 0x00006910 0x178 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_aranges + 0x00006a88 0xc0 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .debug_aranges + 0x00006b48 0x68 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_aranges + 0x00006bb0 0x70 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_aranges + 0x00006c20 0xd8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_aranges + 0x00006cf8 0x20 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_aranges + 0x00006d18 0x50 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_aranges + 0x00006d68 0x80 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .debug_aranges + 0x00006de8 0x30 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_aranges + 0x00006e18 0x28 esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_aranges + 0x00006e40 0x20 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_aranges + 0x00006e60 0x18 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .debug_aranges + 0x00006e78 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_aranges + 0x00006ea0 0x78 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_aranges + 0x00006f18 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .debug_aranges + 0x00006f40 0x70 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_aranges + 0x00006fb0 0x50 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_aranges + 0x00007000 0x80 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .debug_aranges + 0x00007080 0xb0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_aranges + 0x00007130 0x60 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .debug_aranges + 0x00007190 0x1c8 esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_aranges + 0x00007358 0x90 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_aranges + 0x000073e8 0x48 esp-idf/lwip/liblwip.a(def.c.obj) + .debug_aranges + 0x00007430 0x88 esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_aranges + 0x000074b8 0x20 esp-idf/lwip/liblwip.a(init.c.obj) + .debug_aranges + 0x000074d8 0x38 esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_aranges + 0x00007510 0x40 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_aranges + 0x00007550 0x58 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_aranges + 0x000075a8 0x140 esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_aranges + 0x000076e8 0x128 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_aranges + 0x00007810 0x80 esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_aranges + 0x00007890 0x1a0 esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_aranges + 0x00007a30 0x58 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_aranges + 0x00007a88 0xc0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_aranges + 0x00007b48 0x70 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_aranges + 0x00007bb8 0x98 esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_aranges + 0x00007c50 0x110 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_aranges + 0x00007d60 0x90 esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_aranges + 0x00007df0 0x28 esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_aranges + 0x00007e18 0x98 esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_aranges + 0x00007eb0 0x68 esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_aranges + 0x00007f18 0x48 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_aranges + 0x00007f60 0x20 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_aranges + 0x00007f80 0x58 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_aranges + 0x00007fd8 0x58 esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_aranges + 0x00008030 0x30 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_aranges + 0x00008060 0x20 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_aranges + 0x00008080 0x78 esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_aranges + 0x000080f8 0xc0 esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_aranges + 0x000081b8 0x28 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_aranges + 0x000081e0 0x28 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .debug_aranges + 0x00008208 0x38 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .debug_aranges + 0x00008240 0x100 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_aranges + 0x00008340 0x50 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_aranges + 0x00008390 0xa0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_aranges + 0x00008430 0x118 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_aranges + 0x00008548 0x130 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_aranges + 0x00008678 0x20 esp-idf/lwip/liblwip.a(err.c.obj) + .debug_aranges + 0x00008698 0x60 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_aranges + 0x000086f8 0x70 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_aranges + 0x00008768 0x60 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_aranges + 0x000087c8 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .debug_aranges + 0x000087e0 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .debug_aranges + 0x000087f8 0x48 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .debug_aranges + 0x00008840 0x28 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .debug_aranges + 0x00008868 0xc8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_aranges + 0x00008930 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .debug_aranges + 0x000089a0 0x1e0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .debug_aranges + 0x00008b80 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_aranges + 0x00008bf8 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .debug_aranges + 0x00008c28 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_aranges + 0x00008c70 0x1e8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .debug_aranges + 0x00008e58 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .debug_aranges + 0x00008ed8 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_aranges + 0x00008f50 0x178 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_aranges + 0x000090c8 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_aranges + 0x00009120 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .debug_aranges + 0x00009198 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .debug_aranges + 0x000091f8 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .debug_aranges + 0x00009250 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .debug_aranges + 0x00009280 0x130 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_aranges + 0x000093b0 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .debug_aranges + 0x00009400 0xd8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_aranges + 0x000094d8 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .debug_aranges + 0x000094f8 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_aranges + 0x00009528 0x190 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_aranges + 0x000096b8 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_aranges + 0x000096f8 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_aranges + 0x00009770 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .debug_aranges + 0x000097e0 0x138 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .debug_aranges + 0x00009918 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_aranges + 0x00009988 0xe0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .debug_aranges + 0x00009a68 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .debug_aranges + 0x00009aa0 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .debug_aranges + 0x00009b08 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_aranges + 0x00009b88 0xc0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .debug_aranges + 0x00009c48 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_aranges + 0x00009d38 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .debug_aranges + 0x00009d78 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_aranges + 0x00009e68 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_aranges + 0x00009ee0 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_aranges + 0x00009f20 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_aranges + 0x00009f68 0x20 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_aranges + 0x00009f88 0x20 /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + .debug_aranges + 0x00009fa8 0x20 /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + .debug_aranges + 0x00009fc8 0x18 /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .debug_aranges + 0x00009fe0 0x20 /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + .debug_aranges + 0x0000a000 0x20 /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + .debug_aranges + 0x0000a020 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_opv.o) + .debug_aranges + 0x0000a040 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_opvs.o) + .debug_aranges + 0x0000a060 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_handler.o) + .debug_aranges + 0x0000a088 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opvnt.o) + .debug_aranges + 0x0000a0a8 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_op.o) + .debug_aranges + 0x0000a0c8 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_catch.o) + .debug_aranges + 0x0000a108 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) + .debug_aranges + 0x0000a148 0x58 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) + .debug_aranges + 0x0000a1a0 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opv.o) + .debug_aranges + 0x0000a1c0 0x18 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_term_handler.o) + .debug_aranges + 0x0000a1d8 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_op.o) + .debug_aranges + 0x0000a1f8 0x48 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) + .debug_aranges + 0x0000a240 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(tinfo.o) + .debug_aranges + 0x0000a280 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(bad_alloc.o) + .debug_aranges + 0x0000a2b0 0x58 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) + .debug_aranges + 0x0000a308 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_ops.o) + .debug_aranges + 0x0000a328 0x78 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .debug_aranges + 0x0000a3a0 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divsf3.o) + .debug_aranges + 0x0000a3c0 0xd0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_aranges + 0x0000a490 0x4a8 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .debug_aranges + 0x0000a938 0x30 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + .debug_aranges + 0x0000a968 0x1d8 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .debug_aranges + 0x0000ab40 0x278 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .debug_aranges + 0x0000adb8 0xa8 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .debug_aranges + 0x0000ae60 0xc0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .debug_aranges + 0x0000af20 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-findfp.o) + .debug_aranges + 0x0000af40 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fopen.o) + .debug_aranges + 0x0000af60 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseek.o) + .debug_aranges + 0x0000af80 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fvwrite.o) + .debug_aranges + 0x0000afa0 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fwalk.o) + .debug_aranges + 0x0000afc0 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-printf.o) + .debug_aranges + 0x0000afe0 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-puts.o) + .debug_aranges + 0x0000b000 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-refill.o) + .debug_aranges + 0x0000b020 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-snprintf.o) + .debug_aranges + 0x0000b040 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sprintf.o) + .debug_aranges + 0x0000b060 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vprintf.o) + .debug_aranges + 0x0000b080 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vsnprintf.o) + .debug_aranges + 0x0000b0a0 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wsetup.o) + .debug_aranges + 0x0000b0c0 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseeko.o) + .debug_aranges + 0x0000b0e0 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-reent.o) + .debug_aranges + 0x0000b100 0x18 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-impure.o) + .debug_aranges + 0x0000b118 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-errno.o) + .debug_aranges + 0x0000b138 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sysgettod.o) + .debug_aranges + 0x0000b158 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) + .debug_aranges + 0x0000b178 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + .debug_aranges + 0x0000b198 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfiprintf.o) + .debug_aranges + 0x0000b1b8 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-flags.o) + .debug_aranges + 0x0000b1d8 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-makebuf.o) + .debug_aranges + 0x0000b1f8 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-locale.o) + .debug_aranges + 0x0000b218 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-localeconv.o) + .debug_aranges + 0x0000b238 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libm_a-s_frexp.o) + .debug_aranges + 0x0000b258 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) + .debug_aranges + 0x0000b278 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mbtowc_r.o) + .debug_aranges + 0x0000b298 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) + .debug_aranges + 0x0000b2b8 0x20 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiprintf.o) + +.debug_pubnames + *(.debug_pubnames) + +.debug_info 0x00000000 0x2812f3 + *(.debug_info .gnu.linkonce.wi.*) + .debug_info 0x00000000 0x3df esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_info 0x000003df 0x23a5 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_info 0x00002784 0x12d3 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_info 0x00003a57 0xbcb esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_info 0x00004622 0xadf esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_info 0x00005101 0x5cf esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_info 0x000056d0 0xe95 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_info 0x00006565 0x48a4 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_info 0x0000ae09 0x345 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_info 0x0000b14e 0xda5 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_info 0x0000bef3 0x31b esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .debug_info 0x0000c20e 0x23 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .debug_info 0x0000c231 0x24 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .debug_info 0x0000c255 0x3e1b esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_info 0x00010070 0x3ed esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_info 0x0001045d 0x3857 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_info 0x00013cb4 0x5224 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_info 0x00018ed8 0x346 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_info 0x0001921e 0x3d58 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_info 0x0001cf76 0x3adb esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_info 0x00020a51 0x2595 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_info 0x00022fe6 0x23 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .debug_info 0x00023009 0xa2a esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_info 0x00023a33 0x85a esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_info 0x0002428d 0x23 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .debug_info 0x000242b0 0x35cb esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_info 0x0002787b 0xbaa esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_info 0x00028425 0x1486 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .debug_info 0x000298ab 0x22d0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_info 0x0002bb7b 0x261b esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_info 0x0002e196 0x42b3 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .debug_info 0x00032449 0x1a20 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_info 0x00033e69 0x20d3 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_info 0x00035f3c 0xad1 esp-idf/log/liblog.a(log.c.obj) + .debug_info 0x00036a0d 0x91c esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_info 0x00037329 0x16fe esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_info 0x00038a27 0xf35 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_info 0x0003995c 0x16c8 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_info 0x0003b024 0x5d27 esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_info 0x00040d4b 0x84d esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_info 0x00041598 0x52c esp-idf/heap/libheap.a(memory_layout.c.obj) + .debug_info 0x00041ac4 0xbff esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .debug_info 0x000426c3 0x102 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_info 0x000427c5 0x713 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_info 0x00042ed8 0xa93 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_info 0x0004396b 0x2f9b esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_info 0x00046906 0x1152 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_info 0x00047a58 0x27ce esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_info 0x0004a226 0x193e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_info 0x0004bb64 0x3a7 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .debug_info 0x0004bf0b 0x53d3 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_info 0x000512de 0x24e0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_info 0x000537be 0x211e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_info 0x000558dc 0x22df esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_info 0x00057bbb 0x18b7 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_info 0x00059472 0x23f esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .debug_info 0x000596b1 0xb2c esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_info 0x0005a1dd 0x7c2 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_info 0x0005a99f 0x2fde esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_info 0x0005d97d 0x796f esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_info 0x000652ec 0x244b esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_info 0x00067737 0x24 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_info 0x0006775b 0xe0 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .debug_info 0x0006783b 0x2e8 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_info 0x00067b23 0xc71 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_info 0x00068794 0x1f4 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_info 0x00068988 0x2f4 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_info 0x00068c7c 0x2a6 esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_info 0x00068f22 0x4ca esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_info 0x000693ec 0xe6a esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_info 0x0006a256 0x1200 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_info 0x0006b456 0x203 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_info 0x0006b659 0xa38 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_info 0x0006c091 0x166c esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_info 0x0006d6fd 0xf5e esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_info 0x0006e65b 0x1421 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_info 0x0006fa7c 0x7e1 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_info 0x0007025d 0x14c3 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_info 0x00071720 0x2285 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_info 0x000739a5 0x27c esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_info 0x00073c21 0x402 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_info 0x00074023 0x2013 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_info 0x00076036 0x3e0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_info 0x00076416 0x525c esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_info 0x0007b672 0x1b92 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .debug_info 0x0007d204 0x4ac0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_info 0x00081cc4 0x1fc esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_info 0x00081ec0 0x3c77 esp-idf/main/libmain.a(mesh_main.c.obj) + .debug_info 0x00085b37 0xa29 esp-idf/main/libmain.a(mesh_light.c.obj) + .debug_info 0x00086560 0x24 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .debug_info 0x00086584 0x3b esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .debug_info 0x000865bf 0x58a esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_info 0x00086b49 0x22 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .debug_info 0x00086b6b 0x1168 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_info 0x00087cd3 0x18e1 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_info 0x000895b4 0x303d esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_info 0x0008c5f1 0x15e8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_info 0x0008dbd9 0xebe esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_info 0x0008ea97 0x3303 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_info 0x00091d9a 0x1c1 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .debug_info 0x00091f5b 0x1af esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .debug_info 0x0009210a 0x6875 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_info 0x0009897f 0x73c6 esp-idf/driver/libdriver.a(ledc.c.obj) + .debug_info 0x0009fd45 0x9412 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_info 0x000a9157 0x9f esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_info 0x000a91f6 0x4030 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_info 0x000ad226 0x1318 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_info 0x000ae53e 0x217b esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .debug_info 0x000b06b9 0xbaf esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_info 0x000b1268 0x16d esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_info 0x000b13d5 0xc31 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_info 0x000b2006 0x15dd esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_info 0x000b35e3 0x3fe esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_info 0x000b39e1 0x56ce esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_info 0x000b90af 0x4bbc esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_info 0x000bdc6b 0x12e0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_info 0x000bef4b 0xad7 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_info 0x000bfa22 0xc61 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_info 0x000c0683 0x2939 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_info 0x000c2fbc 0x102e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_info 0x000c3fea 0x1123 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_info 0x000c510d 0x1176 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_info 0x000c6283 0x15d1 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_info 0x000c7854 0x3908 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_info 0x000cb15c 0x409 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_info 0x000cb565 0x8e6 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_info 0x000cbe4b 0xfc9 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_info 0x000cce14 0x27ea esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_info 0x000cf5fe 0x3c4d esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_info 0x000d324b 0x23 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .debug_info 0x000d326e 0x162 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_info 0x000d33d0 0x148e esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_info 0x000d485e 0xa50 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .debug_info 0x000d52ae 0x33b6 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_info 0x000d8664 0x40af esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_info 0x000dc713 0x421 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_info 0x000dcb34 0x2a44 esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_info 0x000df578 0x104a esp-idf/hal/libhal.a(ledc_hal.c.obj) + .debug_info 0x000e05c2 0x15c9 esp-idf/hal/libhal.a(ledc_hal_iram.c.obj) + .debug_info 0x000e1b8b 0x251 esp-idf/soc/libsoc.a(interrupts.c.obj) + .debug_info 0x000e1ddc 0x2c3 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_info 0x000e209f 0x28d esp-idf/soc/libsoc.a(ledc_periph.c.obj) + .debug_info 0x000e232c 0x364 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .debug_info 0x000e2690 0x146 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_info 0x000e27d6 0x17b esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_info 0x000e2951 0x9ae esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .debug_info 0x000e32ff 0x676f esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_info 0x000e9a6e 0x128 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_info 0x000e9b96 0x730 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_info 0x000ea2c6 0x606 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_info 0x000ea8cc 0x571 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_info 0x000eae3d 0x88d esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_info 0x000eb6ca 0x2e90 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_info 0x000ee55a 0xd2d4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_info 0x000fb82e 0xd120 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_info 0x0010894e 0x7899 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_info 0x001101e7 0x1748 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_info 0x0011192f 0x961e esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_info 0x0011af4d 0x9cf esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .debug_info 0x0011b91c 0x3df6 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_info 0x0011f712 0x750b esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_info 0x00126c1d 0x727c esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_info 0x0012de99 0x1519 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_info 0x0012f3b2 0x2cba esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_info 0x0013206c 0x522 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_info 0x0013258e 0x7375 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_info 0x00139903 0x106d esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_info 0x0013a970 0x521 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .debug_info 0x0013ae91 0x361 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .debug_info 0x0013b1f2 0x29a9 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_info 0x0013db9b 0x22c esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_info 0x0013ddc7 0x360 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_info 0x0013e127 0x356 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_info 0x0013e47d 0x36e esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_info 0x0013e7eb 0xfe2 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_info 0x0013f7cd 0x1621 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + .debug_info 0x00140dee 0x12a6 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_info 0x00142094 0x108d esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + .debug_info 0x00143121 0xdb4 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_info 0x00143ed5 0x348 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_info 0x0014421d 0x20bb esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_info 0x001462d8 0x1e3c esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_info 0x00148114 0xb50 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_info 0x00148c64 0x324e esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_info 0x0014beb2 0x543b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_info 0x001512ed 0x2994 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .debug_info 0x00153c81 0x32bc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_info 0x00156f3d 0x21ab esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_info 0x001590e8 0xa95 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .debug_info 0x00159b7d 0x20b6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .debug_info 0x0015bc33 0x21b1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_info 0x0015dde4 0x4c9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_info 0x0015e2ad 0x245 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_info 0x0015e4f2 0x1dd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_info 0x0015e6cf 0x613 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_info 0x0015ece2 0x796 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_info 0x0015f478 0x796 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_info 0x0015fc0e 0x1278 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .debug_info 0x00160e86 0x15b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_info 0x00160fe1 0x7a3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_info 0x00161784 0x279 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_info 0x001619fd 0x14e4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_info 0x00162ee1 0x15de esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_info 0x001644bf 0xa40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .debug_info 0x00164eff 0x936 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_info 0x00165835 0x89c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_info 0x001660d1 0xa46 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_info 0x00166b17 0x170b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .debug_info 0x00168222 0x467 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .debug_info 0x00168689 0x1f25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .debug_info 0x0016a5ae 0xd97 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_info 0x0016b345 0x102c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_info 0x0016c371 0x201e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_info 0x0016e38f 0x7812 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_info 0x00175ba1 0x10d7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .debug_info 0x00176c78 0xd74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_info 0x001779ec 0x2451 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_info 0x00179e3d 0x184a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_info 0x0017b687 0x22d2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_info 0x0017d959 0x6da2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_info 0x001846fb 0x6fce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_info 0x0018b6c9 0x1e6f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_info 0x0018d538 0x1e02 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_info 0x0018f33a 0x1bcb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_info 0x00190f05 0x11a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_info 0x0019101f 0x31ba esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_info 0x001941d9 0x2133 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .debug_info 0x0019630c 0x1e29 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_info 0x00198135 0x1488 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_info 0x001995bd 0x2fab esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_info 0x0019c568 0x233 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_info 0x0019c79b 0xcde esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_info 0x0019d479 0x9ad esp-idf/hal/libhal.a(mpi_hal.c.obj) + .debug_info 0x0019de26 0x6d4 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_info 0x0019e4fa 0x4e3 esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_info 0x0019e9dd 0x164 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_info 0x0019eb41 0x294 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .debug_info 0x0019edd5 0x332 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_info 0x0019f107 0xe64 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_info 0x0019ff6b 0x109 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .debug_info 0x001a0074 0x1251 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_info 0x001a12c5 0x818 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_info 0x001a1add 0x787 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .debug_info 0x001a2264 0x17ec esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_info 0x001a3a50 0x6e3 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .debug_info 0x001a4133 0x7513 esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_info 0x001ab646 0x1781 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_info 0x001acdc7 0x451 esp-idf/lwip/liblwip.a(def.c.obj) + .debug_info 0x001ad218 0x21b0 esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_info 0x001af3c8 0x168 esp-idf/lwip/liblwip.a(init.c.obj) + .debug_info 0x001af530 0xcff esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_info 0x001b022f 0x335 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_info 0x001b0564 0xa28 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_info 0x001b0f8c 0x29ca esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_info 0x001b3956 0x2d44 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_info 0x001b669a 0x16fa esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_info 0x001b7d94 0x36d6 esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_info 0x001bb46a 0x2886 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_info 0x001bdcf0 0x2ebb esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_info 0x001c0bab 0x12f2 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_info 0x001c1e9d 0x1c0f esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_info 0x001c3aac 0x3f3f esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_info 0x001c79eb 0x1dc9 esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_info 0x001c97b4 0xf7a esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_info 0x001ca72e 0x16cb esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_info 0x001cbdf9 0x187f esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_info 0x001cd678 0xc36 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_info 0x001ce2ae 0xaf2 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_info 0x001ceda0 0x142c esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_info 0x001d01cc 0x16f7 esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_info 0x001d18c3 0x769 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_info 0x001d202c 0xb0b esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_info 0x001d2b37 0x16a3 esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_info 0x001d41da 0x3155 esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_info 0x001d732f 0xd6f esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_info 0x001d809e 0x824 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .debug_info 0x001d88c2 0xaf7 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .debug_info 0x001d93b9 0x168d esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_info 0x001daa46 0x1728 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_info 0x001dc16e 0x2d23 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_info 0x001dee91 0x2ba7 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_info 0x001e1a38 0x42cf esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_info 0x001e5d07 0x2a8 esp-idf/lwip/liblwip.a(err.c.obj) + .debug_info 0x001e5faf 0x7fa esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_info 0x001e67a9 0xac9 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_info 0x001e7272 0xddc esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_info 0x001e804e 0x31e esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .debug_info 0x001e836c 0xa64 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .debug_info 0x001e8dd0 0xb8f esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .debug_info 0x001e995f 0x412 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .debug_info 0x001e9d71 0x4bbe esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_info 0x001ee92f 0x17f4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .debug_info 0x001f0123 0x7982 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .debug_info 0x001f7aa5 0x4500 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_info 0x001fbfa5 0xe00 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .debug_info 0x001fcda5 0x31c3 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_info 0x001fff68 0x4495 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .debug_info 0x002043fd 0x1f3a esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .debug_info 0x00206337 0x10fd esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_info 0x00207434 0x74ce esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_info 0x0020e902 0x1c51 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_info 0x00210553 0x1098 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .debug_info 0x002115eb 0x2531 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .debug_info 0x00213b1c 0x2976 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .debug_info 0x00216492 0x9d0 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .debug_info 0x00216e62 0x770d esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_info 0x0021e56f 0xd9f esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .debug_info 0x0021f30e 0x1808 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_info 0x00220b16 0x3b1 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .debug_info 0x00220ec7 0x87e esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_info 0x00221745 0x74e2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_info 0x00228c27 0x14c4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_info 0x0022a0eb 0xdca esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_info 0x0022aeb5 0x1ef0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .debug_info 0x0022cda5 0x43b6 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .debug_info 0x0023115b 0x10ae esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_info 0x00232209 0x11b1 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .debug_info 0x002333ba 0xcd6 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .debug_info 0x00234090 0xe64 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .debug_info 0x00234ef4 0x1833 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_info 0x00236727 0xecd esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .debug_info 0x002375f4 0x2ce6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_info 0x0023a2da 0x846 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .debug_info 0x0023ab20 0x190e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_info 0x0023c42e 0x380f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_info 0x0023fc3d 0x1385 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_info 0x00240fc2 0x908 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_info 0x002418ca 0x83a esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_info 0x00242104 0x5d /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + .debug_info 0x00242161 0x78 /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + .debug_info 0x002421d9 0x55 /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .debug_info 0x0024222e 0x7a /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + .debug_info 0x002422a8 0x7a /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + .debug_info 0x00242322 0x84 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_opv.o) + .debug_info 0x002423a6 0x9d /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_opvs.o) + .debug_info 0x00242443 0x142 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_handler.o) + .debug_info 0x00242585 0x122 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opvnt.o) + .debug_info 0x002426a7 0x5ab /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_op.o) + .debug_info 0x00242c52 0xe0f /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_catch.o) + .debug_info 0x00243a61 0x1037 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) + .debug_info 0x00244a98 0xaf3 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) + .debug_info 0x0024558b 0xa8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opv.o) + .debug_info 0x00245633 0x8ae /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_term_handler.o) + .debug_info 0x00245ee1 0x8b7 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_op.o) + .debug_info 0x00246798 0xa2f /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) + .debug_info 0x002471c7 0x590 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(tinfo.o) + .debug_info 0x00247757 0x27d /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(bad_alloc.o) + .debug_info 0x002479d4 0xa69 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) + .debug_info 0x0024843d 0x9d /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_ops.o) + .debug_info 0x002484da 0x97e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .debug_info 0x00248e58 0x24 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divsf3.o) + .debug_info 0x00248e7c 0x1a61 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_info 0x0024a8dd 0xb6ae /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .debug_info 0x00255f8b 0x230 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + .debug_info 0x002561bb 0x5678 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .debug_info 0x0025b833 0x6676 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .debug_info 0x00261ea9 0x1459 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .debug_info 0x00263302 0x181c /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .debug_info 0x00264b1e 0x10ec /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-findfp.o) + .debug_info 0x00265c0a 0xb87 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fopen.o) + .debug_info 0x00266791 0x98f /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseek.o) + .debug_info 0x00267120 0xc60 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fvwrite.o) + .debug_info 0x00267d80 0x8be /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fwalk.o) + .debug_info 0x0026863e 0x97a /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-printf.o) + .debug_info 0x00268fb8 0xab6 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-puts.o) + .debug_info 0x00269a6e 0xa83 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-refill.o) + .debug_info 0x0026a4f1 0x9e1 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-snprintf.o) + .debug_info 0x0026aed2 0x9b2 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sprintf.o) + .debug_info 0x0026b884 0x952 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vprintf.o) + .debug_info 0x0026c1d6 0x9ab /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vsnprintf.o) + .debug_info 0x0026cb81 0x8ef /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wsetup.o) + .debug_info 0x0026d470 0xeff /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseeko.o) + .debug_info 0x0026e36f 0x981 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-reent.o) + .debug_info 0x0026ecf0 0x840 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-impure.o) + .debug_info 0x0026f530 0x834 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-errno.o) + .debug_info 0x0026fd64 0x8e5 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sysgettod.o) + .debug_info 0x00270649 0x2a39 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) + .debug_info 0x00273082 0x2d59 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + .debug_info 0x00275ddb 0x2252 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfiprintf.o) + .debug_info 0x0027802d 0x882 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-flags.o) + .debug_info 0x002788af 0xbbe /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-makebuf.o) + .debug_info 0x0027946d 0xcb4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-locale.o) + .debug_info 0x0027a121 0xbef /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-localeconv.o) + .debug_info 0x0027ad10 0x1de /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libm_a-s_frexp.o) + .debug_info 0x0027aeee 0x196b /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) + .debug_info 0x0027c859 0xbe3 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mbtowc_r.o) + .debug_info 0x0027d43c 0x1eba /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) + .debug_info 0x0027f2f6 0x1ffd /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiprintf.o) + +.debug_abbrev 0x00000000 0x51e4c + *(.debug_abbrev) + .debug_abbrev 0x00000000 0x1f5 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_abbrev 0x000001f5 0x5c6 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_abbrev 0x000007bb 0x3cf esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_abbrev 0x00000b8a 0x393 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_abbrev 0x00000f1d 0x318 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_abbrev 0x00001235 0x1cb esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_abbrev 0x00001400 0x31f esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_abbrev 0x0000171f 0x594 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_abbrev 0x00001cb3 0x1e0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_abbrev 0x00001e93 0x337 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_abbrev 0x000021ca 0x10c esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .debug_abbrev 0x000022d6 0x14 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .debug_abbrev 0x000022ea 0x14 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .debug_abbrev 0x000022fe 0x476 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_abbrev 0x00002774 0x1a1 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_abbrev 0x00002915 0x39a esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_abbrev 0x00002caf 0x5f5 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_abbrev 0x000032a4 0x14f esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_abbrev 0x000033f3 0x4c8 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_abbrev 0x000038bb 0x45e esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_abbrev 0x00003d19 0x3b4 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_abbrev 0x000040cd 0x14 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .debug_abbrev 0x000040e1 0x295 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_abbrev 0x00004376 0x27a esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_abbrev 0x000045f0 0x14 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .debug_abbrev 0x00004604 0x3e1 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_abbrev 0x000049e5 0x36d esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_abbrev 0x00004d52 0x213 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .debug_abbrev 0x00004f65 0x237 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_abbrev 0x0000519c 0x32e esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_abbrev 0x000054ca 0x405 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .debug_abbrev 0x000058cf 0x328 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_abbrev 0x00005bf7 0x21d esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_abbrev 0x00005e14 0x453 esp-idf/log/liblog.a(log.c.obj) + .debug_abbrev 0x00006267 0x2dc esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_abbrev 0x00006543 0x407 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_abbrev 0x0000694a 0x428 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_abbrev 0x00006d72 0x476 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_abbrev 0x000071e8 0x511 esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_abbrev 0x000076f9 0x337 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_abbrev 0x00007a30 0xed esp-idf/heap/libheap.a(memory_layout.c.obj) + .debug_abbrev 0x00007b1d 0x38a esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .debug_abbrev 0x00007ea7 0xa5 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_abbrev 0x00007f4c 0x254 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_abbrev 0x000081a0 0x301 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_abbrev 0x000084a1 0x678 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_abbrev 0x00008b19 0x2d8 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_abbrev 0x00008df1 0x3af esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_abbrev 0x000091a0 0x3b2 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_abbrev 0x00009552 0x1f6 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .debug_abbrev 0x00009748 0x6a5 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_abbrev 0x00009ded 0x295 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_abbrev 0x0000a082 0x403 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_abbrev 0x0000a485 0x271 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_abbrev 0x0000a6f6 0x3a7 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_abbrev 0x0000aa9d 0x12c esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .debug_abbrev 0x0000abc9 0x28b esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_abbrev 0x0000ae54 0x30f esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_abbrev 0x0000b163 0x4bb esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_abbrev 0x0000b61e 0x6ca esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_abbrev 0x0000bce8 0x61a esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_abbrev 0x0000c302 0x14 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_abbrev 0x0000c316 0xa4 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .debug_abbrev 0x0000c3ba 0x1b4 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_abbrev 0x0000c56e 0x214 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_abbrev 0x0000c782 0x17a esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_abbrev 0x0000c8fc 0x106 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_abbrev 0x0000ca02 0x1a9 esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_abbrev 0x0000cbab 0x242 esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_abbrev 0x0000cded 0x2cd esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_abbrev 0x0000d0ba 0x3f7 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_abbrev 0x0000d4b1 0x138 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_abbrev 0x0000d5e9 0x26e esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_abbrev 0x0000d857 0x2f3 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_abbrev 0x0000db4a 0x3d3 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_abbrev 0x0000df1d 0x479 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_abbrev 0x0000e396 0x1f1 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_abbrev 0x0000e587 0x59f esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_abbrev 0x0000eb26 0x5d0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_abbrev 0x0000f0f6 0x189 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_abbrev 0x0000f27f 0x178 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_abbrev 0x0000f3f7 0x52a esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_abbrev 0x0000f921 0x127 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_abbrev 0x0000fa48 0x644 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_abbrev 0x0001008c 0x2ef esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .debug_abbrev 0x0001037b 0x6de esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_abbrev 0x00010a59 0x13c esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_abbrev 0x00010b95 0x4c5 esp-idf/main/libmain.a(mesh_main.c.obj) + .debug_abbrev 0x0001105a 0x27a esp-idf/main/libmain.a(mesh_light.c.obj) + .debug_abbrev 0x000112d4 0x14 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .debug_abbrev 0x000112e8 0x28 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .debug_abbrev 0x00011310 0x287 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_abbrev 0x00011597 0x12 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .debug_abbrev 0x000115a9 0x37b esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_abbrev 0x00011924 0x46f esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_abbrev 0x00011d93 0x48f esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_abbrev 0x00012222 0x106 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_abbrev 0x00012328 0x34f esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_abbrev 0x00012677 0x5c6 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_abbrev 0x00012c3d 0xbd esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .debug_abbrev 0x00012cfa 0x14d esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .debug_abbrev 0x00012e47 0x679 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_abbrev 0x000134c0 0x698 esp-idf/driver/libdriver.a(ledc.c.obj) + .debug_abbrev 0x00013b58 0x70a esp-idf/driver/libdriver.a(uart.c.obj) + .debug_abbrev 0x00014262 0x62 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_abbrev 0x000142c4 0x555 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_abbrev 0x00014819 0x3a6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_abbrev 0x00014bbf 0x1bd esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .debug_abbrev 0x00014d7c 0x2b8 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_abbrev 0x00015034 0xe0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_abbrev 0x00015114 0x37d esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_abbrev 0x00015491 0x421 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_abbrev 0x000158b2 0x251 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_abbrev 0x00015b03 0x5eb esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_abbrev 0x000160ee 0x590 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_abbrev 0x0001667e 0x447 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_abbrev 0x00016ac5 0x281 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_abbrev 0x00016d46 0x142 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_abbrev 0x00016e88 0x550 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_abbrev 0x000173d8 0x254 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_abbrev 0x0001762c 0x20e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_abbrev 0x0001783a 0x30f esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_abbrev 0x00017b49 0x33f esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_abbrev 0x00017e88 0x441 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_abbrev 0x000182c9 0x1bc esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_abbrev 0x00018485 0x2af esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_abbrev 0x00018734 0x400 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_abbrev 0x00018b34 0x54e esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_abbrev 0x00019082 0x3e6 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_abbrev 0x00019468 0x14 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .debug_abbrev 0x0001947c 0xcc esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_abbrev 0x00019548 0x3a1 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_abbrev 0x000198e9 0x271 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .debug_abbrev 0x00019b5a 0x462 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_abbrev 0x00019fbc 0x4f3 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_abbrev 0x0001a4af 0x206 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_abbrev 0x0001a6b5 0x3e0 esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_abbrev 0x0001aa95 0x239 esp-idf/hal/libhal.a(ledc_hal.c.obj) + .debug_abbrev 0x0001acce 0x28f esp-idf/hal/libhal.a(ledc_hal_iram.c.obj) + .debug_abbrev 0x0001af5d 0x86 esp-idf/soc/libsoc.a(interrupts.c.obj) + .debug_abbrev 0x0001afe3 0x9f esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_abbrev 0x0001b082 0xac esp-idf/soc/libsoc.a(ledc_periph.c.obj) + .debug_abbrev 0x0001b12e 0xbd esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .debug_abbrev 0x0001b1eb 0xe4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_abbrev 0x0001b2cf 0x10b esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_abbrev 0x0001b3da 0x26a esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .debug_abbrev 0x0001b644 0x791 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_abbrev 0x0001bdd5 0xb0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_abbrev 0x0001be85 0x1b5 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_abbrev 0x0001c03a 0x278 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_abbrev 0x0001c2b2 0x1d9 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_abbrev 0x0001c48b 0x177 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_abbrev 0x0001c602 0x524 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_abbrev 0x0001cb26 0x107e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_abbrev 0x0001dba4 0xf6b esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_abbrev 0x0001eb0f 0xbce esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_abbrev 0x0001f6dd 0x55b esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_abbrev 0x0001fc38 0xe5e esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_abbrev 0x00020a96 0x2e0 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .debug_abbrev 0x00020d76 0x83b esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_abbrev 0x000215b1 0xcd4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_abbrev 0x00022285 0xdb2 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_abbrev 0x00023037 0x52f esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_abbrev 0x00023566 0x60c esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_abbrev 0x00023b72 0x2a9 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_abbrev 0x00023e1b 0x736 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_abbrev 0x00024551 0x1c7 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_abbrev 0x00024718 0x1fa esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .debug_abbrev 0x00024912 0x18d esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .debug_abbrev 0x00024a9f 0x4eb esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_abbrev 0x00024f8a 0x10c esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_abbrev 0x00025096 0x15f esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_abbrev 0x000251f5 0x157 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_abbrev 0x0002534c 0x1a6 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_abbrev 0x000254f2 0x386 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_abbrev 0x00025878 0x35a esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + .debug_abbrev 0x00025bd2 0x377 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_abbrev 0x00025f49 0x37f esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + .debug_abbrev 0x000262c8 0x285 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_abbrev 0x0002654d 0xfa esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_abbrev 0x00026647 0x3d0 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_abbrev 0x00026a17 0x549 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_abbrev 0x00026f60 0x284 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_abbrev 0x000271e4 0x65b esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_abbrev 0x0002783f 0x5fe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_abbrev 0x00027e3d 0x53c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .debug_abbrev 0x00028379 0x5ed esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_abbrev 0x00028966 0x44d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_abbrev 0x00028db3 0x297 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .debug_abbrev 0x0002904a 0x579 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .debug_abbrev 0x000295c3 0x3df esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_abbrev 0x000299a2 0x188 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_abbrev 0x00029b2a 0x1d2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_abbrev 0x00029cfc 0x15f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_abbrev 0x00029e5b 0x1b5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_abbrev 0x0002a010 0x1e0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_abbrev 0x0002a1f0 0x1e0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_abbrev 0x0002a3d0 0x3b7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .debug_abbrev 0x0002a787 0xf8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_abbrev 0x0002a87f 0x292 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_abbrev 0x0002ab11 0x174 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_abbrev 0x0002ac85 0x3a0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_abbrev 0x0002b025 0x435 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_abbrev 0x0002b45a 0x248 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .debug_abbrev 0x0002b6a2 0x309 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_abbrev 0x0002b9ab 0x32c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_abbrev 0x0002bcd7 0x38b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_abbrev 0x0002c062 0x4a9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .debug_abbrev 0x0002c50b 0x1e9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .debug_abbrev 0x0002c6f4 0x3d7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .debug_abbrev 0x0002cacb 0x30f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_abbrev 0x0002cdda 0x281 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_abbrev 0x0002d05b 0x4f6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_abbrev 0x0002d551 0x56b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_abbrev 0x0002dabc 0x255 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .debug_abbrev 0x0002dd11 0x311 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_abbrev 0x0002e022 0x5ae esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_abbrev 0x0002e5d0 0x43c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_abbrev 0x0002ea0c 0x45e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_abbrev 0x0002ee6a 0x51f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_abbrev 0x0002f389 0x3b6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_abbrev 0x0002f73f 0x5b0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_abbrev 0x0002fcef 0x4a5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_abbrev 0x00030194 0x31e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_abbrev 0x000304b2 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_abbrev 0x00030582 0x4fe esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_abbrev 0x00030a80 0x476 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .debug_abbrev 0x00030ef6 0x40f esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_abbrev 0x00031305 0x31d esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_abbrev 0x00031622 0x590 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_abbrev 0x00031bb2 0x140 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_abbrev 0x00031cf2 0x285 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_abbrev 0x00031f77 0x2fe esp-idf/hal/libhal.a(mpi_hal.c.obj) + .debug_abbrev 0x00032275 0x293 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_abbrev 0x00032508 0x28a esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_abbrev 0x00032792 0xe9 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_abbrev 0x0003287b 0x8c esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .debug_abbrev 0x00032907 0x1de esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_abbrev 0x00032ae5 0x3bb esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_abbrev 0x00032ea0 0xf0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .debug_abbrev 0x00032f90 0x430 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_abbrev 0x000333c0 0x2c1 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_abbrev 0x00033681 0x1d0 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .debug_abbrev 0x00033851 0x5d3 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_abbrev 0x00033e24 0x2ec esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .debug_abbrev 0x00034110 0x585 esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_abbrev 0x00034695 0x4be esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_abbrev 0x00034b53 0x15a esp-idf/lwip/liblwip.a(def.c.obj) + .debug_abbrev 0x00034cad 0x529 esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_abbrev 0x000351d6 0xbb esp-idf/lwip/liblwip.a(init.c.obj) + .debug_abbrev 0x00035291 0x245 esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_abbrev 0x000354d6 0x213 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_abbrev 0x000356e9 0x361 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_abbrev 0x00035a4a 0x58d esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_abbrev 0x00035fd7 0x5a7 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_abbrev 0x0003657e 0x402 esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_abbrev 0x00036980 0x5b3 esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_abbrev 0x00036f33 0x4ca esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_abbrev 0x000373fd 0x53f esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_abbrev 0x0003793c 0x425 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_abbrev 0x00037d61 0x454 esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_abbrev 0x000381b5 0x512 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_abbrev 0x000386c7 0x441 esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_abbrev 0x00038b08 0x343 esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_abbrev 0x00038e4b 0x4f1 esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_abbrev 0x0003933c 0x389 esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_abbrev 0x000396c5 0x2f9 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_abbrev 0x000399be 0x260 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_abbrev 0x00039c1e 0x396 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_abbrev 0x00039fb4 0x3da esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_abbrev 0x0003a38e 0x22a esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_abbrev 0x0003a5b8 0x264 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_abbrev 0x0003a81c 0x437 esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_abbrev 0x0003ac53 0x577 esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_abbrev 0x0003b1ca 0x2d9 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_abbrev 0x0003b4a3 0x210 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .debug_abbrev 0x0003b6b3 0x26c esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .debug_abbrev 0x0003b91f 0x409 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_abbrev 0x0003bd28 0x342 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_abbrev 0x0003c06a 0x556 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_abbrev 0x0003c5c0 0x4c4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_abbrev 0x0003ca84 0x5f3 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_abbrev 0x0003d077 0xaf esp-idf/lwip/liblwip.a(err.c.obj) + .debug_abbrev 0x0003d126 0x239 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_abbrev 0x0003d35f 0x25f esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_abbrev 0x0003d5be 0x23d esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_abbrev 0x0003d7fb 0xec esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .debug_abbrev 0x0003d8e7 0x1cd esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .debug_abbrev 0x0003dab4 0x2fc esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .debug_abbrev 0x0003ddb0 0x1c3 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .debug_abbrev 0x0003df73 0x5f0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_abbrev 0x0003e563 0x424 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .debug_abbrev 0x0003e987 0x882 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .debug_abbrev 0x0003f209 0x705 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_abbrev 0x0003f90e 0x276 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .debug_abbrev 0x0003fb84 0x566 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_abbrev 0x000400ea 0x54c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .debug_abbrev 0x00040636 0x4cb esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .debug_abbrev 0x00040b01 0x3d4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_abbrev 0x00040ed5 0x703 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_abbrev 0x000415d8 0x500 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_abbrev 0x00041ad8 0x475 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .debug_abbrev 0x00041f4d 0x470 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .debug_abbrev 0x000423bd 0x527 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .debug_abbrev 0x000428e4 0x255 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .debug_abbrev 0x00042b39 0x5eb esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_abbrev 0x00043124 0x28f esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .debug_abbrev 0x000433b3 0x382 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_abbrev 0x00043735 0x179 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .debug_abbrev 0x000438ae 0x289 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_abbrev 0x00043b37 0x708 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_abbrev 0x0004423f 0x442 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_abbrev 0x00044681 0x3b1 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_abbrev 0x00044a32 0x54b esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .debug_abbrev 0x00044f7d 0x7a6 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .debug_abbrev 0x00045723 0x35b esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_abbrev 0x00045a7e 0x2ad esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .debug_abbrev 0x00045d2b 0x2a7 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .debug_abbrev 0x00045fd2 0x3b9 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .debug_abbrev 0x0004638b 0x509 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_abbrev 0x00046894 0x3c5 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .debug_abbrev 0x00046c59 0x54a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_abbrev 0x000471a3 0x24b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .debug_abbrev 0x000473ee 0x35e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_abbrev 0x0004774c 0x42f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_abbrev 0x00047b7b 0x3a8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_abbrev 0x00047f23 0x25b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_abbrev 0x0004817e 0x1f9 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_abbrev 0x00048377 0x14 /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + .debug_abbrev 0x0004838b 0x14 /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + .debug_abbrev 0x0004839f 0x43 /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .debug_abbrev 0x000483e2 0x14 /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + .debug_abbrev 0x000483f6 0x14 /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + .debug_abbrev 0x0004840a 0x8b /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_opv.o) + .debug_abbrev 0x00048495 0xa5 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_opvs.o) + .debug_abbrev 0x0004853a 0x157 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_handler.o) + .debug_abbrev 0x00048691 0x125 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opvnt.o) + .debug_abbrev 0x000487b6 0x19d /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_op.o) + .debug_abbrev 0x00048953 0x4f6 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_catch.o) + .debug_abbrev 0x00048e49 0x5ac /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) + .debug_abbrev 0x000493f5 0x44e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) + .debug_abbrev 0x00049843 0xa4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opv.o) + .debug_abbrev 0x000498e7 0x343 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_term_handler.o) + .debug_abbrev 0x00049c2a 0x31b /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_op.o) + .debug_abbrev 0x00049f45 0x493 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) + .debug_abbrev 0x0004a3d8 0x314 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(tinfo.o) + .debug_abbrev 0x0004a6ec 0x1f6 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(bad_alloc.o) + .debug_abbrev 0x0004a8e2 0x47e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) + .debug_abbrev 0x0004ad60 0xa5 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_ops.o) + .debug_abbrev 0x0004ae05 0x424 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .debug_abbrev 0x0004b229 0x14 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divsf3.o) + .debug_abbrev 0x0004b23d 0x4d9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_abbrev 0x0004b716 0x54c /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .debug_abbrev 0x0004bc62 0xd4 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + .debug_abbrev 0x0004bd36 0x4b4 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .debug_abbrev 0x0004c1ea 0x4f1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .debug_abbrev 0x0004c6db 0x306 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .debug_abbrev 0x0004c9e1 0x2d4 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .debug_abbrev 0x0004ccb5 0x459 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-findfp.o) + .debug_abbrev 0x0004d10e 0x2b9 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fopen.o) + .debug_abbrev 0x0004d3c7 0x258 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseek.o) + .debug_abbrev 0x0004d61f 0x254 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fvwrite.o) + .debug_abbrev 0x0004d873 0x1c3 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fwalk.o) + .debug_abbrev 0x0004da36 0x254 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-printf.o) + .debug_abbrev 0x0004dc8a 0x2a6 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-puts.o) + .debug_abbrev 0x0004df30 0x2cd /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-refill.o) + .debug_abbrev 0x0004e1fd 0x267 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-snprintf.o) + .debug_abbrev 0x0004e464 0x255 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sprintf.o) + .debug_abbrev 0x0004e6b9 0x23c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vprintf.o) + .debug_abbrev 0x0004e8f5 0x260 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vsnprintf.o) + .debug_abbrev 0x0004eb55 0x221 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wsetup.o) + .debug_abbrev 0x0004ed76 0x30d /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseeko.o) + .debug_abbrev 0x0004f083 0x214 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-reent.o) + .debug_abbrev 0x0004f297 0x174 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-impure.o) + .debug_abbrev 0x0004f40b 0x196 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-errno.o) + .debug_abbrev 0x0004f5a1 0x1e1 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sysgettod.o) + .debug_abbrev 0x0004f782 0x47d /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) + .debug_abbrev 0x0004fbff 0x4f2 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + .debug_abbrev 0x000500f1 0x492 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfiprintf.o) + .debug_abbrev 0x00050583 0x1d8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-flags.o) + .debug_abbrev 0x0005075b 0x271 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-makebuf.o) + .debug_abbrev 0x000509cc 0x29a /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-locale.o) + .debug_abbrev 0x00050c66 0x26c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-localeconv.o) + .debug_abbrev 0x00050ed2 0x15f /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libm_a-s_frexp.o) + .debug_abbrev 0x00051031 0x336 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) + .debug_abbrev 0x00051367 0x25a /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mbtowc_r.o) + .debug_abbrev 0x000515c1 0x48e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) + .debug_abbrev 0x00051a4f 0x3fd /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiprintf.o) + +.debug_line 0x00000000 0x1cdccb + *(.debug_line) + .debug_line 0x00000000 0x513 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_line 0x00000513 0x2495 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_line 0x000029a8 0xfa8 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_line 0x00003950 0xcc5 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_line 0x00004615 0xc77 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_line 0x0000528c 0x8d8 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_line 0x00005b64 0x780 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_line 0x000062e4 0x1507 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_line 0x000077eb 0x5dc esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_line 0x00007dc7 0xcc8 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_line 0x00008a8f 0x2e5 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .debug_line 0x00008d74 0x9b esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .debug_line 0x00008e0f 0x1ab esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .debug_line 0x00008fba 0xa9e esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_line 0x00009a58 0x3fc esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_line 0x00009e54 0x7f1 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_line 0x0000a645 0xf6b esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_line 0x0000b5b0 0x3f2 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_line 0x0000b9a2 0xf86 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_line 0x0000c928 0xc41 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_line 0x0000d569 0x7f5 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_line 0x0000dd5e 0x160 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .debug_line 0x0000debe 0xad5 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_line 0x0000e993 0xb41 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_line 0x0000f4d4 0xbc esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .debug_line 0x0000f590 0x88d esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_line 0x0000fe1d 0xbe5 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_line 0x00010a02 0x33e esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .debug_line 0x00010d40 0x439 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_line 0x00011179 0x1372 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_line 0x000124eb 0x159c esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .debug_line 0x00013a87 0x999 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_line 0x00014420 0x3a8 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_line 0x000147c8 0xc13 esp-idf/log/liblog.a(log.c.obj) + .debug_line 0x000153db 0x92f esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_line 0x00015d0a 0x170b esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_line 0x00017415 0x1079 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_line 0x0001848e 0x12cf esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_line 0x0001975d 0x6b4c esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_line 0x000202a9 0x988 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_line 0x00020c31 0x283 esp-idf/heap/libheap.a(memory_layout.c.obj) + .debug_line 0x00020eb4 0x102f esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .debug_line 0x00021ee3 0x1d8 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_line 0x000220bb 0xb27 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_line 0x00022be2 0x93d esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_line 0x0002351f 0x2d87 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_line 0x000262a6 0x119c esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_line 0x00027442 0xad0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_line 0x00027f12 0xed9 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_line 0x00028deb 0x39b esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .debug_line 0x00029186 0x38b3 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_line 0x0002ca39 0x168c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_line 0x0002e0c5 0x14bd esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_line 0x0002f582 0x53a esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_line 0x0002fabc 0x8cd esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_line 0x00030389 0x2cb esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .debug_line 0x00030654 0x87e esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_line 0x00030ed2 0xa28 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_line 0x000318fa 0x30e1 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_line 0x000349db 0x85a1 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_line 0x0003cf7c 0x1873 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_line 0x0003e7ef 0x4da esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_line 0x0003ecc9 0x19e esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .debug_line 0x0003ee67 0x433 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_line 0x0003f29a 0x525 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_line 0x0003f7bf 0x44c esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_line 0x0003fc0b 0x61e esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_line 0x00040229 0x4c3 esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_line 0x000406ec 0x6a3 esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_line 0x00040d8f 0x79e esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_line 0x0004152d 0xe37 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_line 0x00042364 0x2b2 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_line 0x00042616 0x4a2 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_line 0x00042ab8 0x6bd esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_line 0x00043175 0x79a esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_line 0x0004390f 0xffa esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_line 0x00044909 0x661 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_line 0x00044f6a 0xd06 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_line 0x00045c70 0x1f30 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_line 0x00047ba0 0x51a esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_line 0x000480ba 0x388 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_line 0x00048442 0x13ae esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_line 0x000497f0 0x418 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_line 0x00049c08 0x4bea esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_line 0x0004e7f2 0xa1d esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .debug_line 0x0004f20f 0x2d5e esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_line 0x00051f6d 0x309 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_line 0x00052276 0x247b esp-idf/main/libmain.a(mesh_main.c.obj) + .debug_line 0x000546f1 0x80e esp-idf/main/libmain.a(mesh_light.c.obj) + .debug_line 0x00054eff 0x363 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .debug_line 0x00055262 0xdc esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .debug_line 0x0005533e 0x61a esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_line 0x00055958 0x968 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .debug_line 0x000562c0 0x127f esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_line 0x0005753f 0x1ba5 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_line 0x000590e4 0xe63 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_line 0x00059f47 0x20d esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_line 0x0005a154 0x1178 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_line 0x0005b2cc 0x37a4 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_line 0x0005ea70 0x291 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .debug_line 0x0005ed01 0x209 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .debug_line 0x0005ef0a 0x5ebe esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_line 0x00064dc8 0x70c8 esp-idf/driver/libdriver.a(ledc.c.obj) + .debug_line 0x0006be90 0x93f7 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_line 0x00075287 0xda esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_line 0x00075361 0x145c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_line 0x000767bd 0x21dc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_line 0x00078999 0x2a6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .debug_line 0x00078c3f 0xf9e esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_line 0x00079bdd 0x275 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_line 0x00079e52 0xc90 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_line 0x0007aae2 0x1133 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_line 0x0007bc15 0x5c1 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_line 0x0007c1d6 0x3b83 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_line 0x0007fd59 0x135d esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_line 0x000810b6 0xf09 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_line 0x00081fbf 0x59a esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_line 0x00082559 0x362 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_line 0x000828bb 0x236b esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_line 0x00084c26 0x4a3 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_line 0x000850c9 0x505 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_line 0x000855ce 0x637 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_line 0x00085c05 0xb4d esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_line 0x00086752 0xda1 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_line 0x000874f3 0x472 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_line 0x00087965 0x866 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_line 0x000881cb 0xbf8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_line 0x00088dc3 0x2a0e esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_line 0x0008b7d1 0x9f3 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_line 0x0008c1c4 0x10a esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .debug_line 0x0008c2ce 0x219 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_line 0x0008c4e7 0x167c esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_line 0x0008db63 0xab3 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .debug_line 0x0008e616 0x859 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_line 0x0008ee6f 0x1ae6 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_line 0x00090955 0x570 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_line 0x00090ec5 0x167e esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_line 0x00092543 0x396 esp-idf/hal/libhal.a(ledc_hal.c.obj) + .debug_line 0x000928d9 0x72b esp-idf/hal/libhal.a(ledc_hal_iram.c.obj) + .debug_line 0x00093004 0xa8 esp-idf/soc/libsoc.a(interrupts.c.obj) + .debug_line 0x000930ac 0x1f4 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_line 0x000932a0 0x1f4 esp-idf/soc/libsoc.a(ledc_periph.c.obj) + .debug_line 0x00093494 0x1f8 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .debug_line 0x0009368c 0x213 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_line 0x0009389f 0x1e8 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_line 0x00093a87 0x8d2 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .debug_line 0x00094359 0x3f1b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_line 0x00098274 0x21f esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_line 0x00098493 0x7ac esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_line 0x00098c3f 0x86a esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_line 0x000994a9 0x471 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_line 0x0009991a 0x701 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_line 0x0009a01b 0x2c52 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_line 0x0009cc6d 0x354d esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_line 0x000a01ba 0x4599 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_line 0x000a4753 0x1363 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_line 0x000a5ab6 0x9f6 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_line 0x000a64ac 0x1c24 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_line 0x000a80d0 0x4ff esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .debug_line 0x000a85cf 0x1127 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_line 0x000a96f6 0x40cf esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_line 0x000ad7c5 0x1d82 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_line 0x000af547 0x882 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_line 0x000afdc9 0x99f esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_line 0x000b0768 0x86a esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_line 0x000b0fd2 0x71b1 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_line 0x000b8183 0x5aa esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_line 0x000b872d 0x678 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .debug_line 0x000b8da5 0x4db esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .debug_line 0x000b9280 0x17d4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_line 0x000baa54 0x4cf esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_line 0x000baf23 0x473 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_line 0x000bb396 0x501 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_line 0x000bb897 0x4aa esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_line 0x000bbd41 0x13b6 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_line 0x000bd0f7 0x1106 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + .debug_line 0x000be1fd 0x1bc2 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_line 0x000bfdbf 0xc9f esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + .debug_line 0x000c0a5e 0xc38 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_line 0x000c1696 0x389 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_line 0x000c1a1f 0xe5b esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_line 0x000c287a 0x177e esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_line 0x000c3ff8 0xa64 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_line 0x000c4a5c 0x19fe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_line 0x000c645a 0x5c2f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_line 0x000cc089 0x2939 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .debug_line 0x000ce9c2 0x2d81 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_line 0x000d1743 0xb7d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_line 0x000d22c0 0x9f3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .debug_line 0x000d2cb3 0x17d1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .debug_line 0x000d4484 0x18bb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_line 0x000d5d3f 0x555 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_line 0x000d6294 0x2e5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_line 0x000d6579 0x26a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_line 0x000d67e3 0x5f3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_line 0x000d6dd6 0x773 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_line 0x000d7549 0x773 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_line 0x000d7cbc 0x1acd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .debug_line 0x000d9789 0x2ae esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_line 0x000d9a37 0xa62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_line 0x000da499 0x437 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_line 0x000da8d0 0x19fb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_line 0x000dc2cb 0x12c4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_line 0x000dd58f 0x8e3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .debug_line 0x000dde72 0x21a0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_line 0x000e0012 0x1118 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_line 0x000e112a 0x15c8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_line 0x000e26f2 0x1850 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .debug_line 0x000e3f42 0x4f1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .debug_line 0x000e4433 0x2215 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .debug_line 0x000e6648 0x11c5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_line 0x000e780d 0x1267 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_line 0x000e8a74 0x1991 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_line 0x000ea405 0x63b8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_line 0x000f07bd 0xff3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .debug_line 0x000f17b0 0x978 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_line 0x000f2128 0x18bc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_line 0x000f39e4 0xd4a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_line 0x000f472e 0x1496 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_line 0x000f5bc4 0x5873 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_line 0x000fb437 0x4629 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_line 0x000ffa60 0x1361 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_line 0x00100dc1 0x1284 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_line 0x00102045 0x19ad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_line 0x001039f2 0x18e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_line 0x00103b80 0x38c1 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_line 0x00107441 0x1c93 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .debug_line 0x001090d4 0x1679 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_line 0x0010a74d 0xd27 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_line 0x0010b474 0x2ac0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_line 0x0010df34 0x2c9 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_line 0x0010e1fd 0xade esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_line 0x0010ecdb 0x901 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .debug_line 0x0010f5dc 0x7db esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_line 0x0010fdb7 0x57b esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_line 0x00110332 0x26b esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_line 0x0011059d 0x1f2 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .debug_line 0x0011078f 0x552 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_line 0x00110ce1 0x118f esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_line 0x00111e70 0x17d esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .debug_line 0x00111fed 0x13f2 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_line 0x001133df 0x747 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_line 0x00113b26 0xac9 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .debug_line 0x001145ef 0x186b esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_line 0x00115e5a 0x692 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .debug_line 0x001164ec 0x8ba0 esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_line 0x0011f08c 0xf93 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_line 0x0012001f 0x7cf esp-idf/lwip/liblwip.a(def.c.obj) + .debug_line 0x001207ee 0x2e08 esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_line 0x001235f6 0x281 esp-idf/lwip/liblwip.a(init.c.obj) + .debug_line 0x00123877 0x5de esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_line 0x00123e55 0x4d1 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_line 0x00124326 0x724 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_line 0x00124a4a 0x365e esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_line 0x001280a8 0x29e4 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_line 0x0012aa8c 0x1b5c esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_line 0x0012c5e8 0x4e0c esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_line 0x001313f4 0x45f2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_line 0x001359e6 0x34e1 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_line 0x00138ec7 0xcc3 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_line 0x00139b8a 0x2a80 esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_line 0x0013c60a 0x44e0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_line 0x00140aea 0x1d5c esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_line 0x00142846 0xa5a esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_line 0x001432a0 0x1699 esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_line 0x00144939 0x1542 esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_line 0x00145e7b 0xc84 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_line 0x00146aff 0x76b esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_line 0x0014726a 0xa32 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_line 0x00147c9c 0x212a esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_line 0x00149dc6 0xe76 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_line 0x0014ac3c 0x74d esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_line 0x0014b389 0x144e esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_line 0x0014c7d7 0x4d53 esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_line 0x0015152a 0x790 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_line 0x00151cba 0x5bd esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .debug_line 0x00152277 0x7d3 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .debug_line 0x00152a4a 0x14a6 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_line 0x00153ef0 0x806 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_line 0x001546f6 0x2bd8 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_line 0x001572ce 0x2af9 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_line 0x00159dc7 0x46c9 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_line 0x0015e490 0x2bf esp-idf/lwip/liblwip.a(err.c.obj) + .debug_line 0x0015e74f 0x964 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_line 0x0015f0b3 0xf04 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_line 0x0015ffb7 0xaa5 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_line 0x00160a5c 0x1e5 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .debug_line 0x00160c41 0x3eb esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .debug_line 0x0016102c 0x88a esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .debug_line 0x001618b6 0x40a esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .debug_line 0x00161cc0 0x15c2 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_line 0x00163282 0xa08 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .debug_line 0x00163c8a 0x5327 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .debug_line 0x00168fb1 0x1f3b esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_line 0x0016aeec 0x56a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .debug_line 0x0016b456 0x120d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_line 0x0016c663 0x2e5e esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .debug_line 0x0016f4c1 0x14db esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .debug_line 0x0017099c 0xd6a esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_line 0x00171706 0x57cc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_line 0x00176ed2 0x20c7 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_line 0x00178f99 0x1068 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .debug_line 0x0017a001 0xb7e esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .debug_line 0x0017ab7f 0x1d30 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .debug_line 0x0017c8af 0xa05 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .debug_line 0x0017d2b4 0x6294 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_line 0x00183548 0xb5b esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .debug_line 0x001840a3 0x270c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_line 0x001867af 0x577 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .debug_line 0x00186d26 0x882 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_line 0x001875a8 0x5c64 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_line 0x0018d20c 0x1731 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_line 0x0018e93d 0xea0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_line 0x0018f7dd 0x1e7d esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .debug_line 0x0019165a 0x2e3d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .debug_line 0x00194497 0xa88 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_line 0x00194f1f 0xe02 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .debug_line 0x00195d21 0xc65 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .debug_line 0x00196986 0x10cb esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .debug_line 0x00197a51 0x14f0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_line 0x00198f41 0xb26 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .debug_line 0x00199a67 0x25ce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_line 0x0019c035 0x4f6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .debug_line 0x0019c52b 0xe11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_line 0x0019d33c 0x26c4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_line 0x0019fa00 0x128b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_line 0x001a0c8b 0xea2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_line 0x001a1b2d 0x533 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_line 0x001a2060 0x2ef /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + .debug_line 0x001a234f 0x6a /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + .debug_line 0x001a23b9 0x50 /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .debug_line 0x001a2409 0x66 /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + .debug_line 0x001a246f 0x66 /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + .debug_line 0x001a24d5 0x83 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_opv.o) + .debug_line 0x001a2558 0x83 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_opvs.o) + .debug_line 0x001a25db 0xdc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_handler.o) + .debug_line 0x001a26b7 0xb7 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opvnt.o) + .debug_line 0x001a276e 0x99 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_op.o) + .debug_line 0x001a2807 0x496 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_catch.o) + .debug_line 0x001a2c9d 0x408 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) + .debug_line 0x001a30a5 0x2c9 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) + .debug_line 0x001a336e 0x89 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opv.o) + .debug_line 0x001a33f7 0x8a /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_term_handler.o) + .debug_line 0x001a3481 0x161 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_op.o) + .debug_line 0x001a35e2 0x3ca /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) + .debug_line 0x001a39ac 0x1e9 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(tinfo.o) + .debug_line 0x001a3b95 0xec /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(bad_alloc.o) + .debug_line 0x001a3c81 0x481 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) + .debug_line 0x001a4102 0x83 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_ops.o) + .debug_line 0x001a4185 0x285 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .debug_line 0x001a440a 0xf9 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divsf3.o) + .debug_line 0x001a4503 0x71c esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_line 0x001a4c1f 0x51d8 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .debug_line 0x001a9df7 0xb1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + .debug_line 0x001a9ea8 0x2b41 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .debug_line 0x001ac9e9 0x26a1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .debug_line 0x001af08a 0x822 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .debug_line 0x001af8ac 0xdba /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .debug_line 0x001b0666 0x817 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-findfp.o) + .debug_line 0x001b0e7d 0x2d2 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fopen.o) + .debug_line 0x001b114f 0xf5 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseek.o) + .debug_line 0x001b1244 0x8f3 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fvwrite.o) + .debug_line 0x001b1b37 0x14e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fwalk.o) + .debug_line 0x001b1c85 0x19e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-printf.o) + .debug_line 0x001b1e23 0x27d /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-puts.o) + .debug_line 0x001b20a0 0x410 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-refill.o) + .debug_line 0x001b24b0 0x363 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-snprintf.o) + .debug_line 0x001b2813 0x23e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sprintf.o) + .debug_line 0x001b2a51 0x10a /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vprintf.o) + .debug_line 0x001b2b5b 0x21d /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vsnprintf.o) + .debug_line 0x001b2d78 0x28c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wsetup.o) + .debug_line 0x001b3004 0x95f /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseeko.o) + .debug_line 0x001b3963 0x2c6 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-reent.o) + .debug_line 0x001b3c29 0x51 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-impure.o) + .debug_line 0x001b3c7a 0x86 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-errno.o) + .debug_line 0x001b3d00 0xb5 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sysgettod.o) + .debug_line 0x001b3db5 0x5f5e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) + .debug_line 0x001b9d13 0x628e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + .debug_line 0x001bffa1 0x4510 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfiprintf.o) + .debug_line 0x001c44b1 0x1c3 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-flags.o) + .debug_line 0x001c4674 0x36b /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-makebuf.o) + .debug_line 0x001c49df 0x191 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-locale.o) + .debug_line 0x001c4b70 0x180 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-localeconv.o) + .debug_line 0x001c4cf0 0x1d7 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libm_a-s_frexp.o) + .debug_line 0x001c4ec7 0x2318 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) + .debug_line 0x001c71df 0x1a9 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mbtowc_r.o) + .debug_line 0x001c7388 0x2469 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) + .debug_line 0x001c97f1 0x44da /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiprintf.o) + +.debug_frame 0x00000000 0x1c500 + *(.debug_frame) + .debug_frame 0x00000000 0x58 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_frame 0x00000058 0x3a0 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_frame 0x000003f8 0x160 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_frame 0x00000558 0xd0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_frame 0x00000628 0xe8 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_frame 0x00000710 0xd0 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_frame 0x000007e0 0x1f0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_frame 0x000009d0 0x88 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_frame 0x00000a58 0xa0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_frame 0x00000af8 0xe8 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_frame 0x00000be0 0x40 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .debug_frame 0x00000c20 0x88 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_frame 0x00000ca8 0x40 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_frame 0x00000ce8 0x58 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_frame 0x00000d40 0x118 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_frame 0x00000e58 0x58 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_frame 0x00000eb0 0xa0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_frame 0x00000f50 0xb8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_frame 0x00001008 0x58 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_frame 0x00001060 0xe8 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_frame 0x00001148 0x88 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_frame 0x000011d0 0x40 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_frame 0x00001210 0x100 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_frame 0x00001310 0x28 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .debug_frame 0x00001338 0xa0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_frame 0x000013d8 0xd0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_frame 0x000014a8 0x118 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .debug_frame 0x000015c0 0x88 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_frame 0x00001648 0x28 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_frame 0x00001670 0xd0 esp-idf/log/liblog.a(log.c.obj) + .debug_frame 0x00001740 0xa0 esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_frame 0x000017e0 0x298 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_frame 0x00001a78 0xa0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_frame 0x00001b18 0x238 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_frame 0x00001d50 0x250 esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_frame 0x00001fa0 0x58 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_frame 0x00001ff8 0x88 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .debug_frame 0x00002080 0x40 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_frame 0x000020c0 0xe8 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_frame 0x000021a8 0x100 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_frame 0x000022a8 0x238 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_frame 0x000024e0 0x190 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_frame 0x00002670 0x88 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_frame 0x000026f8 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_frame 0x00002768 0xe8 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .debug_frame 0x00002850 0x310 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_frame 0x00002b60 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_frame 0x00002bb8 0xe8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_frame 0x00002ca0 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_frame 0x00002cc8 0x118 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_frame 0x00002de0 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .debug_frame 0x00002e08 0xd0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_frame 0x00002ed8 0x70 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_frame 0x00002f48 0x358 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_frame 0x000032a0 0x790 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_frame 0x00003a30 0x178 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_frame 0x00003ba8 0x40 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .debug_frame 0x00003be8 0xb8 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_frame 0x00003ca0 0x40 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_frame 0x00003ce0 0x40 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_frame 0x00003d20 0x88 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_frame 0x00003da8 0x28 esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_frame 0x00003dd0 0x58 esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_frame 0x00003e28 0x1a8 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_frame 0x00003fd0 0x250 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_frame 0x00004220 0x70 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_frame 0x00004290 0x40 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_frame 0x000042d0 0x70 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_frame 0x00004340 0xe8 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_frame 0x00004428 0x130 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_frame 0x00004558 0xb8 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_frame 0x00004610 0x88 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_frame 0x00004698 0x238 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_frame 0x000048d0 0x58 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_frame 0x00004928 0x70 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_frame 0x00004998 0x118 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_frame 0x00004ab0 0xb8 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_frame 0x00004b68 0x568 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_frame 0x000050d0 0x190 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .debug_frame 0x00005260 0x2c8 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_frame 0x00005528 0x40 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_frame 0x00005568 0xa0 esp-idf/main/libmain.a(mesh_main.c.obj) + .debug_frame 0x00005608 0x88 esp-idf/main/libmain.a(mesh_light.c.obj) + .debug_frame 0x00005690 0x70 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_frame 0x00005700 0x178 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_frame 0x00005878 0x1c0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_frame 0x00005a38 0x178 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_frame 0x00005bb0 0x88 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_frame 0x00005c38 0x190 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_frame 0x00005dc8 0x58 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .debug_frame 0x00005e20 0x460 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_frame 0x00006280 0x478 esp-idf/driver/libdriver.a(ledc.c.obj) + .debug_frame 0x000066f8 0x628 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_frame 0x00006d20 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_frame 0x00006d48 0x1d8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_frame 0x00006f20 0xe8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_frame 0x00007008 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .debug_frame 0x00007048 0xa0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_frame 0x000070e8 0x58 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_frame 0x00007140 0x160 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_frame 0x000072a0 0x130 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_frame 0x000073d0 0xa0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_frame 0x00007470 0x2f8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_frame 0x00007768 0xd0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_frame 0x00007838 0x1f0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_frame 0x00007a28 0x88 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_frame 0x00007ab0 0x2f8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_frame 0x00007da8 0x70 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_frame 0x00007e18 0x58 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_frame 0x00007e70 0xa0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_frame 0x00007f10 0xa0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_frame 0x00007fb0 0x130 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_frame 0x000080e0 0x58 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_frame 0x00008138 0xd0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_frame 0x00008208 0xa0 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_frame 0x000082a8 0x238 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_frame 0x000084e0 0xb8 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_frame 0x00008598 0x40 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_frame 0x000085d8 0x100 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_frame 0x000086d8 0xa0 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .debug_frame 0x00008778 0x70 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_frame 0x000087e8 0x190 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_frame 0x00008978 0xa0 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_frame 0x00008a18 0x280 esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_frame 0x00008c98 0x40 esp-idf/hal/libhal.a(ledc_hal.c.obj) + .debug_frame 0x00008cd8 0xd0 esp-idf/hal/libhal.a(ledc_hal_iram.c.obj) + .debug_frame 0x00008da8 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_frame 0x00008e00 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_frame 0x00008e28 0xa0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .debug_frame 0x00008ec8 0x448 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_frame 0x00009310 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_frame 0x00009350 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_frame 0x00009378 0x88 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_frame 0x00009400 0x40 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_frame 0x00009440 0xd0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_frame 0x00009510 0x1c0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_frame 0x000096d0 0x550 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_frame 0x00009c20 0x2e0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_frame 0x00009f00 0x220 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_frame 0x0000a120 0x130 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_frame 0x0000a250 0x148 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_frame 0x0000a398 0x70 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .debug_frame 0x0000a408 0xd0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_frame 0x0000a4d8 0x340 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_frame 0x0000a818 0xb8 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_frame 0x0000a8d0 0x40 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_frame 0x0000a910 0x58 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_frame 0x0000a968 0xb8 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_frame 0x0000aa20 0xad8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_frame 0x0000b4f8 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_frame 0x0000b598 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .debug_frame 0x0000b5d8 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .debug_frame 0x0000b600 0x370 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_frame 0x0000b970 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_frame 0x0000b998 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_frame 0x0000b9c0 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_frame 0x0000b9e8 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_frame 0x0000ba70 0xb8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_frame 0x0000bb28 0x160 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + .debug_frame 0x0000bc88 0x280 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_frame 0x0000bf08 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + .debug_frame 0x0000bf48 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_frame 0x0000bfe8 0x28 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_frame 0x0000c010 0xe8 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_frame 0x0000c0f8 0x220 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_frame 0x0000c318 0x118 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_frame 0x0000c430 0x6a0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_frame 0x0000cad0 0x4d8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_frame 0x0000cfa8 0x2f8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .debug_frame 0x0000d2a0 0x2f8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_frame 0x0000d598 0x2e0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_frame 0x0000d878 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .debug_frame 0x0000d900 0x118 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .debug_frame 0x0000da18 0x220 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_frame 0x0000dc38 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_frame 0x0000dc78 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_frame 0x0000dd00 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_frame 0x0000dd40 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_frame 0x0000dd80 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_frame 0x0000ddf0 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_frame 0x0000de60 0x118 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .debug_frame 0x0000df78 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_frame 0x0000dfb8 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_frame 0x0000e058 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_frame 0x0000e0c8 0x148 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_frame 0x0000e210 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_frame 0x0000e2e0 0xe8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .debug_frame 0x0000e3c8 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_frame 0x0000e498 0xe8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_frame 0x0000e580 0xe8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_frame 0x0000e668 0x118 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .debug_frame 0x0000e780 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .debug_frame 0x0000e838 0x148 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .debug_frame 0x0000e980 0x1c0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_frame 0x0000eb40 0x208 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_frame 0x0000ed48 0x190 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_frame 0x0000eed8 0x4d8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_frame 0x0000f3b0 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .debug_frame 0x0000f438 0xe8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_frame 0x0000f520 0x1f0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_frame 0x0000f710 0x148 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_frame 0x0000f858 0x190 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_frame 0x0000f9e8 0x640 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_frame 0x00010028 0x178 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_frame 0x000101a0 0x178 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_frame 0x00010318 0x1a8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_frame 0x000104c0 0x238 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_frame 0x000106f8 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_frame 0x00010720 0x430 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_frame 0x00010b50 0x208 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .debug_frame 0x00010d58 0x100 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_frame 0x00010e58 0x118 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_frame 0x00010f70 0x250 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_frame 0x000111c0 0x28 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_frame 0x000111e8 0xb8 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_frame 0x000112a0 0x148 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .debug_frame 0x000113e8 0x58 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_frame 0x00011440 0x40 esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_frame 0x00011480 0x28 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_frame 0x000114a8 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_frame 0x000114e8 0x130 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_frame 0x00011618 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .debug_frame 0x00011658 0x118 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_frame 0x00011770 0xb8 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_frame 0x00011828 0x148 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .debug_frame 0x00011970 0x1d8 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_frame 0x00011b48 0xe8 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .debug_frame 0x00011c30 0x520 esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_frame 0x00012150 0x178 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_frame 0x000122c8 0xa0 esp-idf/lwip/liblwip.a(def.c.obj) + .debug_frame 0x00012368 0x160 esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_frame 0x000124c8 0x28 esp-idf/lwip/liblwip.a(init.c.obj) + .debug_frame 0x000124f0 0x70 esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_frame 0x00012560 0x88 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_frame 0x000125e8 0xd0 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_frame 0x000126b8 0x388 esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_frame 0x00012a40 0x340 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_frame 0x00012d80 0x148 esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_frame 0x00012ec8 0x4a8 esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_frame 0x00013370 0xd0 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_frame 0x00013440 0x208 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_frame 0x00013648 0x118 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_frame 0x00013760 0x190 esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_frame 0x000138f0 0x2f8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_frame 0x00013be8 0x178 esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_frame 0x00013d60 0x40 esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_frame 0x00013da0 0x190 esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_frame 0x00013f30 0x100 esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_frame 0x00014030 0xa0 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_frame 0x000140d0 0x28 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_frame 0x000140f8 0xd0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_frame 0x000141c8 0xd0 esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_frame 0x00014298 0x58 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_frame 0x000142f0 0x28 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_frame 0x00014318 0x130 esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_frame 0x00014448 0x208 esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_frame 0x00014650 0x40 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_frame 0x00014690 0x40 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .debug_frame 0x000146d0 0x70 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .debug_frame 0x00014740 0x2c8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_frame 0x00014a08 0xb8 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_frame 0x00014ac0 0x1a8 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_frame 0x00014c68 0x310 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_frame 0x00014f78 0x358 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_frame 0x000152d0 0x28 esp-idf/lwip/liblwip.a(err.c.obj) + .debug_frame 0x000152f8 0xe8 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_frame 0x000153e0 0x118 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_frame 0x000154f8 0xe8 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_frame 0x000155e0 0xa0 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .debug_frame 0x00015680 0x40 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .debug_frame 0x000156c0 0x220 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_frame 0x000158e0 0x118 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .debug_frame 0x000159f8 0x568 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .debug_frame 0x00015f60 0x130 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_frame 0x00016090 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .debug_frame 0x000160e8 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_frame 0x00016188 0x580 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .debug_frame 0x00016708 0x148 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .debug_frame 0x00016850 0x130 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_frame 0x00016980 0x430 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_frame 0x00016db0 0xd0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_frame 0x00016e80 0x130 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .debug_frame 0x00016fb0 0xe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .debug_frame 0x00017098 0xd0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .debug_frame 0x00017168 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .debug_frame 0x000171c0 0x358 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_frame 0x00017518 0xb8 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .debug_frame 0x000175d0 0x250 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_frame 0x00017820 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .debug_frame 0x00017848 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_frame 0x000178a0 0x478 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_frame 0x00017d18 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_frame 0x00017da0 0x130 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_frame 0x00017ed0 0x118 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .debug_frame 0x00017fe8 0x370 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .debug_frame 0x00018358 0x118 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_frame 0x00018470 0x268 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .debug_frame 0x000186d8 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .debug_frame 0x00018748 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .debug_frame 0x00018848 0x148 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_frame 0x00018990 0x208 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .debug_frame 0x00018b98 0x298 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_frame 0x00018e30 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .debug_frame 0x00018eb8 0x298 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_frame 0x00019150 0x130 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_frame 0x00019280 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_frame 0x00019308 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_frame 0x000193a8 0x28 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_frame 0x000193d0 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_opv.o) + .debug_frame 0x000193f8 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_opvs.o) + .debug_frame 0x00019420 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_handler.o) + .debug_frame 0x00019460 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opvnt.o) + .debug_frame 0x00019488 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_op.o) + .debug_frame 0x000194b0 0x88 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_catch.o) + .debug_frame 0x00019538 0x88 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) + .debug_frame 0x000195c0 0xd0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) + .debug_frame 0x00019690 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opv.o) + .debug_frame 0x000196b8 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_op.o) + .debug_frame 0x000196e0 0xa0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) + .debug_frame 0x00019780 0x88 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(tinfo.o) + .debug_frame 0x00019808 0x58 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(bad_alloc.o) + .debug_frame 0x00019860 0xd0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) + .debug_frame 0x00019930 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_ops.o) + .debug_frame 0x00019958 0x130 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .debug_frame 0x00019a88 0x238 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_frame 0x00019cc0 0xdd8 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .debug_frame 0x0001aa98 0x58 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + .debug_frame 0x0001aaf0 0x550 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .debug_frame 0x0001b040 0x730 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .debug_frame 0x0001b770 0x1c0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .debug_frame 0x0001b930 0x208 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .debug_frame 0x0001bb38 0x130 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-findfp.o) + .debug_frame 0x0001bc68 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fopen.o) + .debug_frame 0x0001bca8 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseek.o) + .debug_frame 0x0001bce8 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fvwrite.o) + .debug_frame 0x0001bd10 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fwalk.o) + .debug_frame 0x0001bd38 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-printf.o) + .debug_frame 0x0001bd78 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-puts.o) + .debug_frame 0x0001bdb8 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-refill.o) + .debug_frame 0x0001bdf8 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-snprintf.o) + .debug_frame 0x0001be38 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sprintf.o) + .debug_frame 0x0001be78 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vprintf.o) + .debug_frame 0x0001beb8 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vsnprintf.o) + .debug_frame 0x0001bef8 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wsetup.o) + .debug_frame 0x0001bf20 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseeko.o) + .debug_frame 0x0001bf60 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-reent.o) + .debug_frame 0x0001bf88 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-errno.o) + .debug_frame 0x0001bfb0 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sysgettod.o) + .debug_frame 0x0001bfd8 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) + .debug_frame 0x0001c018 0x70 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + .debug_frame 0x0001c088 0x88 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfiprintf.o) + .debug_frame 0x0001c110 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-flags.o) + .debug_frame 0x0001c138 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-makebuf.o) + .debug_frame 0x0001c178 0x58 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-locale.o) + .debug_frame 0x0001c1d0 0x58 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-localeconv.o) + .debug_frame 0x0001c228 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libm_a-s_frexp.o) + .debug_frame 0x0001c250 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) + .debug_frame 0x0001c290 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mbtowc_r.o) + .debug_frame 0x0001c2d0 0x1d8 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) + .debug_frame 0x0001c4a8 0x58 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiprintf.o) + +.debug_str 0x00000000 0x5c3ce + *(.debug_str) + .debug_str 0x00000000 0x5c3ce esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0x3b7 (size before relaxing) + .debug_str 0x0005c3ce 0x1416 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_str 0x0005c3ce 0xf5d esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_str 0x0005c3ce 0xc03 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_str 0x0005c3ce 0x666 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_str 0x0005c3ce 0x477 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_str 0x0005c3ce 0x73a esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_str 0x0005c3ce 0x304f esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_str 0x0005c3ce 0x442 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_str 0x0005c3ce 0xcf5 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_str 0x0005c3ce 0x978 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .debug_str 0x0005c3ce 0xb3 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .debug_str 0x0005c3ce 0xa8 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .debug_str 0x0005c3ce 0x32ff esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_str 0x0005c3ce 0x9ba esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_str 0x0005c3ce 0x2bde esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_str 0x0005c3ce 0x31ff esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_str 0x0005c3ce 0x961 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_str 0x0005c3ce 0x2c6e esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_str 0x0005c3ce 0x2a76 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_str 0x0005c3ce 0x2007 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_str 0x0005c3ce 0xb2 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .debug_str 0x0005c3ce 0x592 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_str 0x0005c3ce 0x458 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_str 0x0005c3ce 0xb0 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .debug_str 0x0005c3ce 0x2146 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_str 0x0005c3ce 0xb9d esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_str 0x0005c3ce 0x947 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .debug_str 0x0005c3ce 0x182f esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_str 0x0005c3ce 0x1932 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_str 0x0005c3ce 0x2464 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .debug_str 0x0005c3ce 0xa7a esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_str 0x0005c3ce 0x169a esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_str 0x0005c3ce 0x62e esp-idf/log/liblog.a(log.c.obj) + .debug_str 0x0005c3ce 0xc22 esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_str 0x0005c3ce 0xf44 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_str 0x0005c3ce 0xdaf esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_str 0x0005c3ce 0x968 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_str 0x0005c3ce 0x9fb esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_str 0x0005c3ce 0xbb2 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_str 0x0005c3ce 0xbda esp-idf/heap/libheap.a(memory_layout.c.obj) + .debug_str 0x0005c3ce 0x59f esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .debug_str 0x0005c3ce 0x2a1 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_str 0x0005c3ce 0x527 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_str 0x0005c3ce 0x1092 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_str 0x0005c3ce 0x1612 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_str 0x0005c3ce 0xf60 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_str 0x0005c3ce 0x1f23 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_str 0x0005c3ce 0x16eb esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_str 0x0005c3ce 0x5ac esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .debug_str 0x0005c3ce 0x31f0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_str 0x0005c3ce 0x183d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_str 0x0005c3ce 0x1e46 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_str 0x0005c3ce 0x17c1 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_str 0x0005c3ce 0x172a esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_str 0x0005c3ce 0x366 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .debug_str 0x0005c3ce 0xbd2 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_str 0x0005c3ce 0x5f6 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_str 0x0005c3ce 0xe5a esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_str 0x0005c3ce 0x2651 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_str 0x0005c3ce 0x164e esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_str 0x0005c3ce 0xb3 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_str 0x0005c3ce 0x2be esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .debug_str 0x0005c3ce 0x3b1 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_str 0x0005c3ce 0x854 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_str 0x0005c3ce 0x36c esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_str 0x0005c3ce 0x3b4 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_str 0x0005c3ce 0x2e6 esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_str 0x0005c3ce 0x36e esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_str 0x0005c3ce 0x808 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_str 0x0005c3ce 0xfbc esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_str 0x0005c3ce 0x329 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_str 0x0005c3ce 0x6a1 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_str 0x0005c3ce 0xad0 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_str 0x0005c3ce 0x8f6 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_str 0x0005c3ce 0x112e esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_str 0x0005c3ce 0xf56 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_str 0x0005c3ce 0x1238 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_str 0x0005c3ce 0x14e0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_str 0x0005c3ce 0x428 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_str 0x0005c3ce 0xa13 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_str 0x0005c3ce 0x1a38 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_str 0x0005c3ce 0xa77 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_str 0x0005c3ce 0x13ce esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_str 0x0005c3ce 0x10f5 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .debug_str 0x0005c3ce 0x1fd2 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_str 0x0005c3ce 0x361 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_str 0x0005c3ce 0x29a8 esp-idf/main/libmain.a(mesh_main.c.obj) + .debug_str 0x0005c3ce 0x100e esp-idf/main/libmain.a(mesh_light.c.obj) + .debug_str 0x0005c3ce 0x98 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .debug_str 0x0005c3ce 0xb0 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .debug_str 0x0005c3ce 0x3f2 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_str 0x0005c3ce 0x98 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .debug_str 0x0005c3ce 0xe81 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_str 0x0005c3ce 0x1124 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_str 0x0005c3ce 0x2355 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_str 0x0005c3ce 0x15b5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_str 0x0005c3ce 0xe4c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_str 0x0005c3ce 0x169c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_str 0x0005c3ce 0x3ba esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .debug_str 0x0005c3ce 0x328 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .debug_str 0x0005c3ce 0x2270 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_str 0x0005c3ce 0x282c esp-idf/driver/libdriver.a(ledc.c.obj) + .debug_str 0x0005c3ce 0x381a esp-idf/driver/libdriver.a(uart.c.obj) + .debug_str 0x0005c3ce 0x2a1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_str 0x0005c3ce 0x2bf4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_str 0x0005c3ce 0x13f8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_str 0x0005c3ce 0x16cd esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .debug_str 0x0005c3ce 0xe67 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_str 0x0005c3ce 0x358 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_str 0x0005c3ce 0x811 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_str 0x0005c3ce 0xb71 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_str 0x0005c3ce 0x603 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_str 0x0005c3ce 0x2f85 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_str 0x0005c3ce 0x32ea esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_str 0x0005c3ce 0xc76 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_str 0x0005c3ce 0x7fc esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_str 0x0005c3ce 0x9a7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_str 0x0005c3ce 0x1b3e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_str 0x0005c3ce 0xcf6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_str 0x0005c3ce 0x13a5 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_str 0x0005c3ce 0xd2c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_str 0x0005c3ce 0xdc2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_str 0x0005c3ce 0x29ad esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_str 0x0005c3ce 0x35a esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_str 0x0005c3ce 0xb7c esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_str 0x0005c3ce 0xe5d esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_str 0x0005c3ce 0x13bc esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_str 0x0005c3ce 0x2d2e esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_str 0x0005c3ce 0xb0 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .debug_str 0x0005c3ce 0x305 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_str 0x0005c3ce 0x69f esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_str 0x0005c3ce 0xb8c esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .debug_str 0x0005c3ce 0x266c esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_str 0x0005c3ce 0x210e esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_str 0x0005c3ce 0x4b2 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_str 0x0005c3ce 0x13e3 esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_str 0x0005c3ce 0x938 esp-idf/hal/libhal.a(ledc_hal.c.obj) + .debug_str 0x0005c3ce 0xa0c esp-idf/hal/libhal.a(ledc_hal_iram.c.obj) + .debug_str 0x0005c3ce 0x8c0 esp-idf/soc/libsoc.a(interrupts.c.obj) + .debug_str 0x0005c3ce 0x91d esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_str 0x0005c3ce 0x904 esp-idf/soc/libsoc.a(ledc_periph.c.obj) + .debug_str 0x0005c3ce 0x94a esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .debug_str 0x0005c3ce 0x2c2 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_str 0x0005c3ce 0x327 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_str 0x0005c3ce 0xd8c esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .debug_str 0x0005c3ce 0x4967 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_str 0x0005c3ce 0x2e4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_str 0x0005c3ce 0x1036 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_str 0x0005c3ce 0x693 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_str 0x0005c3ce 0xbc6 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_str 0x0005c3ce 0xc44 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_str 0x0005c3ce 0x1704 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_str 0x0005c3ce 0x9134 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_str 0x0005c3ce 0x8768 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_str 0x0005c3ce 0x6fd2 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_str 0x0005c3ce 0x112f esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_str 0x0005c3ce 0x8729 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_str 0x0005c3ce 0x533 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .debug_str 0x0005c3ce 0x24dd esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_str 0x0005c3ce 0x35e3 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_str 0x0005c3ce 0x554b esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_str 0x0005c3ce 0x12b8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_str 0x0005c3ce 0x16c6 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_str 0x0005c3ce 0x47b esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_str 0x0005c3ce 0x3a96 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_str 0x0005c3ce 0xdeb esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_str 0x0005c3ce 0x355 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .debug_str 0x0005c3ce 0x301 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .debug_str 0x0005c3ce 0x17a1 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_str 0x0005c3ce 0x2bc esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_str 0x0005c3ce 0x2e1 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_str 0x0005c3ce 0x2de esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_str 0x0005c3ce 0x383 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_str 0x0005c3ce 0x427 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_str 0x0005c3ce 0x42d esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + .debug_str 0x0005c3ce 0x5c0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_str 0x0005c3ce 0x557 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + .debug_str 0x0005c3ce 0x3d3 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_str 0x0005c3ce 0x96f esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_str 0x0005c3ce 0x1cb5 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_str 0x0005c3ce 0x1a21 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_str 0x0005c3ce 0xd23 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_str 0x0005c3ce 0x228e esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_str 0x0005c3ce 0xff0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_str 0x0005c3ce 0xa14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .debug_str 0x0005c3ce 0x1a31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_str 0x0005c3ce 0x1be6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_str 0x0005c3ce 0x482 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .debug_str 0x0005c3ce 0x1314 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .debug_str 0x0005c3ce 0x10be esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_str 0x0005c3ce 0x3aa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_str 0x0005c3ce 0x36b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_str 0x0005c3ce 0x2c2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_str 0x0005c3ce 0x437 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_str 0x0005c3ce 0x4da esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_str 0x0005c3ce 0x4da esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_str 0x0005c3ce 0x617 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .debug_str 0x0005c3ce 0x2c4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_str 0x0005c3ce 0x443 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_str 0x0005c3ce 0x305 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_str 0x0005c3ce 0xf14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_str 0x0005c3ce 0x678 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_str 0x0005c3ce 0x678 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .debug_str 0x0005c3ce 0x529 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_str 0x0005c3ce 0x54b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_str 0x0005c3ce 0x554 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_str 0x0005c3ce 0xd7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .debug_str 0x0005c3ce 0x39c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .debug_str 0x0005c3ce 0x597 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .debug_str 0x0005c3ce 0x5b9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_str 0x0005c3ce 0x640 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_str 0x0005c3ce 0x9f0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_str 0x0005c3ce 0x1376 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_str 0x0005c3ce 0x4fd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .debug_str 0x0005c3ce 0xf57 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_str 0x0005c3ce 0xb72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_str 0x0005c3ce 0xa46 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_str 0x0005c3ce 0xc2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_str 0x0005c3ce 0x1269 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_str 0x0005c3ce 0x2dfd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_str 0x0005c3ce 0xb82 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_str 0x0005c3ce 0xbc4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_str 0x0005c3ce 0x15d5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_str 0x0005c3ce 0x29b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_str 0x0005c3ce 0xef6 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_str 0x0005c3ce 0x123c esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .debug_str 0x0005c3ce 0x1725 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_str 0x0005c3ce 0xf40 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_str 0x0005c3ce 0x1efb esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_str 0x0005c3ce 0x33e esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_str 0x0005c3ce 0x1197 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_str 0x0005c3ce 0x663 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .debug_str 0x0005c3ce 0x497 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_str 0x0005c3ce 0x430 esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_str 0x0005c3ce 0x2c6 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_str 0x0005c3ce 0x8f7 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .debug_str 0x0005c3ce 0x372 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_str 0x0005c3ce 0x74d esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_str 0x0005c3ce 0x26b esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .debug_str 0x0005c3ce 0x8d3 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_str 0x0005c3ce 0x502 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_str 0x0005c3ce 0x3e8 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .debug_str 0x0005c3ce 0xd1a esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_str 0x0005c3ce 0x60d esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .debug_str 0x0005c3ce 0x2603 esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_str 0x0005c3ce 0x130e esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_str 0x0005c3ce 0x34d esp-idf/lwip/liblwip.a(def.c.obj) + .debug_str 0x0005c3ce 0x1326 esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_str 0x0005c3ce 0x2d6 esp-idf/lwip/liblwip.a(init.c.obj) + .debug_str 0x0005c3ce 0xff9 esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_str 0x0005c3ce 0x330 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_str 0x0005c3ce 0xcf9 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_str 0x0005c3ce 0x166b esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_str 0x0005c3ce 0x156d esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_str 0x0005c3ce 0x135c esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_str 0x0005c3ce 0x1989 esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_str 0x0005c3ce 0x17aa esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_str 0x0005c3ce 0xf82 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_str 0x0005c3ce 0x111c esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_str 0x0005c3ce 0x14f5 esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_str 0x0005c3ce 0x1b7a esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_str 0x0005c3ce 0x1435 esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_str 0x0005c3ce 0x925 esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_str 0x0005c3ce 0x1151 esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_str 0x0005c3ce 0x1470 esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_str 0x0005c3ce 0xe62 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_str 0x0005c3ce 0x741 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_str 0x0005c3ce 0xbbb esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_str 0x0005c3ce 0xbd4 esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_str 0x0005c3ce 0xacd esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_str 0x0005c3ce 0x795 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_str 0x0005c3ce 0x13e4 esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_str 0x0005c3ce 0x1ab1 esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_str 0x0005c3ce 0xfed esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_str 0x0005c3ce 0xc7f esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .debug_str 0x0005c3ce 0x92b esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .debug_str 0x0005c3ce 0x111b esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_str 0x0005c3ce 0x9bc esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_str 0x0005c3ce 0x1d37 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_str 0x0005c3ce 0x130f esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_str 0x0005c3ce 0x1f7c esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_str 0x0005c3ce 0x8fa esp-idf/lwip/liblwip.a(err.c.obj) + .debug_str 0x0005c3ce 0x668 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_str 0x0005c3ce 0x4e1 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_str 0x0005c3ce 0xf52 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_str 0x0005c3ce 0x5ba esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .debug_str 0x0005c3ce 0xfbe esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .debug_str 0x0005c3ce 0x787 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .debug_str 0x0005c3ce 0x44e esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .debug_str 0x0005c3ce 0x4292 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_str 0x0005c3ce 0x1861 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .debug_str 0x0005c3ce 0x4868 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .debug_str 0x0005c3ce 0x3076 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_str 0x0005c3ce 0xb30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .debug_str 0x0005c3ce 0x2cc8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_str 0x0005c3ce 0x185f esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .debug_str 0x0005c3ce 0x1663 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .debug_str 0x0005c3ce 0xcc5 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_str 0x0005c3ce 0x3213 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_str 0x0005c3ce 0xf07 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_str 0x0005c3ce 0x69a esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .debug_str 0x0005c3ce 0x1b5c esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .debug_str 0x0005c3ce 0x1585 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .debug_str 0x0005c3ce 0x49d esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .debug_str 0x0005c3ce 0x131e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_str 0x0005c3ce 0x5f4 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .debug_str 0x0005c3ce 0x8be esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_str 0x0005c3ce 0x30a esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .debug_str 0x0005c3ce 0xaab esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_str 0x0005c3ce 0x2d31 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_str 0x0005c3ce 0xb51 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_str 0x0005c3ce 0x426 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_str 0x0005c3ce 0x12ad esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .debug_str 0x0005c3ce 0x325d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .debug_str 0x0005c3ce 0xbdd esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_str 0x0005c3ce 0x731 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .debug_str 0x0005c3ce 0xa42 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .debug_str 0x0005c3ce 0x72f esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .debug_str 0x0005c3ce 0xc21 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_str 0x0005c3ce 0x1051 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .debug_str 0x0005c3ce 0x11fa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_str 0x0005c3ce 0x6ab esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .debug_str 0x0005c3ce 0xc06 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_str 0x0005c3ce 0x1b13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_str 0x0005c3ce 0x10c2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_str 0x0005c3ce 0x402 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_str 0x0005c3ce 0x712 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_str 0x0005c3ce 0x82 /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .debug_str 0x0005c3ce 0x100 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_opv.o) + .debug_str 0x0005c3ce 0xf9 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_opvs.o) + .debug_str 0x0005c3ce 0x187 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_handler.o) + .debug_str 0x0005c3ce 0x159 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opvnt.o) + .debug_str 0x0005c3ce 0x2a9 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_op.o) + .debug_str 0x0005c3ce 0xb10 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_catch.o) + .debug_str 0x0005c3ce 0xcd4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) + .debug_str 0x0005c3ce 0x915 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) + .debug_str 0x0005c3ce 0x116 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opv.o) + .debug_str 0x0005c3ce 0x77b /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_term_handler.o) + .debug_str 0x0005c3ce 0x433 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_op.o) + .debug_str 0x0005c3ce 0x965 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) + .debug_str 0x0005c3ce 0x4a1 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(tinfo.o) + .debug_str 0x0005c3ce 0x212 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(bad_alloc.o) + .debug_str 0x0005c3ce 0x8e0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) + .debug_str 0x0005c3ce 0xf5 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_ops.o) + .debug_str 0x0005c3ce 0x98f /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .debug_str 0x0005c3ce 0xd1 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divsf3.o) + .debug_str 0x0005c3ce 0x108e esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_str 0x0005c3ce 0x2ad8 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .debug_str 0x0005c3ce 0x24f /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + .debug_str 0x0005c3ce 0x1d04 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .debug_str 0x0005c3ce 0x1a84 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .debug_str 0x0005c3ce 0xabe /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .debug_str 0x0005c3ce 0xb67 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .debug_str 0x0005c3ce 0x775 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-findfp.o) + .debug_str 0x0005c3ce 0x5fc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fopen.o) + .debug_str 0x0005c3ce 0x4fd /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseek.o) + .debug_str 0x0005c3ce 0x582 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fvwrite.o) + .debug_str 0x0005c3ce 0x4dd /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fwalk.o) + .debug_str 0x0005c3ce 0x533 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-printf.o) + .debug_str 0x0005c3ce 0x5c2 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-puts.o) + .debug_str 0x0005c3ce 0x558 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-refill.o) + .debug_str 0x0005c3ce 0x544 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-snprintf.o) + .debug_str 0x0005c3ce 0x536 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sprintf.o) + .debug_str 0x0005c3ce 0x53b /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vprintf.o) + .debug_str 0x0005c3ce 0x546 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vsnprintf.o) + .debug_str 0x0005c3ce 0x50f /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wsetup.o) + .debug_str 0x0005c3ce 0x727 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseeko.o) + .debug_str 0x0005c3ce 0x4ff /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-reent.o) + .debug_str 0x0005c3ce 0x4df /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-impure.o) + .debug_str 0x0005c3ce 0x4d9 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-errno.o) + .debug_str 0x0005c3ce 0x549 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sysgettod.o) + .debug_str 0x0005c3ce 0xc7c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) + .debug_str 0x0005c3ce 0xd80 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + .debug_str 0x0005c3ce 0xc77 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfiprintf.o) + .debug_str 0x0005c3ce 0x4d9 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-flags.o) + .debug_str 0x0005c3ce 0x671 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-makebuf.o) + .debug_str 0x0005c3ce 0x778 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-locale.o) + .debug_str 0x0005c3ce 0x724 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-localeconv.o) + .debug_str 0x0005c3ce 0x178 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libm_a-s_frexp.o) + .debug_str 0x0005c3ce 0x899 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) + .debug_str 0x0005c3ce 0x706 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mbtowc_r.o) + .debug_str 0x0005c3ce 0x7f4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) + .debug_str 0x0005c3ce 0xb98 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiprintf.o) + +.debug_loc 0x00000000 0xcabb9 + *(.debug_loc) + .debug_loc 0x00000000 0x11e esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_loc 0x0000011e 0xeb2 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_loc 0x00000fd0 0x69b esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_loc 0x0000166b 0x458 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_loc 0x00001ac3 0x47a esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_loc 0x00001f3d 0x3ea esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_loc 0x00002327 0x1b7 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_loc 0x000024de 0x41a esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_loc 0x000028f8 0x6a esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_loc 0x00002962 0x380 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_loc 0x00002ce2 0x33 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .debug_loc 0x00002d15 0x2cf esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_loc 0x00002fe4 0x42 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_loc 0x00003026 0xb9 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_loc 0x000030df 0x3d4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_loc 0x000034b3 0x142 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_loc 0x000035f5 0x151 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_loc 0x00003746 0x278 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_loc 0x000039be 0x72 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_loc 0x00003a30 0x176 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_loc 0x00003ba6 0x3fb esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_loc 0x00003fa1 0x114 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_loc 0x000040b5 0x507 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_loc 0x000045bc 0x15 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .debug_loc 0x000045d1 0x45 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_loc 0x00004616 0x3bd esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_loc 0x000049d3 0x87f esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .debug_loc 0x00005252 0x365 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_loc 0x000055b7 0xa9 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_loc 0x00005660 0x4dd esp-idf/log/liblog.a(log.c.obj) + .debug_loc 0x00005b3d 0xc3 esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_loc 0x00005c00 0xa9a esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_loc 0x0000669a 0x8c9 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_loc 0x00006f63 0x769 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_loc 0x000076cc 0x7d76 esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_loc 0x0000f442 0x510 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_loc 0x0000f952 0xa9d esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .debug_loc 0x000103ef 0x44 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_loc 0x00010433 0x676 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_loc 0x00010aa9 0x13d esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_loc 0x00010be6 0x17c0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_loc 0x000123a6 0x720 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_loc 0x00012ac6 0x341 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_loc 0x00012e07 0x2af esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_loc 0x000130b6 0x1143 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_loc 0x000141f9 0x3e2 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_loc 0x000145db 0x58e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_loc 0x00014b69 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_loc 0x00014b8d 0xca esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_loc 0x00014c57 0x2b esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .debug_loc 0x00014c82 0x279 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_loc 0x00014efb 0x98 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_loc 0x00014f93 0x16ee esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_loc 0x00016681 0x318e esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_loc 0x0001980f 0x9c0 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_loc 0x0001a1cf 0xee esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_loc 0x0001a2bd 0x6e esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_loc 0x0001a32b 0x2a esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_loc 0x0001a355 0x99 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_loc 0x0001a3ee 0xa6 esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_loc 0x0001a494 0x1eb esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_loc 0x0001a67f 0x26a esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_loc 0x0001a8e9 0x317 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_loc 0x0001ac00 0x81 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_loc 0x0001ac81 0xd5 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_loc 0x0001ad56 0x330 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_loc 0x0001b086 0x4e8 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_loc 0x0001b56e 0x68 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_loc 0x0001b5d6 0x26b esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_loc 0x0001b841 0xc7b esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_loc 0x0001c4bc 0x15 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_loc 0x0001c4d1 0x1a esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_loc 0x0001c4eb 0x384 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_loc 0x0001c86f 0x2afb esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_loc 0x0001f36a 0x2cc esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .debug_loc 0x0001f636 0x15dd esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_loc 0x00020c13 0x22 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_loc 0x00020c35 0x831 esp-idf/main/libmain.a(mesh_main.c.obj) + .debug_loc 0x00021466 0x9b esp-idf/main/libmain.a(mesh_light.c.obj) + .debug_loc 0x00021501 0x1cf esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_loc 0x000216d0 0x530 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_loc 0x00021c00 0x1184 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_loc 0x00022d84 0x724 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_loc 0x000234a8 0x6ee esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_loc 0x00023b96 0x29eb esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_loc 0x00026581 0x2d7f esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_loc 0x00029300 0x335e esp-idf/driver/libdriver.a(ledc.c.obj) + .debug_loc 0x0002c65e 0x3918 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_loc 0x0002ff76 0x7bd esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_loc 0x00030733 0x513 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_loc 0x00030c46 0x17b esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_loc 0x00030dc1 0x1e3 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_loc 0x00030fa4 0x991 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_loc 0x00031935 0x170 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_loc 0x00031aa5 0x1704 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_loc 0x000331a9 0x4f7 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_loc 0x000336a0 0x58b esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_loc 0x00033c2b 0x12f esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_loc 0x00033d5a 0x10d3 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_loc 0x00034e2d 0x140 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_loc 0x00034f6d 0x138 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_loc 0x000350a5 0x298 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_loc 0x0003533d 0x60f esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_loc 0x0003594c 0x62f esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_loc 0x00035f7b 0x7e esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_loc 0x00035ff9 0x134 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_loc 0x0003612d 0x2b1 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_loc 0x000363de 0xdfb esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_loc 0x000371d9 0x369 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_loc 0x00037542 0x150a esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_loc 0x00038a4c 0x5b8 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .debug_loc 0x00039004 0x2c5 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_loc 0x000392c9 0x1193 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_loc 0x0003a45c 0xbf esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_loc 0x0003a51b 0xcf4 esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_loc 0x0003b20f 0x110 esp-idf/hal/libhal.a(ledc_hal.c.obj) + .debug_loc 0x0003b31f 0x6e0 esp-idf/hal/libhal.a(ledc_hal_iram.c.obj) + .debug_loc 0x0003b9ff 0xb9 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_loc 0x0003bab8 0x3f esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_loc 0x0003baf7 0x13e esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .debug_loc 0x0003bc35 0x11b3 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_loc 0x0003cde8 0x52 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_loc 0x0003ce3a 0x1d7 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_loc 0x0003d011 0x239 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_loc 0x0003d24a 0xf2 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_loc 0x0003d33c 0x17a esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_loc 0x0003d4b6 0x188b esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_loc 0x0003ed41 0x216d esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_loc 0x00040eae 0x3579 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_loc 0x00044427 0x847 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_loc 0x00044c6e 0x29b esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_loc 0x00044f09 0xcdd esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_loc 0x00045be6 0x5e6 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_loc 0x000461cc 0x2862 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_loc 0x00048a2e 0xdf8 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_loc 0x00049826 0x106 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_loc 0x0004992c 0x177 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_loc 0x00049aa3 0x21c esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_loc 0x00049cbf 0x2c82 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_loc 0x0004c941 0xac esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_loc 0x0004c9ed 0x29c esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .debug_loc 0x0004cc89 0x10d esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .debug_loc 0x0004cd96 0xc42 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_loc 0x0004d9d8 0x2e6 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_loc 0x0004dcbe 0x19f esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_loc 0x0004de5d 0x1d6 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_loc 0x0004e033 0x6b esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_loc 0x0004e09e 0xbc4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_loc 0x0004ec62 0xe42 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + .debug_loc 0x0004faa4 0x1145 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_loc 0x00050be9 0x87a esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + .debug_loc 0x00051463 0x87e esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_loc 0x00051ce1 0x2b esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_loc 0x00051d0c 0x13a esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_loc 0x00051e46 0x64d esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_loc 0x00052493 0x2b1 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_loc 0x00052744 0x709 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_loc 0x00052e4d 0x3138 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_loc 0x00055f85 0x27a4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .debug_loc 0x00058729 0x2331 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_loc 0x0005aa5a 0x474 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_loc 0x0005aece 0x979 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .debug_loc 0x0005b847 0xd6c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .debug_loc 0x0005c5b3 0x87a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_loc 0x0005ce2d 0xbb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_loc 0x0005cee8 0x7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_loc 0x0005cf64 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_loc 0x0005cf8e 0x130 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_loc 0x0005d0be 0x1cc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_loc 0x0005d28a 0x1cc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_loc 0x0005d456 0xa0a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .debug_loc 0x0005de60 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_loc 0x0005de8b 0x5bd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_loc 0x0005e448 0xb2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_loc 0x0005e4fa 0x10f3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_loc 0x0005f5ed 0xb14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_loc 0x00060101 0x1b9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .debug_loc 0x000602ba 0x1e3b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_loc 0x000620f5 0xe9f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_loc 0x00062f94 0x9d3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_loc 0x00063967 0xc85 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .debug_loc 0x000645ec 0x102 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .debug_loc 0x000646ee 0x14a7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .debug_loc 0x00065b95 0x67e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_loc 0x00066213 0xac0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_loc 0x00066cd3 0x109f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_loc 0x00067d72 0x5146 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_loc 0x0006ceb8 0x666 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .debug_loc 0x0006d51e 0x267 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_loc 0x0006d785 0xb63 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_loc 0x0006e2e8 0xd01 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_loc 0x0006efe9 0xe03 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_loc 0x0006fdec 0x33b1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_loc 0x0007319d 0x2888 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_loc 0x00075a25 0xaae esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_loc 0x000764d3 0x84d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_loc 0x00076d20 0x1456 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_loc 0x00078176 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_loc 0x000781a1 0x178e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_loc 0x0007992f 0x147f esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .debug_loc 0x0007adae 0x8e9 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_loc 0x0007b697 0x502 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_loc 0x0007bb99 0x12bc esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_loc 0x0007ce55 0x7f esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_loc 0x0007ced4 0x40f esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_loc 0x0007d2e3 0x490 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .debug_loc 0x0007d773 0x376 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_loc 0x0007dae9 0x25c esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_loc 0x0007dd45 0x62 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_loc 0x0007dda7 0xeb esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_loc 0x0007de92 0x739 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_loc 0x0007e5cb 0x8e9 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_loc 0x0007eeb4 0x17d esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_loc 0x0007f031 0x359 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .debug_loc 0x0007f38a 0x46a esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_loc 0x0007f7f4 0x16b esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .debug_loc 0x0007f95f 0x427c esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_loc 0x00083bdb 0x319 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_loc 0x00083ef4 0x5bf esp-idf/lwip/liblwip.a(def.c.obj) + .debug_loc 0x000844b3 0x1503 esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_loc 0x000859b6 0x16f esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_loc 0x00085b25 0x80 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_loc 0x00085ba5 0x156 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_loc 0x00085cfb 0xf78 esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_loc 0x00086c73 0x1c4d esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_loc 0x000888c0 0x62f esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_loc 0x00088eef 0x167b esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_loc 0x0008a56a 0xea9 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_loc 0x0008b413 0x174d esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_loc 0x0008cb60 0x278 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_loc 0x0008cdd8 0x9c6 esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_loc 0x0008d79e 0x1d15 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_loc 0x0008f4b3 0xd2a esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_loc 0x000901dd 0x20a esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_loc 0x000903e7 0x68a esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_loc 0x00090a71 0x7c0 esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_loc 0x00091231 0x68a esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_loc 0x000918bb 0x27f esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_loc 0x00091b3a 0x3f2 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_loc 0x00091f2c 0xd5b esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_loc 0x00092c87 0x668 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_loc 0x000932ef 0x23e esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_loc 0x0009352d 0x467 esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_loc 0x00093994 0x1ed1 esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_loc 0x00095865 0x139 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_loc 0x0009599e 0xb7 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .debug_loc 0x00095a55 0x1da esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .debug_loc 0x00095c2f 0x673 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_loc 0x000962a2 0x161 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_loc 0x00096403 0x1ec9 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_loc 0x000982cc 0xed3 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_loc 0x0009919f 0x13c5 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_loc 0x0009a564 0x38 esp-idf/lwip/liblwip.a(err.c.obj) + .debug_loc 0x0009a59c 0x10f esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_loc 0x0009a6ab 0xc78 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_loc 0x0009b323 0xba esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_loc 0x0009b3dd 0x289 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .debug_loc 0x0009b666 0x8c esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .debug_loc 0x0009b6f2 0x531 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_loc 0x0009bc23 0x1a0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .debug_loc 0x0009bdc3 0x1ba9 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .debug_loc 0x0009d96c 0xc76 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_loc 0x0009e5e2 0x63 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .debug_loc 0x0009e645 0x348 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_loc 0x0009e98d 0x1c50 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .debug_loc 0x000a05dd 0xc2f esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .debug_loc 0x000a120c 0x492 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_loc 0x000a169e 0x271e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_loc 0x000a3dbc 0xea8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_loc 0x000a4c64 0x736 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .debug_loc 0x000a539a 0x25e esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .debug_loc 0x000a55f8 0x1368 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .debug_loc 0x000a6960 0x4ce esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .debug_loc 0x000a6e2e 0x4606 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_loc 0x000ab434 0x6bc esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .debug_loc 0x000abaf0 0x1493 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_loc 0x000acf83 0x1da esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .debug_loc 0x000ad15d 0x164 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_loc 0x000ad2c1 0x3780 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_loc 0x000b0a41 0x87c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_loc 0x000b12bd 0x6c3 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_loc 0x000b1980 0x16d9 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .debug_loc 0x000b3059 0xe74 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .debug_loc 0x000b3ecd 0x276 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_loc 0x000b4143 0x63c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .debug_loc 0x000b477f 0x80c esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .debug_loc 0x000b4f8b 0xa94 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .debug_loc 0x000b5a1f 0x811 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_loc 0x000b6230 0x21c esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .debug_loc 0x000b644c 0x135a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_loc 0x000b77a6 0x1c5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .debug_loc 0x000b796b 0x626 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_loc 0x000b7f91 0x16bc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_loc 0x000b964d 0xd14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_loc 0x000ba361 0xb8c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_loc 0x000baeed 0x5e esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_loc 0x000baf4b 0x70be /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .debug_loc 0x000c2009 0x42 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + .debug_loc 0x000c204b 0x38d6 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .debug_loc 0x000c5921 0x4b5a /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .debug_loc 0x000ca47b 0x12e /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .debug_loc 0x000ca5a9 0x610 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + +.debug_macinfo + *(.debug_macinfo) + +.debug_pubtypes + *(.debug_pubtypes) + +.debug_ranges 0x00000000 0x1a170 + *(.debug_ranges) + .debug_ranges 0x00000000 0x58 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_ranges 0x00000058 0x180 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_ranges 0x000001d8 0xa8 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_ranges 0x00000280 0xc8 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_ranges 0x00000348 0x80 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_ranges 0x000003c8 0x48 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_ranges 0x00000410 0xa8 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_ranges 0x000004b8 0x78 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_ranges 0x00000530 0x50 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_ranges 0x00000580 0x98 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_ranges 0x00000618 0x18 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .debug_ranges 0x00000630 0x48 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_ranges 0x00000678 0x18 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_ranges 0x00000690 0x50 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_ranges 0x000006e0 0xe0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_ranges 0x000007c0 0x58 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_ranges 0x00000818 0x88 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_ranges 0x000008a0 0xc0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_ranges 0x00000960 0x58 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .debug_ranges 0x000009b8 0x68 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_ranges 0x00000a20 0x98 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_ranges 0x00000ab8 0x30 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_ranges 0x00000ae8 0x100 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_ranges 0x00000be8 0x10 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .debug_ranges 0x00000bf8 0x58 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_ranges 0x00000c50 0xe8 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_ranges 0x00000d38 0x1d0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .debug_ranges 0x00000f08 0x130 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_ranges 0x00001038 0x40 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_ranges 0x00001078 0x138 esp-idf/log/liblog.a(log.c.obj) + .debug_ranges 0x000011b0 0x68 esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_ranges 0x00001218 0x120 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_ranges 0x00001338 0x148 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_ranges 0x00001480 0x108 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_ranges 0x00001588 0x1440 esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_ranges 0x000029c8 0xc0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_ranges 0x00002a88 0x1c0 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .debug_ranges 0x00002c48 0x18 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_ranges 0x00002c60 0xe8 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_ranges 0x00002d48 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_ranges 0x00002db8 0x348 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_ranges 0x00003100 0xe8 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_ranges 0x000031e8 0x80 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_ranges 0x00003268 0x1c8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_ranges 0x00003430 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .debug_ranges 0x00003480 0x4e8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_ranges 0x00003968 0x98 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_ranges 0x00003a00 0x148 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_ranges 0x00003b48 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_ranges 0x00003b88 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_ranges 0x00003be8 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .debug_ranges 0x00003bf8 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_ranges 0x00003c58 0x40 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_ranges 0x00003c98 0x268 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_ranges 0x00003f00 0x898 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_ranges 0x00004798 0x1d0 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_ranges 0x00004968 0x18 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .debug_ranges 0x00004980 0x58 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_ranges 0x000049d8 0x18 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_ranges 0x000049f0 0x18 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_ranges 0x00004a08 0x30 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_ranges 0x00004a38 0x28 esp-idf/newlib/libnewlib.a(abort.c.obj) + .debug_ranges 0x00004a60 0x68 esp-idf/newlib/libnewlib.a(assert.c.obj) + .debug_ranges 0x00004ac8 0x90 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_ranges 0x00004b58 0xc8 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_ranges 0x00004c20 0x28 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_ranges 0x00004c48 0x48 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_ranges 0x00004c90 0x28 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .debug_ranges 0x00004cb8 0x98 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_ranges 0x00004d50 0xa0 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_ranges 0x00004df0 0x40 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .debug_ranges 0x00004e30 0x88 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_ranges 0x00004eb8 0x1c8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_ranges 0x00005080 0x20 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_ranges 0x000050a0 0x28 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_ranges 0x000050c8 0xe8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_ranges 0x000051b0 0x40 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .debug_ranges 0x000051f0 0x478 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_ranges 0x00005668 0x88 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .debug_ranges 0x000056f0 0x378 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_ranges 0x00005a68 0x18 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .debug_ranges 0x00005a80 0xc8 esp-idf/main/libmain.a(mesh_main.c.obj) + .debug_ranges 0x00005b48 0x30 esp-idf/main/libmain.a(mesh_light.c.obj) + .debug_ranges 0x00005b78 0x70 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_ranges 0x00005be8 0x68 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .debug_ranges 0x00005c50 0x98 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_ranges 0x00005ce8 0x2d0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_ranges 0x00005fb8 0xf0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_ranges 0x000060a8 0x1f0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_ranges 0x00006298 0x378 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_ranges 0x00006610 0x20 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .debug_ranges 0x00006630 0x6d0 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_ranges 0x00006d00 0x608 esp-idf/driver/libdriver.a(ledc.c.obj) + .debug_ranges 0x00007308 0x8b8 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_ranges 0x00007bc0 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_ranges 0x00007bd0 0xd8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_ranges 0x00007ca8 0x180 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_ranges 0x00007e28 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .debug_ranges 0x00007e40 0x50 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_ranges 0x00007e90 0x20 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_ranges 0x00007eb0 0x90 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_ranges 0x00007f40 0x150 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_ranges 0x00008090 0x50 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_ranges 0x000080e0 0x288 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_ranges 0x00008368 0xd8 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_ranges 0x00008440 0xc0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_ranges 0x00008500 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_ranges 0x00008530 0x188 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_ranges 0x000086b8 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_ranges 0x000086e0 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_ranges 0x00008700 0x68 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_ranges 0x00008768 0x68 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_ranges 0x000087d0 0x80 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_ranges 0x00008850 0x20 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_ranges 0x00008870 0x48 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_ranges 0x000088b8 0x58 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_ranges 0x00008910 0x170 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_ranges 0x00008a80 0x88 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_ranges 0x00008b08 0x18 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_ranges 0x00008b20 0x288 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_ranges 0x00008da8 0xb8 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .debug_ranges 0x00008e60 0x60 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .debug_ranges 0x00008ec0 0x348 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .debug_ranges 0x00009208 0x78 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_ranges 0x00009280 0x258 esp-idf/hal/libhal.a(uart_hal.c.obj) + .debug_ranges 0x000094d8 0x30 esp-idf/hal/libhal.a(ledc_hal.c.obj) + .debug_ranges 0x00009508 0x60 esp-idf/hal/libhal.a(ledc_hal_iram.c.obj) + .debug_ranges 0x00009568 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_ranges 0x00009588 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_ranges 0x00009598 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .debug_ranges 0x000095d0 0x4c8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_ranges 0x00009a98 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_ranges 0x00009ab0 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_ranges 0x00009ac0 0x78 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_ranges 0x00009b38 0x18 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_ranges 0x00009b50 0x48 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_ranges 0x00009b98 0x318 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_ranges 0x00009eb0 0x300 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_ranges 0x0000a1b0 0x698 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_ranges 0x0000a848 0xb8 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_ranges 0x0000a900 0x80 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .debug_ranges 0x0000a980 0x210 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_ranges 0x0000ab90 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .debug_ranges 0x0000abb8 0x168 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_ranges 0x0000ad20 0x638 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_ranges 0x0000b358 0x270 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_ranges 0x0000b5c8 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .debug_ranges 0x0000b5e0 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_ranges 0x0000b600 0x70 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_ranges 0x0000b670 0x5f8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_ranges 0x0000bc68 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_ranges 0x0000bca0 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .debug_ranges 0x0000bcd8 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .debug_ranges 0x0000bce8 0x188 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_ranges 0x0000be70 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_ranges 0x0000be80 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_ranges 0x0000be90 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_ranges 0x0000bea0 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_ranges 0x0000bed0 0xa8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_ranges 0x0000bf78 0xa8 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + .debug_ranges 0x0000c020 0x120 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_ranges 0x0000c140 0x270 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + .debug_ranges 0x0000c3b0 0xd0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_ranges 0x0000c480 0x10 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_ranges 0x0000c490 0x50 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_ranges 0x0000c4e0 0x150 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_ranges 0x0000c630 0x60 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_ranges 0x0000c690 0x270 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_ranges 0x0000c900 0x418 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_ranges 0x0000cd18 0x4f0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .debug_ranges 0x0000d208 0x448 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_ranges 0x0000d650 0xf8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_ranges 0x0000d748 0x158 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .debug_ranges 0x0000d8a0 0x1a8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .debug_ranges 0x0000da48 0xe8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_ranges 0x0000db30 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_ranges 0x0000db48 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_ranges 0x0000db78 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_ranges 0x0000db90 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_ranges 0x0000dba8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_ranges 0x0000dbe8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_ranges 0x0000dc28 0x3e8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .debug_ranges 0x0000e010 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_ranges 0x0000e028 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .debug_ranges 0x0000e0b8 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .debug_ranges 0x0000e0e0 0x180 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .debug_ranges 0x0000e260 0x1c8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_ranges 0x0000e428 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .debug_ranges 0x0000e4a8 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_ranges 0x0000e4f0 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_ranges 0x0000e540 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_ranges 0x0000e590 0xe0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .debug_ranges 0x0000e670 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .debug_ranges 0x0000e6c8 0x160 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .debug_ranges 0x0000e828 0xe8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_ranges 0x0000e910 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_ranges 0x0000e9c0 0x138 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_ranges 0x0000eaf8 0x558 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_ranges 0x0000f050 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .debug_ranges 0x0000f080 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_ranges 0x0000f0e8 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_ranges 0x0000f1d8 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_ranges 0x0000f2d8 0xf8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_ranges 0x0000f3d0 0x3f0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_ranges 0x0000f7c0 0xaf8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_ranges 0x000102b8 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_ranges 0x00010350 0xd8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_ranges 0x00010428 0x2e0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_ranges 0x00010708 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_ranges 0x00010718 0x218 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_ranges 0x00010930 0x288 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .debug_ranges 0x00010bb8 0x140 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_ranges 0x00010cf8 0x78 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_ranges 0x00010d70 0x2b8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_ranges 0x00011028 0x28 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_ranges 0x00011050 0xf0 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_ranges 0x00011140 0xd0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .debug_ranges 0x00011210 0xb0 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_ranges 0x000112c0 0x60 esp-idf/hal/libhal.a(aes_hal.c.obj) + .debug_ranges 0x00011320 0x28 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_ranges 0x00011348 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_ranges 0x00011378 0x100 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .debug_ranges 0x00011478 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .debug_ranges 0x00011490 0xd8 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_ranges 0x00011568 0xb8 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_ranges 0x00011620 0x70 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .debug_ranges 0x00011690 0x108 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .debug_ranges 0x00011798 0xa0 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .debug_ranges 0x00011838 0x778 esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_ranges 0x00011fb0 0xb0 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_ranges 0x00012060 0xc0 esp-idf/lwip/liblwip.a(def.c.obj) + .debug_ranges 0x00012120 0x1c8 esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_ranges 0x000122e8 0x10 esp-idf/lwip/liblwip.a(init.c.obj) + .debug_ranges 0x000122f8 0x50 esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_ranges 0x00012348 0x30 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_ranges 0x00012378 0x48 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_ranges 0x000123c0 0x210 esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_ranges 0x000125d0 0x2d0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_ranges 0x000128a0 0xd8 esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_ranges 0x00012978 0x390 esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_ranges 0x00012d08 0x268 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_ranges 0x00012f70 0x1a0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_ranges 0x00013110 0x78 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_ranges 0x00013188 0xd8 esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_ranges 0x00013260 0x328 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_ranges 0x00013588 0x160 esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_ranges 0x000136e8 0x68 esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_ranges 0x00013750 0xf0 esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_ranges 0x00013840 0xf0 esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_ranges 0x00013930 0x38 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_ranges 0x00013968 0x10 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_ranges 0x00013978 0x60 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_ranges 0x000139d8 0x118 esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_ranges 0x00013af0 0x38 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_ranges 0x00013b28 0x10 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_ranges 0x00013b38 0xb8 esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_ranges 0x00013bf0 0x2b8 esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_ranges 0x00013ea8 0x18 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_ranges 0x00013ec0 0x30 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .debug_ranges 0x00013ef0 0x40 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .debug_ranges 0x00013f30 0x138 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_ranges 0x00014068 0x70 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_ranges 0x000140d8 0x258 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_ranges 0x00014330 0x158 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_ranges 0x00014488 0x280 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_ranges 0x00014708 0x10 esp-idf/lwip/liblwip.a(err.c.obj) + .debug_ranges 0x00014718 0x50 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_ranges 0x00014768 0x60 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_ranges 0x000147c8 0x98 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_ranges 0x00014860 0x38 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .debug_ranges 0x00014898 0x18 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .debug_ranges 0x000148b0 0xd0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_ranges 0x00014980 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .debug_ranges 0x000149e0 0x370 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .debug_ranges 0x00014d50 0x140 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_ranges 0x00014e90 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .debug_ranges 0x00014eb0 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_ranges 0x00014f00 0x1f0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .debug_ranges 0x000150f0 0xd8 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .debug_ranges 0x000151c8 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_ranges 0x00015230 0x458 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_ranges 0x00015688 0x108 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_ranges 0x00015790 0xb0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .debug_ranges 0x00015840 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .debug_ranges 0x000158c0 0x188 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .debug_ranges 0x00015a48 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .debug_ranges 0x00015a80 0x598 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_ranges 0x00016018 0xd0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .debug_ranges 0x000160e8 0x188 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_ranges 0x00016270 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .debug_ranges 0x00016280 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_ranges 0x000162b8 0x3b0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_ranges 0x00016668 0x128 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_ranges 0x00016790 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_ranges 0x00016830 0x108 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .debug_ranges 0x00016938 0x1c8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .debug_ranges 0x00016b00 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_ranges 0x00016b60 0xd0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .debug_ranges 0x00016c30 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .debug_ranges 0x00016c88 0xe0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .debug_ranges 0x00016d68 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_ranges 0x00016e08 0xc8 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .debug_ranges 0x00016ed0 0x2b0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_ranges 0x00017180 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .debug_ranges 0x000171b0 0xe0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_ranges 0x00017290 0x130 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_ranges 0x000173c0 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_ranges 0x00017458 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_ranges 0x00017490 0x10 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_ranges 0x000174a0 0xc0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_ranges 0x00017560 0x1818 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .debug_ranges 0x00018d78 0x20 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + .debug_ranges 0x00018d98 0x5a0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .debug_ranges 0x00019338 0xc98 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .debug_ranges 0x00019fd0 0xf0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .debug_ranges 0x0001a0c0 0xb0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + +.debug_weaknames + *(.debug_weaknames) + +.debug_funcnames + *(.debug_funcnames) + +.debug_typenames + *(.debug_typenames) + +.debug_varnames + *(.debug_varnames) + +.debug_gnu_pubnames + *(.debug_gnu_pubnames) + +.debug_gnu_pubtypes + *(.debug_gnu_pubtypes) + +.debug_types + *(.debug_types) + +.debug_addr + *(.debug_addr) + +.debug_line_str + 0x00000000 0x1b46 + *(.debug_line_str) + .debug_line_str + 0x00000000 0x1b46 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_opv.o) + 0x253 (size before relaxing) + .debug_line_str + 0x00001b46 0x256 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_opvs.o) + .debug_line_str + 0x00001b46 0x25f /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_handler.o) + .debug_line_str + 0x00001b46 0x259 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opvnt.o) + .debug_line_str + 0x00001b46 0x37a /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_op.o) + .debug_line_str + 0x00001b46 0x455 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_catch.o) + .debug_line_str + 0x00001b46 0x53c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) + .debug_line_str + 0x00001b46 0x461 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) + .debug_line_str + 0x00001b46 0x253 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opv.o) + .debug_line_str + 0x00001b46 0x46a /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_term_handler.o) + .debug_line_str + 0x00001b46 0x409 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_op.o) + .debug_line_str + 0x00001b46 0x369 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) + .debug_line_str + 0x00001b46 0x342 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(tinfo.o) + .debug_line_str + 0x00001b46 0x2e4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(bad_alloc.o) + .debug_line_str + 0x00001b46 0x360 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) + .debug_line_str + 0x00001b46 0x253 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_ops.o) + .debug_line_str + 0x00001b46 0x3af /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .debug_line_str + 0x00001b46 0xc5 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divsf3.o) + .debug_line_str + 0x00001b46 0x2c4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-findfp.o) + .debug_line_str + 0x00001b46 0x2b7 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fopen.o) + .debug_line_str + 0x00001b46 0x29d /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseek.o) + .debug_line_str + 0x00001b46 0x2bf /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fvwrite.o) + .debug_line_str + 0x00001b46 0x29d /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fwalk.o) + .debug_line_str + 0x00001b46 0x2b4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-printf.o) + .debug_line_str + 0x00001b46 0x2bf /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-puts.o) + .debug_line_str + 0x00001b46 0x2b1 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-refill.o) + .debug_line_str + 0x00001b46 0x2c2 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-snprintf.o) + .debug_line_str + 0x00001b46 0x2bf /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sprintf.o) + .debug_line_str + 0x00001b46 0x2b7 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vprintf.o) + .debug_line_str + 0x00001b46 0x2c5 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vsnprintf.o) + .debug_line_str + 0x00001b46 0x2b1 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wsetup.o) + .debug_line_str + 0x00001b46 0x357 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseeko.o) + .debug_line_str + 0x00001b46 0x29e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-reent.o) + .debug_line_str + 0x00001b46 0x243 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-impure.o) + .debug_line_str + 0x00001b46 0x251 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-errno.o) + .debug_line_str + 0x00001b46 0x326 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sysgettod.o) + .debug_line_str + 0x00001b46 0x3e6 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) + .debug_line_str + 0x00001b46 0x3ee /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + .debug_line_str + 0x00001b46 0x3de /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfiprintf.o) + .debug_line_str + 0x00001b46 0x249 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-flags.o) + .debug_line_str + 0x00001b46 0x33f /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-makebuf.o) + .debug_line_str + 0x00001b46 0x330 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-locale.o) + .debug_line_str + 0x00001b46 0x2c3 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-localeconv.o) + .debug_line_str + 0x00001b46 0x28a /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libm_a-s_frexp.o) + .debug_line_str + 0x00001b46 0x390 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) + .debug_line_str + 0x00001b46 0x31d /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mbtowc_r.o) + .debug_line_str + 0x00001b46 0x393 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) + .debug_line_str + 0x00001b46 0x3d6 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiprintf.o) + +.debug_loclists + 0x00000000 0xd2fd + *(.debug_loclists) + .debug_loclists + 0x00000000 0x36 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_handler.o) + .debug_loclists + 0x00000036 0x40 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opvnt.o) + .debug_loclists + 0x00000076 0x1b9 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_catch.o) + .debug_loclists + 0x0000022f 0x117 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) + .debug_loclists + 0x00000346 0x60 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) + .debug_loclists + 0x000003a6 0x29 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opv.o) + .debug_loclists + 0x000003cf 0x5e /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_op.o) + .debug_loclists + 0x0000042d 0xd4 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) + .debug_loclists + 0x00000501 0x96 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(tinfo.o) + .debug_loclists + 0x00000597 0x29 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(bad_alloc.o) + .debug_loclists + 0x000005c0 0x116 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) + .debug_loclists + 0x000006d6 0x88 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .debug_loclists + 0x0000075e 0x13c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-findfp.o) + .debug_loclists + 0x0000089a 0x61 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fopen.o) + .debug_loclists + 0x000008fb 0x5c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseek.o) + .debug_loclists + 0x00000957 0x34b /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fvwrite.o) + .debug_loclists + 0x00000ca2 0x4a /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fwalk.o) + .debug_loclists + 0x00000cec 0x54 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-printf.o) + .debug_loclists + 0x00000d40 0x7c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-puts.o) + .debug_loclists + 0x00000dbc 0xe1 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-refill.o) + .debug_loclists + 0x00000e9d 0x7b /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-snprintf.o) + .debug_loclists + 0x00000f18 0x51 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sprintf.o) + .debug_loclists + 0x00000f69 0x44 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vprintf.o) + .debug_loclists + 0x00000fad 0x4a /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vsnprintf.o) + .debug_loclists + 0x00000ff7 0x2f /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wsetup.o) + .debug_loclists + 0x00001026 0x1bd /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseeko.o) + .debug_loclists + 0x000011e3 0x2a /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-reent.o) + .debug_loclists + 0x0000120d 0x24 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sysgettod.o) + .debug_loclists + 0x00001231 0x2ecf /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) + .debug_loclists + 0x00004100 0x2f33 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + .debug_loclists + 0x00007033 0x1d01 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfiprintf.o) + .debug_loclists + 0x00008d34 0xa6 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-flags.o) + .debug_loclists + 0x00008dda 0x82 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-makebuf.o) + .debug_loclists + 0x00008e5c 0x3c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-locale.o) + .debug_loclists + 0x00008e98 0x48 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-localeconv.o) + .debug_loclists + 0x00008ee0 0x86 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libm_a-s_frexp.o) + .debug_loclists + 0x00008f66 0x1289 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) + .debug_loclists + 0x0000a1ef 0x82 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mbtowc_r.o) + .debug_loclists + 0x0000a271 0x10ed /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) + .debug_loclists + 0x0000b35e 0x1f9f /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiprintf.o) + +.debug_macro + *(.debug_macro) + +.debug_names + *(.debug_names) + +.debug_rnglists + 0x00000000 0x566 + *(.debug_rnglists) + .debug_rnglists + 0x00000000 0x13 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_opv.o) + .debug_rnglists + 0x00000013 0x13 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_opvs.o) + .debug_rnglists + 0x00000026 0x19 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_handler.o) + .debug_rnglists + 0x0000003f 0x13 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opvnt.o) + .debug_rnglists + 0x00000052 0x13 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_op.o) + .debug_rnglists + 0x00000065 0x46 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_catch.o) + .debug_rnglists + 0x000000ab 0x4f /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) + .debug_rnglists + 0x000000fa 0x3d /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) + .debug_rnglists + 0x00000137 0x13 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opv.o) + .debug_rnglists + 0x0000014a 0x1f /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_op.o) + .debug_rnglists + 0x00000169 0x3d /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) + .debug_rnglists + 0x000001a6 0x2b /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(tinfo.o) + .debug_rnglists + 0x000001d1 0x1f /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(bad_alloc.o) + .debug_rnglists + 0x000001f0 0x4c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) + .debug_rnglists + 0x0000023c 0x13 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_ops.o) + .debug_rnglists + 0x0000024f 0x55 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .debug_rnglists + 0x000002a4 0x42 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-findfp.o) + .debug_rnglists + 0x000002e6 0x13 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fopen.o) + .debug_rnglists + 0x000002f9 0x1c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fvwrite.o) + .debug_rnglists + 0x00000315 0x13 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-puts.o) + .debug_rnglists + 0x00000328 0x28 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseeko.o) + .debug_rnglists + 0x00000350 0x5a /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) + .debug_rnglists + 0x000003aa 0x7a /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + .debug_rnglists + 0x00000424 0x70 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfiprintf.o) + .debug_rnglists + 0x00000494 0x13 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libm_a-s_frexp.o) + .debug_rnglists + 0x000004a7 0x1c /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) + .debug_rnglists + 0x000004c3 0x43 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) + .debug_rnglists + 0x00000506 0x60 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiprintf.o) + +.debug_str_offsets + *(.debug_str_offsets) + +.comment 0x00000000 0x11d + *(.comment) + .comment 0x00000000 0x11d /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + 0x30 (size before relaxing) + .comment 0x0000011d 0x30 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .comment 0x0000011d 0x30 esp-idf/pthread/libpthread.a(pthread.c.obj) + .comment 0x0000011d 0x30 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .comment 0x0000011d 0x30 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .comment 0x0000011d 0x30 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .comment 0x0000011d 0x30 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .comment 0x0000011d 0x30 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .comment 0x0000011d 0x30 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .comment 0x0000011d 0x30 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .comment 0x0000011d 0x30 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .comment 0x0000011d 0x30 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .comment 0x0000011d 0x30 esp-idf/log/liblog.a(log.c.obj) + .comment 0x0000011d 0x30 esp-idf/log/liblog.a(log_freertos.c.obj) + .comment 0x0000011d 0x30 esp-idf/heap/libheap.a(heap_caps.c.obj) + .comment 0x0000011d 0x30 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .comment 0x0000011d 0x30 esp-idf/heap/libheap.a(multi_heap.c.obj) + .comment 0x0000011d 0x30 esp-idf/heap/libheap.a(tlsf.c.obj) + .comment 0x0000011d 0x30 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .comment 0x0000011d 0x30 esp-idf/heap/libheap.a(memory_layout.c.obj) + .comment 0x0000011d 0x30 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .comment 0x0000011d 0x30 esp-idf/soc/libsoc.a(dport_access.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .comment 0x0000011d 0x30 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .comment 0x0000011d 0x30 esp-idf/freertos/libfreertos.a(queue.c.obj) + .comment 0x0000011d 0x30 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .comment 0x0000011d 0x30 esp-idf/freertos/libfreertos.a(port.c.obj) + .comment 0x0000011d 0x30 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .comment 0x0000011d 0x30 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .comment 0x0000011d 0x30 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .comment 0x0000011d 0x30 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .comment 0x0000011d 0x30 esp-idf/freertos/libfreertos.a(list.c.obj) + .comment 0x0000011d 0x30 esp-idf/newlib/libnewlib.a(abort.c.obj) + .comment 0x0000011d 0x30 esp-idf/newlib/libnewlib.a(assert.c.obj) + .comment 0x0000011d 0x30 esp-idf/newlib/libnewlib.a(heap.c.obj) + .comment 0x0000011d 0x30 esp-idf/newlib/libnewlib.a(locks.c.obj) + .comment 0x0000011d 0x30 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .comment 0x0000011d 0x30 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .comment 0x0000011d 0x30 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .comment 0x0000011d 0x30 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .comment 0x0000011d 0x30 esp-idf/newlib/libnewlib.a(time.c.obj) + .comment 0x0000011d 0x30 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .comment 0x0000011d 0x30 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .comment 0x0000011d 0x30 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .comment 0x0000011d 0x30 esp-idf/vfs/libvfs.a(vfs.c.obj) + .comment 0x0000011d 0x30 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .comment 0x0000011d 0x30 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .comment 0x0000011d 0x30 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .comment 0x0000011d 0x30 esp-idf/main/libmain.a(mesh_main.c.obj) + .comment 0x0000011d 0x30 esp-idf/main/libmain.a(mesh_light.c.obj) + .comment 0x0000011d 0x30 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .comment 0x0000011d 0x30 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .comment 0x0000011d 0x30 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .comment 0x0000011d 0x30 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .comment 0x0000011d 0x30 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .comment 0x0000011d 0x30 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .comment 0x0000011d 0x30 esp-idf/driver/libdriver.a(gpio.c.obj) + .comment 0x0000011d 0x30 esp-idf/driver/libdriver.a(ledc.c.obj) + .comment 0x0000011d 0x30 esp-idf/driver/libdriver.a(uart.c.obj) + .comment 0x0000011d 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .comment 0x0000011d 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .comment 0x0000011d 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .comment 0x0000011d 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .comment 0x0000011d 0x30 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .comment 0x0000011d 0x30 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .comment 0x0000011d 0x30 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .comment 0x0000011d 0x30 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .comment 0x0000011d 0x30 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .comment 0x0000011d 0x30 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .comment 0x0000011d 0x30 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .comment 0x0000011d 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .comment 0x0000011d 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .comment 0x0000011d 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .comment 0x0000011d 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .comment 0x0000011d 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .comment 0x0000011d 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .comment 0x0000011d 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .comment 0x0000011d 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .comment 0x0000011d 0x30 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .comment 0x0000011d 0x30 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .comment 0x0000011d 0x30 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .comment 0x0000011d 0x30 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .comment 0x0000011d 0x30 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .comment 0x0000011d 0x30 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .comment 0x0000011d 0x30 esp-idf/hal/libhal.a(uart_hal.c.obj) + .comment 0x0000011d 0x30 esp-idf/hal/libhal.a(ledc_hal.c.obj) + .comment 0x0000011d 0x30 esp-idf/hal/libhal.a(ledc_hal_iram.c.obj) + .comment 0x0000011d 0x30 esp-idf/soc/libsoc.a(interrupts.c.obj) + .comment 0x0000011d 0x30 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .comment 0x0000011d 0x30 esp-idf/soc/libsoc.a(ledc_periph.c.obj) + .comment 0x0000011d 0x30 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .comment 0x0000011d 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .comment 0x0000011d 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .comment 0x0000011d 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .comment 0x0000011d 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .comment 0x0000011d 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .comment 0x0000011d 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .comment 0x0000011d 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .comment 0x0000011d 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .comment 0x0000011d 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .comment 0x0000011d 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .comment 0x0000011d 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .comment 0x0000011d 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_coex.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + .comment 0x0000011d 0x30 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .comment 0x0000011d 0x30 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .comment 0x0000011d 0x30 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .comment 0x0000011d 0x30 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .comment 0x0000011d 0x30 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .comment 0x0000011d 0x30 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .comment 0x0000011d 0x30 esp-idf/hal/libhal.a(sha_hal.c.obj) + .comment 0x0000011d 0x30 esp-idf/hal/libhal.a(aes_hal.c.obj) + .comment 0x0000011d 0x30 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .comment 0x0000011d 0x30 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .comment 0x0000011d 0x30 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(sockets.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(def.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(dns.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(init.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(ip.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(mem.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(memp.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(netif.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(raw.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(tcp.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(udp.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(etharp.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(icmp.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(igmp.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(ip4.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(ip6.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(mld6.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(nd6.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(err.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .comment 0x0000011d 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .comment 0x0000011d 0x30 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .comment 0x0000011d 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .comment 0x0000011d 0x30 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .comment 0x0000011d 0x41 /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_opv.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_opvs.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_handler.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opvnt.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_op.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_catch.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opv.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_term_handler.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_op.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(tinfo.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(bad_alloc.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_ops.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .comment 0x0000011d 0x30 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .comment 0x0000011d 0x3b /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-findfp.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fopen.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseek.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fvwrite.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fwalk.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-printf.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-puts.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-refill.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-snprintf.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sprintf.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vprintf.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vsnprintf.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wsetup.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseeko.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-reent.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-impure.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-errno.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sysgettod.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfiprintf.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-flags.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-makebuf.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-locale.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-localeconv.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libm_a-s_frexp.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mbtowc_r.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiprintf.o) + .comment 0x0000011d 0x30 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + +.note.GNU-stack + *(.note.GNU-stack) + +.xtensa.info 0x00000000 0x38 + *(.xtensa.info) + .xtensa.info 0x00000000 0x38 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crti.o + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o + .xtensa.info 0x00000038 0x0 CMakeFiles/internal_communication.elf.dir/project_elf_src_esp32.c.obj + .xtensa.info 0x00000038 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(brownout.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/log/liblog.a(log.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/heap/libheap.a(memory_layout.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/soc/libsoc.a(dport_access.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/newlib/libnewlib.a(abort.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/newlib/libnewlib.a(assert.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/main/libmain.a(mesh_main.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/main/libmain.a(mesh_light.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .xtensa.info 0x00000038 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .xtensa.info 0x00000038 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .xtensa.info 0x00000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/driver/libdriver.a(gpio.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/driver/libdriver.a(ledc.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(uart_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(gpio_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(ledc_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(ledc_hal_iram.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/soc/libsoc.a(interrupts.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/soc/libsoc.a(uart_periph.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/soc/libsoc.a(spi_periph.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/soc/libsoc.a(ledc_periph.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xtensa.info 0x00000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xtensa.info 0x00000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .xtensa.info 0x00000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .xtensa.info 0x00000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xtensa.info 0x00000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + .xtensa.info 0x00000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .xtensa.info 0x00000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .xtensa.info 0x00000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .xtensa.info 0x00000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + .xtensa.info 0x00000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .xtensa.info 0x00000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-prf.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-prf.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_coex.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + .xtensa.info 0x00000038 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/driver/libdriver.a(spi_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(mpi_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(sha_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(aes_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/soc/libsoc.a(mpi_periph.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/soc/libsoc.a(touch_sensor_periph.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(def.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(ip.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(mem.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(memp.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(icmp.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(err.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/libmbedtls.a(x509_crt_bundle.S.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_opv.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_opvs.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_handler.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opvnt.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_op.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_catch.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_unex_handler.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opv.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_term_handler.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_op.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(tinfo.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(bad_alloc.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_ops.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_ashldi3.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_lshrdi3.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_bswapsi2.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_bswapdi2.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divsf3.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_floatdisf.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_addsubdf3.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_muldf3.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divdf3.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_fixdfsi.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_fixunsdfsi.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_floatsidf.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_extendsfdf2.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_ffsdi2.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_popcountsi2.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divdi3.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_moddi3.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_udivdi3.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_umoddi3.o) + .xtensa.info 0x00000038 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-atoi.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-div.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-environ.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-itoa.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-rand.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtol.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-utoa.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ctype_.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-qsort.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fclose.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ferror.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fflush.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fgets.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-findfp.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fopen.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fprintf.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputc.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputs.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fread.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseek.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftell.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fvwrite.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fwalk.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fwrite.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-printf.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putc.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putchar.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-puts.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-refill.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-remove.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-rename.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setbuf.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setvbuf.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-snprintf.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sprintf.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-stdio.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vprintf.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vsnprintf.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wbuf.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wsetup.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseeko.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftello.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-bzero.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memchr.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memcmp.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memmove.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcat.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strchr.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcspn.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strdup.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strdup_r.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror_r.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlcat.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlcpy.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strncmp.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strnlen.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strrchr.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtok.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtok_r.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strstr.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gmtime.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gmtime_r.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-lcltime_r.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mktime.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-month_lengths.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-time.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzcalc_limits.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzlock.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset_r.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzvars.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-reent.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-impure.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-errno.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sysgettod.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sysstat.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memcpy.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memset.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcmp.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcpy.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlen.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strncpy.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-getenv_r.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoul.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-siscanf.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfiprintf.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-flags.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-makebuf.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sccl.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ungetc.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-u_strerr.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gettzinfo.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-locale.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-localeconv.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libm_a-s_frexp.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-envlock.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mbtowc_r.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wctomb_r.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoll.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoull.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mbrtowc.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-iswspace.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-iswspace_l.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiprintf.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_cmpdf2.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_truncdfsf2.o) + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + .xtensa.info 0x00000038 0x0 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtn.o + +.xt.prop 0x00000000 0x510 + *(.xt.prop .xt.prop.* .gnu.linkonce.prop.*) + .xt.prop._ZN14intrusive_listI14NVSHandleEntryE5eraseENS1_8iteratorE + 0x00000000 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE17clearAndFreeNodesEv + 0x00000054 0x6c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x78 (size before relaxing) + .xt.prop._ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE5eraseENS3_8iteratorE + 0x000000c0 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xt.prop._ZN19CompressedEnumTableIbLj1ELj256EE3setEjb + 0x00000114 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE9push_backEPS2_ + 0x00000144 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xt.prop._ZTVN3nvs15NVSHandleSimpleE + 0x00000180 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .xt.prop._ZN3nvs12NVSPartitionD5Ev + 0x0000018c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0xc (size before relaxing) + .xt.prop._ZN3nvs12NVSPartitionD2Ev + 0x0000018c 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .xt.prop._ZN3nvs12NVSPartitionD0Ev + 0x000001b0 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .xt.prop._ZTVN3nvs12NVSPartitionE + 0x000001d4 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + .xt.prop._ZN3nvs19NVSPartitionManagerD5Ev + 0x000001e0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0xc (size before relaxing) + .xt.prop._ZN3nvs19NVSPartitionManagerD2Ev + 0x000001e0 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.prop._ZN3nvs19NVSPartitionManagerD0Ev + 0x00000204 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs12NVSPartitionEE5eraseENS2_8iteratorE + 0x00000228 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs15NVSHandleSimpleEE5eraseENS2_8iteratorE + 0x0000027c 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.prop._ZTVN3nvs19NVSPartitionManagerE + 0x000002d0 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs8HashList13HashListBlockEE5eraseENS3_8iteratorE + 0x000002dc 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .xt.prop._ZN3nvs4ItemC5EhNS_8ItemTypeEhPKch + 0x00000330 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0xc (size before relaxing) + .xt.prop._ZN3nvs20isVariableLengthTypeENS_8ItemTypeE + 0x00000330 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .xt.prop._ZN3nvs4ItemC2EhNS_8ItemTypeEhPKch + 0x00000360 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .xt.prop._ZNK19CompressedEnumTableIN3nvs4Page10EntryStateELj2ELj126EE3getEjPS2_ + 0x0000039c 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .xt.prop._ZN19CompressedEnumTableIN3nvs4Page10EntryStateELj2ELj126EE3setEjS2_ + 0x000003cc 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs4PageEE5clearEv + 0x000003fc 0x48 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs4PageEE9push_backEPS1_ + 0x00000444 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .xt.prop._ZN14intrusive_listIN3nvs4PageEE5eraseENS2_8iteratorE + 0x00000480 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .xt.prop._ZTISt9exception + 0x000004d4 0xc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_op.o) + .xt.prop._ZTISt9bad_alloc + 0x000004e0 0xc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_op.o) + .xt.prop._ZTVN10__cxxabiv120__si_class_type_infoE + 0x000004ec 0xc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) + .xt.prop._ZTVSt9bad_alloc + 0x000004f8 0xc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(bad_alloc.o) + .xt.prop._ZTVN10__cxxabiv117__class_type_infoE + 0x00000504 0xc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) + +.xt.lit 0x00000000 0x8 + *(.xt.lit .xt.lit.* .gnu.linkonce.p.*) + .xt.lit._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE17clearAndFreeNodesEv + 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .xt.lit._ZN3nvs12NVSPartitionD5Ev + 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + 0x8 (size before relaxing) + .xt.lit._ZN3nvs19NVSPartitionManagerD5Ev + 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x8 (size before relaxing) + .xt.lit._ZN3nvs4ItemC5EhNS_8ItemTypeEhPKch + 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x8 (size before relaxing) + .xt.lit._ZN14intrusive_listIN3nvs4PageEE5clearEv + 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + +/DISCARD/ + *(.fini) + *(.eh_frame_hdr) + *(.eh_frame) + 0x00000001 ASSERT (((_iram_end - ORIGIN (iram0_0_seg)) <= LENGTH (iram0_0_seg)), IRAM0 segment data does not fit.) + 0x00000001 ASSERT (((_heap_low_start - ORIGIN (dram0_0_seg)) <= LENGTH (dram0_0_seg)), DRAM segment data does not fit.) +OUTPUT(internal_communication.elf elf32-xtensa-le) + +Cross Reference Table + +Symbol File +APRecvBcnStartTick /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ApFreqCalTimer /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +BAROFDMSched /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +BT_init_rx_filters /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) +BT_tx_8m_enable /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) +BT_tx_if_init /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) +BasicOFDMSched /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +BcnInterval /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +BcnSendTick /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +Cache_Flush_rom esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +Cache_Read_Disable_rom esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +Cache_Read_Enable_rom esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +CanDoFreqCal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +CurFreeSigIdx /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +CurSigIdxToBeUse /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +DefFreqCalTimer /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +DefFreqCalTimerCB /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +EFUSE esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +ESP_EFUSE_ABS_DONE_0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ABS_DONE_1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC1_TP_HIGH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC1_TP_LOW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC2_TP_HIGH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC2_TP_LOW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC_VREF esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_BLK3_PART_RESERVE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_BLOCK1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_BLOCK2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CHIP_CPU_FREQ_LOW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CHIP_CPU_FREQ_RATED esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CHIP_PACKAGE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +ESP_EFUSE_CHIP_PACKAGE_4BIT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CHIP_VER_REV1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CHIP_VER_REV2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CLK8M_FREQ esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CODING_SCHEME esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CONSOLE_DEBUG_DISABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_CUSTOM_MAC_CRC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) +ESP_EFUSE_DISABLE_APP_CPU esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DISABLE_BT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DISABLE_DL_CACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_DISABLE_DL_DECRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_DISABLE_DL_ENCRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_DISABLE_SDIO_HOST esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_CACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_FLASH_CRYPT_CNT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_FLASH_CRYPT_CONFIG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_JTAG_DISABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_KEY_STATUS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_MAC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) +ESP_EFUSE_MAC_CRC 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_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_MAC_VERSION 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_RD_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_ADC1_TP_HIGH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_ADC1_TP_LOW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_ADC2_TP_HIGH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_ADC2_TP_LOW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_BLK3_PART_RESERVE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_BLOCK1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_RD_DIS_BLOCK2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_RD_DIS_BLOCK3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_RD_DIS_CODING_SCHEME esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_CUSTOM_MAC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_CUSTOM_MAC_CRC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_FLASH_CRYPT_CONFIG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_KEY_STATUS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_MAC_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_SECURE_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SECURE_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_CLK esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_CS0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_D esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_HD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_Q esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_UART_DOWNLOAD_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +ESP_EFUSE_VOL_LEVEL_HP_INV esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WAFER_VERSION_MINOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ABS_DONE_0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ABS_DONE_1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_TP_HIGH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_TP_LOW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC2_TP_HIGH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC2_TP_LOW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC_VREF esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_BLK3_PART_RESERVE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_BLOCK1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_WR_DIS_BLOCK2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_WR_DIS_BLOCK3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_WR_DIS_CLK8M_FREQ esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_CODING_SCHEME esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_CONSOLE_DEBUG_DISABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_CUSTOM_MAC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_CUSTOM_MAC_CRC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DISABLE_APP_CPU esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DISABLE_BT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DISABLE_DL_CACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DISABLE_DL_DECRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DISABLE_DL_ENCRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_CACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_WR_DIS_FLASH_CRYPT_CNT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_WR_DIS_FLASH_CRYPT_CONFIG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_JTAG_DISABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_KEY_STATUS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_MAC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_MAC_CRC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_MAC_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_RD_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SECURE_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CLK esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CS0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_Q esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_UART_DOWNLOAD_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_VOL_LEVEL_HP_INV esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_WR_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_XPD_SDIO_FORCE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_XPD_SDIO_REG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_XPD_SDIO_TIEH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_XPD_SDIO_FORCE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_XPD_SDIO_REG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_XPD_SDIO_TIEH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +FreeRTOS_openocd_params esp-idf/freertos/libfreertos.a(tasks.c.obj) +GPIO esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/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) + 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) +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(uart.c.obj) + esp-idf/driver/libdriver.a(ledc.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +GPIO_PIN_MUX_REG_OFFSET esp-idf/soc/libsoc.a(gpio_periph.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) +GetAccess /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +HighestFreqOffsetInOneChk /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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(mesh_main.c.obj) +LEDC esp-idf/hal/libhal.a(ledc_hal.c.obj) + esp-idf/driver/libdriver.a(ledc.c.obj) +LowestFreqOffsetInOneChk /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +MESH_EVENT esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + esp-idf/main/libmain.a(mesh_main.c.obj) +MPI_LL_BLOCK_BASES esp-idf/soc/libsoc.a(mpi_periph.c.obj) + esp-idf/hal/libhal.a(mpi_hal.c.obj) +MPI_LL_OPERATIONS esp-idf/soc/libsoc.a(mpi_periph.c.obj) + esp-idf/hal/libhal.a(mpi_hal.c.obj) +NAN_ACTION_OUI /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +NAN_NETWORK_ID /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +NAN_STANDARD_BSSID /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +NAN_STANDARD_OUI /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +NoiseTimerInterval /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +RC_GetAckRate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) +RC_GetAckTime /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +RC_GetBlockAckTime /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +RC_GetCtsTime /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +RC_GetRtsRate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) +RC_SetBasicRate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +RFChannelSel /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) +RTCCNTL esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/hal/libhal.a(brownout_hal.c.obj) + esp-idf/hal/libhal.a(wdt_hal_iram.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(panic.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +RTCIO esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) +RxNodeNum /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +SENS esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) +SPI0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +SPI1 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) +SPI2 esp-idf/soc/libsoc.a(spi_periph.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) +SPI3 esp-idf/soc/libsoc.a(spi_periph.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) +SigInMacISR /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +SigSpaceFree /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +SigSpaceMalloc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +TIMERG0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/hal/libhal.a(wdt_hal_iram.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(panic.c.obj) +TIMERG1 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) +TRC_AMPDU_PER_DOWN_THRESHOLD /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +TRC_AMPDU_PER_UP_THRESHOLD /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +TRC_PER_IS_GOOD /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +TmpSTAAPCloseAP /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +TxNodeNum /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +TxRxCxt /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +UART0 esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +UART1 esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) +UART2 esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) +WIFI_EVENT esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +WIFI_MESH_EVENT /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +Xthal_intlevel /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) +_Balloc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) +_Bfree /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) +_DebugExceptionVector esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_DoubleExceptionVector esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_ITM_deregisterTMCloneTable /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o +_ITM_registerTMCloneTable /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o +_KernelExceptionVector esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_Level2Vector esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_Level3Vector esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_Level4Vector esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_Level5Vector esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_NMIExceptionVector esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_PathLocale /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-locale.o) +_UserExceptionVector esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_WindowOverflow12 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_WindowOverflow4 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_WindowOverflow8 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_WindowUnderflow12 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_WindowUnderflow4 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_WindowUnderflow8 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_Z17__frame_state_forPvP11frame_state esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +_ZGTtNKSt13bad_exception4whatEv /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) +_ZGTtNKSt13bad_exceptionD1Ev /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) +_ZGTtNKSt9exception4whatEv /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) +_ZGTtNKSt9exceptionD1Ev /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) +_ZN10__cxxabiv111__terminateEPFvvE /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) +_ZN10__cxxabiv112__unexpectedEPFvvE /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) +_ZN10__cxxabiv115__forced_unwindD0Ev /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) +_ZN10__cxxabiv115__forced_unwindD1Ev /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) +_ZN10__cxxabiv115__forced_unwindD2Ev /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) +_ZN10__cxxabiv117__class_type_infoD0Ev /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) +_ZN10__cxxabiv117__class_type_infoD1Ev /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) +_ZN10__cxxabiv117__class_type_infoD2Ev /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) +_ZN10__cxxabiv119__foreign_exceptionD0Ev /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) +_ZN10__cxxabiv119__foreign_exceptionD1Ev /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) +_ZN10__cxxabiv119__foreign_exceptionD2Ev /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) +_ZN10__cxxabiv119__terminate_handlerE /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_term_handler.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) +_ZN10__cxxabiv120__si_class_type_infoD0Ev /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) +_ZN10__cxxabiv120__si_class_type_infoD1Ev /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) +_ZN10__cxxabiv120__si_class_type_infoD2Ev /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) +_ZN10__cxxabiv120__unexpected_handlerE /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_unex_handler.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) +_ZN14NVSHandleEntry17s_nvs_next_handleE esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN14intrusive_listI14NVSHandleEntryE5eraseENS1_8iteratorE esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN14intrusive_listIN3nvs12NVSPartitionEE5eraseENS2_8iteratorE esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +_ZN14intrusive_listIN3nvs15NVSHandleSimpleEE5eraseENS2_8iteratorE esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +_ZN14intrusive_listIN3nvs4PageEE5clearEv esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +_ZN14intrusive_listIN3nvs4PageEE5eraseENS2_8iteratorE esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +_ZN14intrusive_listIN3nvs4PageEE9push_backEPS1_ esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +_ZN14intrusive_listIN3nvs7Storage13BlobIndexNodeEE5eraseENS3_8iteratorE esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE17clearAndFreeNodesEv esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE9push_backEPS2_ esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN14intrusive_listIN3nvs8HashList13HashListBlockEE5eraseENS3_8iteratorE esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) +_ZN17__eh_globals_init7_S_initE /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) +_ZN19CompressedEnumTableIN3nvs4Page10EntryStateELj2ELj126EE3setEjS2_ esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZN19CompressedEnumTableIbLj1ELj256EE3setEjb esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN3nvs11PageManager12activatePageEv esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +_ZN3nvs11PageManager14requestNewPageEv esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN3nvs11PageManager4loadEPNS_9PartitionEmm esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN3nvs11PageManager9fillStatsER11nvs_stats_t esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN3nvs12NVSPartition11erase_rangeEjj esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +_ZN3nvs12NVSPartition11get_addressEv esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +_ZN3nvs12NVSPartition12get_readonlyEv esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +_ZN3nvs12NVSPartition18get_partition_nameEv esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +_ZN3nvs12NVSPartition4readEjPvj esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) +_ZN3nvs12NVSPartition5writeEjPKvj esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) +_ZN3nvs12NVSPartition8get_sizeEv esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +_ZN3nvs12NVSPartition8read_rawEjPvj esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +_ZN3nvs12NVSPartition9write_rawEjPKvj esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +_ZN3nvs12NVSPartitionC1EPK15esp_partition_t 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) +_ZN3nvs12NVSPartitionC2EPK15esp_partition_t esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +_ZN3nvs12NVSPartitionD0Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) +_ZN3nvs12NVSPartitionD1Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) +_ZN3nvs12NVSPartitionD2Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) +_ZN3nvs15NVSHandleSimple10erase_itemEPKc esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs15NVSHandleSimple10get_stringEPKcPcj esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs15NVSHandleSimple10set_stringEPKcS2_ esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs15NVSHandleSimple11findEntryNsEP21nvs_opaque_iterator_t esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs15NVSHandleSimple13get_item_sizeENS_8ItemTypeEPKcRj esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs15NVSHandleSimple14get_typed_itemENS_8ItemTypeEPKcPvj esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs15NVSHandleSimple14set_typed_itemENS_8ItemTypeEPKcPKvj esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs15NVSHandleSimple20get_used_entry_countERj esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs15NVSHandleSimple22calcEntriesInNamespaceERj esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs15NVSHandleSimple6commitEv esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs15NVSHandleSimple8find_keyEPKcR10nvs_type_t esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs15NVSHandleSimple8get_blobEPKcPvj esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs15NVSHandleSimple8set_blobEPKcPKvj esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs15NVSHandleSimple9debugDumpEv esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs15NVSHandleSimple9erase_allEv esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs15NVSHandleSimple9fillStatsER11nvs_stats_t esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs15NVSHandleSimple9findEntryEP21nvs_opaque_iterator_tPKc esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs15NVSHandleSimple9nextEntryEP21nvs_opaque_iterator_t esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs15NVSHandleSimpleD0Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs15NVSHandleSimpleD1Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs15NVSHandleSimpleD2Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs16partition_lookup20lookup_nvs_partitionEPKcPPNS_12NVSPartitionE esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +_ZN3nvs16partition_lookup30lookup_nvs_encrypted_partitionEPKcP13nvs_sec_cfg_tPPNS_12NVSPartitionE esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +_ZN3nvs19NVSPartitionManager11init_customEPNS_9PartitionEmm esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs19NVSPartitionManager11open_handleEPKcS2_15nvs_open_mode_tPPNS_15NVSHandleSimpleE esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs19NVSPartitionManager12close_handleEPNS_15NVSHandleSimpleE esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs19NVSPartitionManager12get_instanceEv 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) +_ZN3nvs19NVSPartitionManager14init_partitionEPKc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs19NVSPartitionManager16deinit_partitionEPKc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs19NVSPartitionManager17open_handles_sizeEv esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +_ZN3nvs19NVSPartitionManager21secure_init_partitionEPKcP13nvs_sec_cfg_t esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs19NVSPartitionManager24lookup_storage_from_nameEPKc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs19NVSPartitionManager8instanceE esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +_ZN3nvs19NVSPartitionManagerD0Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +_ZN3nvs19NVSPartitionManagerD1Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +_ZN3nvs19NVSPartitionManagerD2Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +_ZN3nvs20isVariableLengthTypeENS_8ItemTypeE esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZN3nvs21NVSEncryptedPartition4initEP13nvs_sec_cfg_t esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) +_ZN3nvs21NVSEncryptedPartition4readEjPvj esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +_ZN3nvs21NVSEncryptedPartition5writeEjPKvj esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +_ZN3nvs21NVSEncryptedPartitionC1EPK15esp_partition_t esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) +_ZN3nvs21NVSEncryptedPartitionC2EPK15esp_partition_t esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +_ZN3nvs21NVSEncryptedPartitionD0Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +_ZN3nvs21NVSEncryptedPartitionD1Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +_ZN3nvs21NVSEncryptedPartitionD2Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +_ZN3nvs4Item14calculateCrc32EPKhj esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZN3nvs4ItemC1EhNS_8ItemTypeEhPKch esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZN3nvs4ItemC2EhNS_8ItemTypeEhPKch esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZN3nvs4Lock10mSemaphoreE esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) +_ZN3nvs4Lock4initEv esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs4Lock6uninitEv esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) +_ZN3nvs4LockC1Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs4LockC2Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) +_ZN3nvs4LockD1Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs4LockD2Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) +_ZN3nvs4Page10initializeEv esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZN3nvs4Page10setVersionEh esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZN3nvs4Page10writeEntryERKNS_4ItemE esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZN3nvs4Page11calcEntriesER11nvs_stats_t esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +_ZN3nvs4Page11markFreeingEv esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +_ZN3nvs4Page12setSeqNumberEm esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +_ZN3nvs4Page14alterPageStateENS0_9PageStateE esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZN3nvs4Page14writeEntryDataEPKhj esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZN3nvs4Page15alterEntryStateEjNS0_10EntryStateE esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZN3nvs4Page15mLoadEntryTableEv esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZN3nvs4Page15pageStateToNameENS0_9PageStateE esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZN3nvs4Page17eraseEntryAndSpanEj esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN3nvs4Page20alterEntryRangeStateEjjNS0_10EntryStateE esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZN3nvs4Page20updateFirstUsedEntryEjj esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZN3nvs4Page4loadEPNS_9PartitionEm esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +_ZN3nvs4Page5eraseEv esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +_ZN3nvs4Page6Header14calculateCrc32Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZN3nvs4Page7cmpItemEhNS_8ItemTypeEPKcPKvjhNS_9VerOffsetE esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN3nvs4Page8findItemEhNS_8ItemTypeEPKcRjRNS_4ItemEhNS_9VerOffsetE 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) +_ZN3nvs4Page8findItemEhNS_8ItemTypeEPKchNS_9VerOffsetE esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZN3nvs4Page8markFullEv esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN3nvs4Page8readItemEhNS_8ItemTypeEPKcPvjhNS_9VerOffsetE esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN3nvs4Page9copyItemsERS0_ esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +_ZN3nvs4Page9eraseItemEhNS_8ItemTypeEPKchNS_9VerOffsetE 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) +_ZN3nvs4Page9writeItemEhNS_8ItemTypeEPKcPKvjh esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN3nvs4PageC1Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +_ZN3nvs4PageC2Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZN3nvs7Storage11findEntryNsEP21nvs_opaque_iterator_th esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs7Storage13fillEntryInfoERNS_4ItemER16nvs_entry_info_t esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN3nvs7Storage14eraseNamespaceEh esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs7Storage15clearNamespacesEv esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN3nvs7Storage15getItemDataSizeEhNS_8ItemTypeEPKcRj esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs7Storage16cmpMultiPageBlobEhPKcPKvj esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN3nvs7Storage17readMultiPageBlobEhPKcPvj esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN3nvs7Storage18eraseMultiPageBlobEhPKcNS_9VerOffsetE esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN3nvs7Storage18writeMultiPageBlobEhPKcPKvjNS_9VerOffsetE esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN3nvs7Storage19populateBlobIndicesER14intrusive_listINS0_13BlobIndexNodeEE esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN3nvs7Storage20eraseOrphanDataBlobsER14intrusive_listINS0_13BlobIndexNodeEE esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN3nvs7Storage21createOrOpenNamespaceEPKcbRh esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +_ZN3nvs7Storage22calcEntriesInNamespaceEhRj esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs7Storage26eraseMismatchedBlobIndexesER14intrusive_listINS0_13BlobIndexNodeEE esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN3nvs7Storage4initEmm esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +_ZN3nvs7Storage7findKeyEhPKcPNS_8ItemTypeE esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs7Storage8findItemEhNS_8ItemTypeEPKcRPNS_4PageERNS_4ItemEhNS_9VerOffsetE esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN3nvs7Storage8readItemEhNS_8ItemTypeEPKcPvj esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs7Storage9debugDumpEv 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) +_ZN3nvs7Storage9eraseItemEhNS_8ItemTypeEPKc esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs7Storage9fillStatsER11nvs_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) +_ZN3nvs7Storage9findEntryEP21nvs_opaque_iterator_tPKc 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) +_ZN3nvs7Storage9nextEntryEP21nvs_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) +_ZN3nvs7Storage9writeItemEhNS_8ItemTypeEPKcPKvj esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs7StorageD1Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +_ZN3nvs7StorageD2Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN3nvs8HashList13HashListBlockC1Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) +_ZN3nvs8HashList13HashListBlockC2Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) +_ZN3nvs8HashList4findEjRKNS_4ItemE esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZN3nvs8HashList5clearEv esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZN3nvs8HashList5eraseEj esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZN3nvs8HashList6insertERKNS_4ItemEj esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZN3nvs8HashListC1Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZN3nvs8HashListC2Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) +_ZN3nvs8HashListD1Ev 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) +_ZN3nvs8HashListD2Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) +_ZNK10__cxxabiv117__class_type_info10__do_catchEPKSt9type_infoPPvj /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) +_ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PKvRNS0_15__upcast_resultE /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) +_ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PPv /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) +_ZNK10__cxxabiv117__class_type_info12__do_dyncastEiNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) +_ZNK10__cxxabiv117__class_type_info20__do_find_public_srcEiPKvPKS0_S2_ /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) +_ZNK10__cxxabiv120__si_class_type_info11__do_upcastEPKNS_17__class_type_infoEPKvRNS1_15__upcast_resultE /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) +_ZNK10__cxxabiv120__si_class_type_info12__do_dyncastEiNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) +_ZNK10__cxxabiv120__si_class_type_info20__do_find_public_srcEiPKvPKNS_17__class_type_infoES2_ /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) +_ZNK19CompressedEnumTableIN3nvs4Page10EntryStateELj2ELj126EE3getEjPS2_ esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZNK3nvs15NVSHandleSimple11get_storageEv esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZNK3nvs15NVSHandleSimple18get_partition_nameEv esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZNK3nvs4Item14calculateCrc32Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZNK3nvs4Item26calculateCrc32WithoutValueEv esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) +_ZNK3nvs4Page12getSeqNumberERm esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +_ZNK3nvs4Page18getVarDataTailroomEv esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZNK3nvs4Page9debugDumpEv esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZNK3nvs4Page9readEntryEjRNS_4ItemE esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZNK3nvs7Storage7isValidEv esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZNKSt13bad_exception4whatEv /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) +_ZNKSt9bad_alloc4whatEv /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(bad_alloc.o) +_ZNKSt9exception4whatEv /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) +_ZNKSt9type_info10__do_catchEPKS_PPvj /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(tinfo.o) +_ZNKSt9type_info11__do_upcastEPKN10__cxxabiv117__class_type_infoEPPv /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(tinfo.o) +_ZNKSt9type_info14__is_pointer_pEv /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(tinfo.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) +_ZNKSt9type_info15__is_function_pEv /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(tinfo.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) +_ZNSt13bad_exceptionD0Ev /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) +_ZNSt13bad_exceptionD1Ev /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) +_ZNSt13bad_exceptionD2Ev /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) +_ZNSt9bad_allocD0Ev /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(bad_alloc.o) +_ZNSt9bad_allocD1Ev /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(bad_alloc.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_op.o) +_ZNSt9bad_allocD2Ev /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(bad_alloc.o) +_ZNSt9exceptionD0Ev /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) +_ZNSt9exceptionD1Ev /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) +_ZNSt9exceptionD2Ev /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(bad_alloc.o) +_ZNSt9type_infoD0Ev /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(tinfo.o) +_ZNSt9type_infoD1Ev /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(tinfo.o) +_ZNSt9type_infoD2Ev /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(tinfo.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) +_ZSt10unexpectedv /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) +_ZSt13get_terminatev /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) +_ZSt13set_terminatePFvvE /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) +_ZSt14get_unexpectedv /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) +_ZSt14set_unexpectedPFvvE /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) +_ZSt15get_new_handlerv /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_handler.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_op.o) +_ZSt15set_new_handlerPFvvE /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_handler.o) +_ZSt18uncaught_exceptionv /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_catch.o) +_ZSt19uncaught_exceptionsv /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_catch.o) +_ZSt7nothrow /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_handler.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZSt9terminatev /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_unex_handler.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_catch.o) +_ZTISt9bad_alloc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_op.o) +_ZTISt9exception /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_op.o) +_ZTSSt9bad_alloc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_op.o) +_ZTSSt9exception /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_op.o) +_ZTVN10__cxxabiv115__forced_unwindE /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) +_ZTVN10__cxxabiv117__class_type_infoE /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_op.o) +_ZTVN10__cxxabiv119__foreign_exceptionE /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) +_ZTVN10__cxxabiv120__si_class_type_infoE /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_op.o) +_ZTVN3nvs12NVSPartitionE esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) +_ZTVN3nvs15NVSHandleSimpleE esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +_ZTVN3nvs19NVSPartitionManagerE esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +_ZTVN3nvs21NVSEncryptedPartitionE esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +_ZTVSt13bad_exception /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) +_ZTVSt9bad_alloc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(bad_alloc.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_op.o) +_ZTVSt9exception /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) +_ZTVSt9type_info /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(tinfo.o) +_ZdaPv /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_opv.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_opvs.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZdaPvj /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/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) +_ZdlPv /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_op.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_ops.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_opv.o) +_ZdlPvj /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(del_ops.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(bad_alloc.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(tinfo.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) +_Znaj /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opv.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opvnt.o) +_ZnajRKSt9nothrow_t /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opvnt.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_Znwj /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_op.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opv.o) +__DTOR_END__ /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o +__TMC_END__ /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtend.o + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crtbegin.o +__action_table /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfiprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) +__adddf3 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_addsubdf3.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__any_on /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) +__ascii_mbtowc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mbtowc_r.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-locale.o) +__ascii_wctomb /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wctomb_r.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-locale.o) +__ashldi3 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_ashldi3.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.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/driver/libdriver.a(gpio.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +__assert esp-idf/newlib/libnewlib.a(assert.c.obj) +__assert_func esp-idf/newlib/libnewlib.a(assert.c.obj) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gmtime.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtok.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-rand.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.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(inet_chksum.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(dhcpserver.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(memp.c.obj) + esp-idf/lwip/liblwip.a(mem.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.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/hal/libhal.a(mpi_hal.c.obj) + esp-idf/hal/libhal.a(clk_tree_hal.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/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(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.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(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + esp-idf/hal/libhal.a(ledc_hal_iram.c.obj) + esp-idf/hal/libhal.a(rtc_io_hal.c.obj) + esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(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_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(ledc.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_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_uart.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/freertos/libfreertos.a(port_common.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/log/liblog.a(log.c.obj) + esp-idf/hal/libhal.a(wdt_hal_iram.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(esp_ipc_isr.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 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) +__bswapdi2 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_bswapdi2.o) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +__bswapsi2 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_bswapsi2.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) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.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(ieee802_11_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.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/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/lwip/liblwip.a(def.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) + esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +__chclass /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfiprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) +__copybits /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) +__cxa_begin_catch /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_catch.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opvnt.o) +__cxa_end_catch /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_catch.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opvnt.o) +__cxa_get_exception_ptr /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_catch.o) +__cxa_get_globals /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_catch.o) +__cxa_get_globals_fast /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_catch.o) +__cxa_guard_abort esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) +__cxa_guard_acquire esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) +__cxa_guard_dummy esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) +__cxa_guard_release esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) +__cxa_pure_virtual /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_exception.o) +__cxx_eh_arena_size_get esp-idf/esp_system/libesp_system.a(startup.c.obj) +__d2b /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) +__default_global_locale /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-locale.o) +__divdf3 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divdf3.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__divdi3 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divdi3.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gmtime_r.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/driver/libdriver.a(ledc.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_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +__divsf3 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_divsf3.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__env_lock /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-envlock.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-getenv_r.o) +__env_lock_object esp-idf/newlib/libnewlib.a(locks.c.obj) +__env_unlock /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-envlock.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-getenv_r.o) +__eqdf2 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_cmpdf2.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) +__errno /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-errno.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtol.o) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.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) + esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) +__extendsfdf2 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_extendsfdf2.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__ffsdi2 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_ffsdi2.o) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) +__fixdfsi /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_fixdfsi.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__fixunsdfsi /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_fixunsdfsi.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__floatdisf /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_floatdisf.o) +__floatsidf /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_floatsidf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__floatundisf /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_floatdisf.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +__floatunsidf /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_floatsidf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__fp_lock_all /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-findfp.o) +__fp_unlock_all /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-findfp.o) +__gedf2 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_cmpdf2.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) +__getreent esp-idf/freertos/libfreertos.a(tasks.c.obj) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mbrtowc.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoull.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoll.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-locale.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ungetc.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfiprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-siscanf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoul.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sysstat.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sysgettod.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-errno.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-time.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gmtime.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtok.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror_r.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strdup.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftello.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseeko.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wsetup.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wbuf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vsnprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-snprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setvbuf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-rename.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-remove.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-refill.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-puts.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putchar.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putc.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-printf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fwrite.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftell.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseek.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fread.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputs.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputc.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fopen.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fgets.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fflush.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ferror.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fclose.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtol.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-rand.o) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(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) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +__gettzinfo /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gettzinfo.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset_r.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzcalc_limits.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mktime.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-lcltime_r.o) +__global_locale_ptr /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-locale.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mbrtowc.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wctomb_r.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mbtowc_r.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-localeconv.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) +__gtdf2 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_cmpdf2.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) +__hi0bits /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) +__hide_aliasing_typecast esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +__i2b /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_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 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-itoa.o) +__ledf2 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_cmpdf2.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) +__lo0bits /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) +__locale_mb_cur_max /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-locale.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) +__localeconv_l /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-localeconv.o) +__lock___arc4random_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) +__lock___at_quick_exit_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) +__lock___atexit_recursive_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) +__lock___dd_hash_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) +__lock___env_recursive_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-envlock.o) +__lock___malloc_recursive_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) +__lock___sfp_recursive_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-findfp.o) +__lock___sinit_recursive_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) +__lock___tz_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzlock.o) +__lshift /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) +__lshrdi3 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_lshrdi3.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.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/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(ledc.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_utility.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +__ltdf2 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_cmpdf2.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) +__mcmp /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) +__mdiff /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) +__moddi3 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_moddi3.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gmtime_r.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + esp-idf/newlib/libnewlib.a(time.c.obj) +__month_lengths /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-month_lengths.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzcalc_limits.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-lcltime_r.o) +__mprec_bigtens /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) +__mprec_tens /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) +__mprec_tinytens /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) +__muldf3 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_muldf3.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libm_a-s_frexp.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__multadd /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) +__multiply /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) +__nedf2 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_cmpdf2.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) +__popcountsi2 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_popcountsi2.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +__pow5mult /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) +__ratio /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) +__retarget_lock_acquire esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzlock.o) +__retarget_lock_acquire_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-envlock.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ungetc.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfiprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftello.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseeko.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setvbuf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-puts.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putc.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fwrite.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fread.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputs.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputc.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fopen.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-findfp.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fgets.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fflush.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ferror.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fclose.o) +__retarget_lock_close esp-idf/newlib/libnewlib.a(locks.c.obj) +__retarget_lock_close_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfiprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fopen.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fclose.o) +__retarget_lock_init esp-idf/newlib/libnewlib.a(locks.c.obj) +__retarget_lock_init_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfiprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-findfp.o) +__retarget_lock_release esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzlock.o) +__retarget_lock_release_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-envlock.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ungetc.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfiprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftello.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseeko.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setvbuf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-puts.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putc.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fwrite.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fread.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputs.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputc.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fopen.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-findfp.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fgets.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fflush.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ferror.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fclose.o) +__retarget_lock_try_acquire esp-idf/newlib/libnewlib.a(locks.c.obj) +__retarget_lock_try_acquire_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) +__s2b /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) +__sccl /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sccl.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) +__sclose /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-stdio.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fopen.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-findfp.o) +__seofread /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-stdio.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-siscanf.o) +__sf /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-findfp.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-impure.o) +__sflags /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-flags.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fopen.o) +__sflush_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fflush.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-refill.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fclose.o) +__sfp /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-findfp.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fopen.o) +__sfp_lock esp-idf/newlib/libnewlib.a(locks.c.obj) +__sfp_lock_acquire /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-findfp.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fopen.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fclose.o) +__sfp_lock_release /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-findfp.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fopen.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fclose.o) +__sfvwrite_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fvwrite.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfiprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-puts.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fwrite.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputs.o) +__sglue /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-findfp.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-refill.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fflush.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) +__sinit /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-findfp.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ungetc.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfiprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftello.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseeko.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wsetup.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wbuf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setvbuf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-refill.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-puts.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putc.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fwrite.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fread.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputs.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputc.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fgets.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fflush.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ferror.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fclose.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__sinit_lock esp-idf/newlib/libnewlib.a(locks.c.obj) +__smakebuf_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-makebuf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseeko.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wsetup.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-refill.o) +__sprint_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfiprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) +__sread /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-stdio.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fopen.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-findfp.o) +__srefill_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-refill.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseeko.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fread.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fgets.o) +__sseek /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-stdio.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseeko.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fopen.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-findfp.o) +__ssprint_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) +__ssrefill_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) +__ssvfiscanf_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-siscanf.o) +__state_table /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfiprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) +__stdio_exit_handler /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-findfp.o) +__strtok_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtok_r.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtok.o) +__subdf3 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_addsubdf3.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) +__submore /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ungetc.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) +__swbuf /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wbuf.o) +__swbuf_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wbuf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putc.o) +__swhatbuf_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-makebuf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setvbuf.o) +__swrite /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-stdio.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fopen.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-findfp.o) +__swsetup_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wsetup.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfiprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wbuf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fvwrite.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +__truncdfsf2 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_truncdfsf2.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +__tz_lock /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzlock.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset_r.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mktime.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-lcltime_r.o) +__tz_lock_object esp-idf/newlib/libnewlib.a(locks.c.obj) +__tz_unlock /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzlock.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset_r.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mktime.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-lcltime_r.o) +__tzcalc_limits /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzcalc_limits.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset_r.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mktime.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_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 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_udivdi3.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoull.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoll.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfiprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) + esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/driver/libdriver.a(ledc.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.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_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +__ulp /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) +__umoddi3 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_umoddi3.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoull.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoll.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfiprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) +__unorddf2 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/libgcc.a(_cmpdf2.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) +__utoa /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-utoa.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-itoa.o) +__wpa_send_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +__wrap__Unwind_Backtrace esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_DeleteException esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_catch.o) +__wrap__Unwind_FindEnclosingFunction esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_Find_FDE esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_ForcedUnwind esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_GetCFA esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_GetDataRelBase esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_GetGR esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_GetIP esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_GetIPInfo esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_GetLanguageSpecificData esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_GetRegionStart esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_GetTextRelBase esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_RaiseException esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_Resume esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_Resume_or_Rethrow esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap__Unwind_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_allocate_exception esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_op.o) +__wrap___cxa_call_unexpected esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap___cxa_throw esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_op.o) +__wrap___deregister_frame esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap___deregister_frame_info esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/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) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_opvnt.o) +__wrap___register_frame esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__wrap___register_frame_info esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/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 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-atoi.o) +_binary_x509_crt_bundle_end esp-idf/mbedtls/libmbedtls.a(x509_crt_bundle.S.obj) + esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) +_binary_x509_crt_bundle_start esp-idf/mbedtls/libmbedtls.a(x509_crt_bundle.S.obj) + esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) +_bss_end esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +_bss_start esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +_calloc_r esp-idf/newlib/libnewlib.a(heap.c.obj) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_close_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-stdio.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_cnx_start_connect_without_scan /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +_ctype_ /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ctype_.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-iswspace_l.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoull.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoll.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-locale.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoul.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtol.o) + esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) +_data_start esp-idf/heap/libheap.a(memory_layout.c.obj) +_daylight /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzvars.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset_r.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mktime.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-lcltime_r.o) +_do_wifi_start /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +_do_wifi_stop /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +_dtoa_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) +_esp_error_check_failed esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/main/libmain.a(mesh_main.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +_esp_error_check_failed_without_abort esp-idf/esp_system/libesp_system.a(esp_err.c.obj) +_esp_system_init_fn_array_end esp-idf/esp_system/libesp_system.a(startup.c.obj) +_esp_system_init_fn_array_start esp-idf/esp_system/libesp_system.a(startup.c.obj) +_exit esp-idf/newlib/libnewlib.a(syscalls.c.obj) +_fclose_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fclose.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-findfp.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_fcntl_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) +_fflush_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fflush.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ungetc.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfiprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseeko.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wbuf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setvbuf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-refill.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fvwrite.o) +_fgets_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fgets.o) +_findenv_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-getenv_r.o) +_fini /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/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 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fopen.o) +_fprintf_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fprintf.o) +_fputc_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputc.o) +_fputs_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputs.o) +_fread_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fread.o) +_free_r esp-idf/newlib/libnewlib.a(heap.c.obj) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-reent.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseeko.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wsetup.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setvbuf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-refill.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fvwrite.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fflush.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fclose.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_frxt_coproc_exc_hook esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_frxt_dispatch esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +_frxt_int_enter esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_frxt_int_exit esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_frxt_setup_switch esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(ledc.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/xtensa/libxtensa.a(xtensa_vectors.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) +_frxt_tick_timer_init esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +_frxt_timer_int esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_fseek_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseek.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fopen.o) +_fseeko_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseeko.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseek.o) +_fstat_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-makebuf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseeko.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_ftell_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftell.o) +_ftello_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftello.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftell.o) +_fwalk_sglue /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fwalk.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-refill.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-findfp.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fflush.o) +_fwrite_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fwrite.o) +_g_esp_netif_inherent_ap_config esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +_g_esp_netif_inherent_eth_config esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) +_g_esp_netif_inherent_sta_config esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +_g_esp_netif_netstack_default_eth esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) +_g_esp_netif_netstack_default_wifi_ap esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +_g_esp_netif_netstack_default_wifi_nan esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) +_g_esp_netif_netstack_default_wifi_sta esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +_g_esp_netif_soft_ap_ip esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) +_getenv_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-getenv_r.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_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) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sysgettod.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-time.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_global_impure_ptr esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_heap_start esp-idf/heap/libheap.a(memory_layout.c.obj) +_impure_data /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-impure.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-refill.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-findfp.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fflush.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +_impure_ptr /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-impure.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-reent.o) +_init /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/esp32/no-rtti/crti.o +_instruction_reserved_end esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +_instruction_reserved_start esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +_invalid_pc_placeholder esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +_iram_end esp-idf/heap/libheap.a(memory_layout.c.obj) +_iram_start esp-idf/heap/libheap.a(memory_layout.c.obj) +_isatty_r esp-idf/newlib/libnewlib.a(syscalls.c.obj) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_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 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-localeconv.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfiprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) +_lock_acquire esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(ledc.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/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) +_lock_acquire_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +_lock_close esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_lock_close_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +_lock_init esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_lock_init_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +_lock_release esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(ledc.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/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) +_lock_release_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +_lock_try_acquire esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_lock_try_acquire_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_lseek_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-stdio.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_malloc_r esp-idf/newlib/libnewlib.a(heap.c.obj) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ungetc.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-makebuf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset_r.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strdup_r.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fvwrite.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-findfp.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_mbrtowc_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mbrtowc.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) +_mbtowc_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mbtowc_r.o) +_mesh_check_roots_gone /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_check_window_close_expire /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_check_window_open_expire /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_find_root_competitor /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +_mesh_remove_gone /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_reset_window_open_time /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_roots_num_reach_max /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_roots_process_announce /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_roots_process_conflict_table /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_roots_process_fixed /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_roots_process_gone /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_roots_process_stop /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_roots_process_yield /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_set_flag_roots_found /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_timer_process_announce /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_timer_process_conflict_root /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_timer_process_fixed /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_timer_process_gone /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_timer_process_yield /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mprec_log10 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) +_open_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fopen.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_print_roots_count /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_printf_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-printf.o) +_putc_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putc.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putchar.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputc.o) +_putchar_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putchar.o) +_puts_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_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) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-stdio.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_read_r_console esp-idf/newlib/libnewlib.a(syscalls.c.obj) +_realloc_r esp-idf/newlib/libnewlib.a(heap.c.obj) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ungetc.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fvwrite.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_reclaim_reent /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-reent.o) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +_remove_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-remove.o) +_rename_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-rename.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_rodata_reserved_end esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +_rodata_reserved_start esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +_rtc_bss_end esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +_rtc_bss_start esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +_rtc_fast_reserved_end esp-idf/heap/libheap.a(memory_layout.c.obj) +_rtc_fast_reserved_start esp-idf/heap/libheap.a(memory_layout.c.obj) +_rtc_reserved_length esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +_rtc_slow_length esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +_rtc_slow_reserved_end esp-idf/heap/libheap.a(memory_layout.c.obj) +_rtc_slow_reserved_start esp-idf/heap/libheap.a(memory_layout.c.obj) +_sbrk_r esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_setlocale_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-locale.o) +_sfread_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) +_siscanf_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-siscanf.o) +_snprintf_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-snprintf.o) +_sprintf_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sprintf.o) +_start /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o +_stat_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sysstat.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_strdup_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strdup_r.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strdup.o) +_strerror_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror_r.o) +_strtol_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtol.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-atoi.o) +_strtoll_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoll.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) +_strtoul_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoul.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) +_strtoull_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoull.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) +_sungetc_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) +_svfiprintf_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiprintf.o) +_svfprintf_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vsnprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_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 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzvars.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset_r.o) +_tzname /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzvars.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset_r.o) +_tzset_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset_r.o) +_tzset_unlocked /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mktime.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-lcltime_r.o) +_tzset_unlocked_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset_r.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset.o) +_ungetc_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ungetc.o) +_unlink_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-remove.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_user_strerror /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-u_strerr.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror.o) +_vector_table esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +_vfiprintf_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfiprintf.o) +_vfprintf_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-printf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fprintf.o) +_vprintf_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vprintf.o) +_vsnprintf_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vsnprintf.o) +_wctomb_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-wctomb_r.o) +_wifi_vnd_ext_mesh_roots_free /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_wifi_vnd_ext_mesh_roots_malloc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_write_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-stdio.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +_write_r_console esp-idf/newlib/libnewlib.a(syscalls.c.obj) +_xt_alloca_exc esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_xt_context_restore esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) +_xt_context_save esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) +_xt_coproc_init esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +_xt_coproc_owner_sa esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) +_xt_coproc_owner_sa_lock esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) +_xt_coproc_release esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +_xt_coproc_restorecs esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_xt_coproc_sa_offset esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) +_xt_coproc_savecs esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +_xt_exception_table esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) +_xt_interrupt_table esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) +_xt_medint2_exit esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_xt_medint3_exit esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_xt_panic esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_xt_tick_divisor esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +_xt_tick_divisor_init esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +_xt_user_exit esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +_xtos_set_intlevel esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) +abort esp-idf/newlib/libnewlib.a(abort.c.obj) + esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_term_handler.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_terminate.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + 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) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.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/hal/libhal.a(cache_hal_esp32.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(esp_flash_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/driver/libdriver.a(uart.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(port.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/hal/libhal.a(wdt_hal_iram.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) +action_q /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +adc1_amp_read /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +adc1_amp_read_full /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +adc1_pad_init /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +adc1_read /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +adc1_read_test /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +adc2_pad_init /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +adc2_read /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +adc2_read_test /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +adc2_wifi_acquire /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +adc2_wifi_release /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +adc_ana_conf_org /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +adc_pad_init /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +adc_pad_int /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +add_mic_ie_bip /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +addba_timeout_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +adjtime esp-idf/newlib/libnewlib.a(time.c.obj) +aes_128_cbc_decrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +aes_128_cbc_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +aes_128_ctr_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +aes_ccm_ad esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) +aes_ccm_ae esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) +aes_ctr_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) +aes_decrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + 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-gcm.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-gcm.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-gcm.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_gcm_ad esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) +aes_gcm_ae esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) +aes_gmac esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +aes_hal_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) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) +aes_siv_decrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) +aes_siv_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) +aes_unwrap esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 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) +agc_reg_init /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +aligned_alloc esp-idf/newlib/libnewlib.a(heap.c.obj) +ampdu_alloc_rx_ba_index /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ampdu_dispatch /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ampdu_dispatch_all /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ampdu_dispatch_as_many_as_possible /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ampdu_dispatch_movement /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ampdu_dispatch_upto /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ampdu_free_rx_ba_index /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ampdu_process_multicast_address_qos_frame /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +analog_gain_init /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ant_btrx_cfg /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ant_bttx_cfg /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ant_dft_cfg /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ant_rx_cfg /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ant_tx_cfg /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ant_wifirx_cfg /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ant_wifitx_cfg /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +ap_get_sta esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +ap_no_lr /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +ap_rx_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ap_rxcb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ap_sa_query_timeout_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +ap_sta_add esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +ap_sta_delayed_1x_auth_fail_disconnect esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) +ap_sta_hash_add esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) +ap_sta_pending_delayed_1x_auth_fail_disconnect esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) +ap_try_sa_query_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +app_elf_sha256_str esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) +app_main esp-idf/main/libmain.a(mesh_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 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-atoi.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +auth_build_token_req esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) +auth_sae_queue esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +bars /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +bb_bss_cbw40 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +bb_bss_cbw40_ana /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +bb_init /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +bb_intr_handl /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +bb_reg_init /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +bb_rst_en_set /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +bb_wdg_cfg /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +bb_wdt_get_status /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +bb_wdt_int_enable /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +bb_wdt_rst_enable /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +bb_wdt_timeout_clear /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.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(aes-siv.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +block_absorb_post_hook esp-idf/heap/libheap.a(tlsf.c.obj) +bootloader_atexit esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_clock_get_rated_freq_mhz esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) +bootloader_common_check_chip_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_chip_ver_pkg esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_common_get_partition_description esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_common_get_sha256_of_partition esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) +bootloader_common_label_search esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_ota_select_crc esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +bootloader_common_ota_select_invalid esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +bootloader_common_ota_select_valid esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +bootloader_common_read_otadata esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_common_select_otadata esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +bootloader_common_vddsdio_configure esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_configure_spi_pins esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_debug_buffer esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_enable_wp esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_execute_flash_command esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_flash_clock_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +bootloader_flash_cs_timing_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +bootloader_flash_dummy_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +bootloader_flash_erase_range esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_flash_erase_sector esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_flash_execute_command_common esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_flash_get_spi_mode esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_flash_get_wp_pin esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +bootloader_flash_gpio_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +bootloader_flash_is_octal_mode_enabled esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_flash_read esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_flash_read_sfdp esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_flash_reset_chip esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/esp_system/libesp_system.a(brownout.c.obj) +bootloader_flash_unlock esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_flash_update_id esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +bootloader_flash_update_size esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_flash_write esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_flash_xmc_startup esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_image_hdr esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_init_mem esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +bootloader_init_spi_flash esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_load_image esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_load_image_no_verify esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_mmap esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_mmap_get_free_pages esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_munmap esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_read_flash_id esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_reset esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_sha256_data esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_sha256_finish esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_sha256_flash_contents esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_sha256_hex_to_str esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_sha256_start esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_spi_flash_reset esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_utility_get_selected_boot_partition esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_utility_load_boot_image esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_utility_load_partition_table esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +brownout_hal_config esp-idf/hal/libhal.a(brownout_hal.c.obj) + esp-idf/esp_system/libesp_system.a(brownout.c.obj) +bt_bb_init_cmplx /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) +bt_bb_init_cmplx_reg /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) +bt_bb_to_index /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +bt_cmplx_hq_re /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) +bt_cmplx_hq_wr /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) +bt_cmplx_lq_re /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) +bt_cmplx_lq_wr /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) +bt_correct_bbgain /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +bt_dgmixer_fstep_250k /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) +bt_dig_gain_force /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +bt_get_i2c_data /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +bt_i2c_read_mem /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +bt_i2c_read_set /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +bt_i2c_set_wifi_data /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +bt_i2c_write_set /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +bt_index_to_bb /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +bt_mode_wifibb /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +bt_opt_write_mem /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +bt_pwr_cap_sum /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +bt_pwr_cap_sum_old /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +bt_pwr_freq_old /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +bt_pwr_track_num /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +bt_rfoffset_en /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) +bt_rx_spur_opt /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +bt_rxfilt /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) +bt_track_pll_cap /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +bt_track_tx_power /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +bt_tx_gain_cal /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +bt_tx_gain_cal_set /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +bt_tx_pa_gain /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +bt_tx_pwctrl_init /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +bt_txdc_cal /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +bt_txfilt /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) +bt_txiq_cal /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +bt_txpwr_backoff /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +bt_wifi_chan_data /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +btpwr_atten_offset /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +btpwr_backoff /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +btpwr_pll_track /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +btpwr_tsen_flag /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +btpwr_tsen_init /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +btpwr_tsen_old /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +btpwr_tsens_track /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +buf_shift_right esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +bzero /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-bzero.o) + 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/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(heap.c.obj) +cache_hal_get_cache_line_size esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) +cache_hal_invalidate_addr esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) +cache_hal_is_cache_enabled esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +cache_hal_resume esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +cache_hal_suspend esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +cache_hal_vaddr_to_cache_level_id esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) +cache_register_writeback esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) +cache_sync esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +cal_rf_ana_gain /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +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/xtensa/libxtensa.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(ieee802_11_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + esp-idf/lwip/liblwip.a(mem.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_common.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_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/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/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +candidate_monitor_timer_start /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +candidate_monitor_timer_stop /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +cannel_scan_connect_state /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +ccmp /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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) +cfg_sdio_volt /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) +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 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +chan14_mic_en /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +chan14_mic_enable /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +chan14_mic_flag /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +chan14_mic_most_power /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +chan_to_freq /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.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 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +check_comeback_token esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) +check_rfpll_write_i2c /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +chip7_phy_api_ctrl /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +chip7_phy_init_ctrl /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +chip7_sleep_params /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +chip_disable /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +chip_enable /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +chip_post_deinit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +chip_sleep_prot_dis /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +chip_sleep_prot_en /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +chip_v7_adc_wr_dly /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +chip_v7_rxmax_ext /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +chip_v7_rxmax_ext_ana /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +chip_v7_rxmax_ext_dig /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +chip_v7_set_chan /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +chip_v7_set_chan_ana /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +chip_v7_set_chan_misc /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +chip_v7_set_chan_nomac /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +chip_v7_set_chan_offset /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +chm_acquire_lock /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +chm_cancel_op /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +chm_deinit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +chm_end_op /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) +chm_end_op_timeout_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +chm_get_chan_info /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +chm_get_current_channel /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +chm_get_home_channel /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +chm_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +chm_is_at_home_channel /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +chm_mhz2num /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) +chm_release_lock /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +chm_return_home_channel /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +chm_set_current_channel /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +chm_set_home_channel /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +chm_start_op /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +cipher_map_net80211_to_public_cipher /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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_peer_list /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +clear_bss_queue /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +clk_hal_ahb_get_freq_hz esp-idf/hal/libhal.a(clk_tree_hal.c.obj) +clk_hal_apb_get_freq_hz esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) +clk_hal_apll_get_freq_hz esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) +clk_hal_cpu_get_freq_hz esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) +clk_hal_lp_slow_get_freq_hz esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) +clk_hal_soc_root_get_freq_mhz esp-idf/hal/libhal.a(clk_tree_hal.c.obj) +clk_hal_xtal_get_freq_mhz esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) +clock_getres esp-idf/newlib/libnewlib.a(time.c.obj) +clock_gettime esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +clock_settime esp-idf/newlib/libnewlib.a(time.c.obj) +closedir esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +cnx_add_rc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +cnx_add_to_blacklist /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +cnx_assoc_timeout /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +cnx_assoc_timeout_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +cnx_auth_done /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +cnx_auth_timeout /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) +cnx_auth_timeout_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +cnx_beacon_timeout_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +cnx_bss_alloc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +cnx_bss_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +cnx_can_do_obss_scan /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_check_bssid_in_blacklist /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_clear_blacklist /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +cnx_connect_next_ap /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +cnx_connect_timeout /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +cnx_connect_timeout_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +cnx_csa_fn /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +cnx_csa_fn_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +cnx_do_handoff_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +cnx_get_authtype_strength /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +cnx_handshake_timeout /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_handshake_timeout_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +cnx_is_any_node_connecting /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_node_alloc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +cnx_node_is_existing /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +cnx_node_join /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +cnx_node_leave /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +cnx_node_remove /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_node_search /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +cnx_obss_scan /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_obss_scan_done_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_obss_scan_timeout /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_rc_search /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +cnx_rc_update_age /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +cnx_rc_update_rssi /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +cnx_rc_update_state_metric /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +cnx_remove_all_rc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +cnx_remove_from_blacklist /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_remove_rc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_remove_rc_except /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_sta_associated /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +cnx_sta_connect_cmd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +cnx_sta_connect_led_timer_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_sta_leave /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +cnx_sta_pm /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_sta_scan_cmd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +cnx_start_handoff_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_start_obss_scan /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +cnx_stop_obss_scan /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +cnx_update_bss /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +cnx_update_bss_more /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +cnx_validate_owe_bss /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +coex_bt_high_prio /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +coexist_printf esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) +comeback_token_hash esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) +config_get_wifi_ampdu_rx_enable /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +config_get_wifi_ampdu_tx_enable /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +config_get_wifi_amsdu_tx_enable /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +config_get_wifi_beacon_max_len /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) +config_get_wifi_cache_tx_buffer_num /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +config_get_wifi_coexist_task_stack_size /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +config_get_wifi_csi_enable /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +config_get_wifi_dynamic_rx_buffer_num /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +config_get_wifi_dynamic_tx_buffer_num /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) +config_get_wifi_espnow_max_encrypt_num /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +config_get_wifi_feature_capabilities /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) +config_get_wifi_mgmt_sbuf_num /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +config_get_wifi_nvs_enable /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +config_get_wifi_pm_task_stack_size /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +config_get_wifi_rx_baw /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +config_get_wifi_rx_mgmt_buffer_num /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +config_get_wifi_rx_mgmt_buffer_type /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +config_get_wifi_sta_disconnected_pm /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +config_get_wifi_static_rx_buffer_num /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +config_get_wifi_static_tx_buffer_num /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +config_get_wifi_task_core_id /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) +config_get_wifi_task_stack_size /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +config_get_wifi_timer_task_stack_size /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +config_get_wifi_tx_buffer_type /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +config_get_wifi_wpa2_task_stack_size /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +config_get_wifi_wps_task_stack_size /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +config_is_cache_tx_buf_enabled /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +connect_scan_flag /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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) +corr_cca_thr /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +correct_rf_ana_gain_new /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +correct_rfpll_offset /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +country_info_24ghz /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) +crc32_le /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_bits esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) +crypto_bignum_cmp esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_bignum_div esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_exptmod esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_init esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_init_set esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_bignum_init_uint esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_inverse esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_is_odd esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) +crypto_bignum_is_one esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_is_zero esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_legendre esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) +crypto_bignum_mod esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_mulmod esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_rand esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) +crypto_bignum_rshift esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_sqrmod esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_sub esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_to_bin esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_bignum_to_string esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) +crypto_debug_print_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_key_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) +crypto_ec_key_group esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) +crypto_ec_key_parse_pub esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) +crypto_ec_key_verify_signature esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) +crypto_ec_order_len esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_parse_subpub_key esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_ec_point_add esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_point_cmp esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_point_compute_y_sqr esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_point_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_point_from_bin esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_point_init esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_point_invert esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_point_is_at_infinity esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_point_is_on_curve esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_point_mul esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_point_solve_y_coord esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +crypto_ec_point_to_bin esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_prime_len esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_prime_len_bits esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_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 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) +current_task_is_wifi_task /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +dac_out /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +dac_pad_init /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +dbg_cnt_lmac_drop /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +dbg_ebuf_loc_show /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_his_lmac_eb_show /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_his_lmac_event_show /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_his_lmac_int_show /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_his_lmac_rx_show /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_his_lmac_tx_show /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_hmac_rxtx_statis_dump /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) +dbg_hmac_statis_dump /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +dbg_lmac_diag_statis_dump /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_lmac_get_acs /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +dbg_lmac_hw_statis_dump /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_lmac_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +dbg_lmac_ps_statis_dump /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_lmac_ps_statis_reset /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +dbg_lmac_rxtx_statis_dump /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_lmac_statis_dump /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +dbg_perf_path_set /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_perf_path_show /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_perf_throughput_cal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_rx_all_count /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +dbg_rx_bcn_count /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +default_router_list esp-idf/lwip/liblwip.a(nd6.c.obj) +des3_decrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) +des3_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) +des3_key_setup esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) +des_block_decrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) +des_block_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) +des_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) +des_key_setup esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) +destination_cache esp-idf/lwip/liblwip.a(nd6.c.obj) +dh5_derive_shared esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) +dh5_free esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +dh5_init esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) +dh5_init_fixed esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) +dh_derive_shared esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) +dh_groups_get esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +dh_init esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) +dhcp_append_extra_opts esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) +dhcp_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) +disable_wifi_agc /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) +discnx_reason_id2str /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +div /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-div.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mktime.o) + esp-idf/hal/libhal.a(spi_flash_hal.c.obj) +dns_clear_cache esp-idf/lwip/liblwip.a(dns.c.obj) +dns_gethostbyname esp-idf/lwip/liblwip.a(dns.c.obj) +dns_gethostbyname_addrtype esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +dns_getserver esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dns_init esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) +dns_mquery_v4group esp-idf/lwip/liblwip.a(dns.c.obj) +dns_mquery_v6group esp-idf/lwip/liblwip.a(dns.c.obj) +dns_setserver esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.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) +dpd_scale_set /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +dragonfly_generate_scalar esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +dragonfly_get_random_qr_qnr esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +dragonfly_is_quadratic_residue_blind esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +dragonfly_min_pwe_loop_iter esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +dragonfly_sqrt esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +dragonfly_suitable_group esp-idf/wpa_supplicant/libwpa_supplicant.a(dragonfly.c.obj) +dreg_1p2_set /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +dup_binstr esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) +dutytype2str /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +eTaskGetState esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +eap_allowed_method esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) +eap_client_get_eap_state esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +eap_deinit_prev_method esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +eap_get_config esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +eap_get_config_blob esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +eap_get_config_identity esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +eap_get_config_new_password esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +eap_get_config_password esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +eap_get_config_password2 esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +eap_get_id esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +eap_get_phase2_type esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +eap_get_phase2_types esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +eap_get_type esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +eap_hdr_len_valid esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) +eap_hdr_validate esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +eap_mbedtls_x509_crt_profile esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +eap_msg_alloc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +eap_peer_blob_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +eap_peer_blob_init esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +eap_peer_config_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +eap_peer_config_init esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +eap_peer_get_eap_method esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +eap_peer_get_methods esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) +eap_peer_get_type esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) +eap_peer_method_alloc esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +eap_peer_method_free esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +eap_peer_method_register esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +eap_peer_mschapv2_register esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) +eap_peer_peap_register esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) +eap_peer_register_methods esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +eap_peer_select_phase2_methods esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +eap_peer_tls_build_ack esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +eap_peer_tls_decrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +eap_peer_tls_derive_key esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +eap_peer_tls_derive_session_id esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +eap_peer_tls_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +eap_peer_tls_phase2_nak esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +eap_peer_tls_process_helper esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +eap_peer_tls_process_init esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +eap_peer_tls_reauth_init esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +eap_peer_tls_register esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) +eap_peer_tls_reset_input esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +eap_peer_tls_reset_output esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +eap_peer_tls_ssl_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +eap_peer_tls_ssl_init esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +eap_peer_tls_status esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +eap_peer_ttls_register esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) +eap_peer_unregister_methods esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +eap_set_config_blob esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) +eap_sm_abort esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +eap_sm_allowMethod esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +eap_sm_buildIdentity esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) +eap_sm_build_identity_resp esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +eap_sm_build_nak esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +eap_sm_get_method_name esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) +eap_sm_process_request esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +eap_sm_request_identity esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +eap_sm_request_new_password esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +eap_sm_request_password esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +eap_sm_send_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +eap_update_len esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) +eap_wsc_build_frag_ack esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +eapol_sm_notify_eap_success esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +eapol_txcb esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +eb_space /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +eb_txdesc_space /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +efuse_hal_blk_version esp-idf/hal/libhal.a(efuse_hal.c.obj) +efuse_hal_chip_revision esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + esp-idf/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_disable_blk_version_major esp-idf/hal/libhal.a(efuse_hal.c.obj) +efuse_hal_get_disable_wafer_version_major esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +efuse_hal_get_mac esp-idf/hal/libhal.a(efuse_hal.c.obj) +efuse_hal_get_major_chip_version esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/hal/libhal.a(efuse_hal.c.obj) +efuse_hal_get_minor_chip_version esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/hal/libhal.a(efuse_hal.c.obj) +efuse_hal_get_rated_freq_mhz esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) +efuse_hal_is_coding_error_in_block esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +efuse_hal_program esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +efuse_hal_read esp-idf/hal/libhal.a(efuse_hal.c.obj) +efuse_hal_set_timing esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +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(wps_enrollee.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(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +eloop_cancel_timeout_one esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) +eloop_deplete_timeout esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) +eloop_destroy esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +eloop_init esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +eloop_is_timeout_registered esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) +eloop_register_timeout esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(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(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +eloop_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 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +enable_wifi_agc /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.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 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-environ.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-getenv_r.o) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +err_to_errno esp-idf/lwip/liblwip.a(err.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +errno /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-reent.o) +esf_buf_alloc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +esf_buf_alloc_default_handler /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +esf_buf_alloc_dynamic /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +esf_buf_alloc_dynamic_default_handler /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +esf_buf_free_static /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +esf_buf_recycle /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +esf_buf_recycle_default_handler /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +esf_buf_setdown /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +esf_buf_setup /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +esf_buf_setup_for_mesh /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +esf_buf_setup_static /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +esf_buf_statis_dump /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +esp_aes_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) +esp_aes_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-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +esp_aes_xts_setkey_dec esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +esp_aes_xts_setkey_enc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) +esp_app_desc esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) +esp_app_format_init_elf_sha256 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(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_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/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_clk_cpu_freq esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/freertos/libfreertos.a(xtensa_init.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-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_clk_private_unlock esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_clk_rtc_time esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) +esp_clk_slowclk_cal_get esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_clk_slowclk_cal_set esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +esp_clk_tree_lp_fast_get_freq_hz esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) +esp_clk_tree_lp_slow_get_freq_hz esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) +esp_clk_tree_rc_fast_d256_get_freq_hz esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) +esp_clk_tree_rc_fast_get_freq_hz esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) +esp_clk_tree_src_get_freq_hz esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(ledc.c.obj) +esp_clk_tree_xtal32k_get_freq_hz esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) +esp_clk_xtal_freq esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) +esp_coex_common_env_is_chip_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_coex_common_int_disable_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_coex_common_int_restore_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_coex_common_malloc_internal_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_coex_common_semphr_create_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_coex_common_semphr_delete_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_coex_common_semphr_give_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_coex_common_semphr_take_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_coex_common_spin_lock_create_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_coex_common_task_yield_from_isr_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_coex_common_timer_arm_us_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_coex_common_timer_disarm_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_coex_common_timer_done_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_coex_common_timer_setfn_wrapper esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_cpu_clear_breakpoint esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) +esp_cpu_clear_watchpoint esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) +esp_cpu_compare_and_set esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.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_region_protect.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) +esp_cpu_intr_get_desc esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esp_cpu_reset esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) +esp_cpu_set_breakpoint esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) +esp_cpu_set_watchpoint esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +esp_cpu_stall esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + esp-idf/esp_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_chip.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_cpu_wait_for_intr esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) +esp_crosscore_int_init esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +esp_crosscore_int_send_freq_switch esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) +esp_crosscore_int_send_gdb_call esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) +esp_crosscore_int_send_print_backtrace esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_crosscore_int_send_twdt_abort esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_crosscore_int_send_yield esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +esp_crt_bundle_attach esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_crt_bundle_attach_fn esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_crt_bundle_detach esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) +esp_crt_bundle_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_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_alt.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_alt.c.obj) +esp_deep_sleep esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_deep_sleep_deregister_hook esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_deep_sleep_deregister_phy_hook esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_deep_sleep_disable_rom_logging esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_deep_sleep_register_hook esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_deep_sleep_register_phy_hook esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +esp_deep_sleep_start esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_deep_sleep_try esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_deep_sleep_try_to_start esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_deep_sleep_wakeup_io_reset esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_default_wake_deep_sleep esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_deregister_freertos_idle_hook esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) +esp_deregister_freertos_idle_hook_for_cpu esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +esp_deregister_freertos_tick_hook esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) +esp_deregister_freertos_tick_hook_for_cpu esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) +esp_derive_local_mac esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) +esp_dport_access_read_buffer esp-idf/soc/libsoc.a(dport_access_common.c.obj) + esp-idf/hal/libhal.a(aes_hal.c.obj) + esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/hal/libhal.a(mpi_hal.c.obj) +esp_dport_access_reg_read esp-idf/soc/libsoc.a(dport_access.c.obj) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/hal/libhal.a(aes_hal.c.obj) + esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) + esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(ledc.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_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(periph_ctrl.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(cache_err_int.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_dport_access_sequence_reg_read esp-idf/soc/libsoc.a(dport_access.c.obj) + esp-idf/soc/libsoc.a(dport_access_common.c.obj) + esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/hal/libhal.a(mmu_hal.c.obj) +esp_eap_client_clear_ca_cert esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_clear_certificate_and_key esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_clear_identity esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_clear_new_password esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_clear_password esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_clear_username esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_get_disable_time_check esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_set_ca_cert esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_set_certificate_and_key esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_set_disable_time_check esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_set_fast_params esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_set_identity esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_set_new_password esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_set_pac_file esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_set_password esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_set_suiteb_192bit_certification esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_set_ttls_phase2_method esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_set_username esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_eap_client_use_default_cert_bundle esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_efuse_batch_write_begin esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_batch_write_cancel esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_batch_write_commit esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_block_is_empty esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_check_errors esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_efuse_disable_basic_rom_console esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +esp_efuse_disable_rom_download_mode esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_efuse_find_purpose esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_get_coding_scheme esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_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_dis_read esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_get_key_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_get_key_purpose esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_get_keypurpose_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_get_pkg_ver esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +esp_efuse_key_block_unused esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_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_efuse_read_field_cnt esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_efuse_read_reg esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_set_key_dis_read esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_set_key_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_set_read_protect esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_set_rom_log_scheme esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +esp_efuse_set_write_protect esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_utility_apply_34_encoding esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_apply_new_coding_scheme esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_burn_chip esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_burn_efuses esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_check_errors esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_clear_program_registers esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_count_once esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_debug_dump_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_debug_dump_pending esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_debug_dump_single_block esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_erase_virt_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_fill_buff esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_get_number_of_items esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_get_read_register_address esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_is_correct_written_data esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_process esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_read_reg esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_reset esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_update_virt_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_write_blob esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_write_cnt esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_write_reg esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_write_block esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_write_field_bit esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_write_field_blob esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_write_field_cnt esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_write_key esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_write_keys esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_write_reg esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_err_to_name esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + esp-idf/esp_system/libesp_system.a(esp_err.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_event_handler_instance_register_with esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) +esp_event_handler_instance_unregister esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) +esp_event_handler_instance_unregister_with esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) +esp_event_handler_register esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/main/libmain.a(mesh_main.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) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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(mesh_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/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(mesh_event.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_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_winbond esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) +esp_flash_default_chip esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/spi_flash/libspi_flash.a(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/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_deep_sleep_wake_stub esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_get_flash_encryption_mode esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_get_free_heap_size esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_get_free_internal_heap_size esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_get_idf_version esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) +esp_get_minimum_free_heap_size esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + esp-idf/main/libmain.a(mesh_main.c.obj) +esp_gpio_is_pin_reserved esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +esp_gpio_reserve_pins esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +esp_iface_mac_addr_set esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) +esp_image_get_flash_size esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +esp_image_get_metadata esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +esp_image_verify esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_image_verify_bootloader esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +esp_image_verify_bootloader_data esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +esp_int_wdt_cpu_init esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +esp_int_wdt_init esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +esp_internal_aes_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) +esp_internal_aes_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) +esp_intr_alloc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/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(uart.c.obj) + esp-idf/driver/libdriver.a(ledc.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) +esp_intr_alloc_intrstatus esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esp_intr_disable esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_intr_disable_source esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) +esp_intr_dump esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esp_intr_enable esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_intr_enable_source esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) +esp_intr_free esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(ledc.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_intr_get_cpu esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/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_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_call_nonblocking esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +esp_ipc_func esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) +esp_ipc_func_arg esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) +esp_ipc_isr_call esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) +esp_ipc_isr_call_blocking esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) +esp_ipc_isr_end_fl esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) +esp_ipc_isr_handler esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) +esp_ipc_isr_init esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) +esp_ipc_isr_port_init esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) +esp_ipc_isr_port_int_trigger esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) +esp_ipc_isr_release_other_cpu esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.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(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +esp_ipc_isr_stall_other_cpu esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.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_isr_names esp-idf/soc/libsoc.a(interrupts.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esp_light_sleep_start esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_log_default_level esp-idf/log/liblog.a(log.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.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_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(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(ledc.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(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(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_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(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_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/lwip/liblwip.a(sys_arch.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(mac_addr.c.obj) + esp-idf/hal/libhal.a(clk_tree_hal.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(touch_sensor_common.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.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_event/libesp_event.a(esp_event.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.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_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_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(ledc.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_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/main/libmain.a(mesh_main.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/esp_system/libesp_system.a(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_cond_var.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(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_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/lwip/liblwip.a(sys_arch.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(mac_addr.c.obj) + esp-idf/hal/libhal.a(clk_tree_hal.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(touch_sensor_common.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.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_event/libesp_event.a(esp_event.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.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/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(ledc.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_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/main/libmain.a(mesh_main.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.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(intr_alloc.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.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_mac_addr_len_get esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.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_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 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_allow_root_conflicts /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_mesh_ap_enqueue /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_ap_list_clear /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_ap_list_clear_expire /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_ap_list_clear_invalid /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) +esp_mesh_ap_list_find /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_ap_list_find_expire /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_ap_list_find_invalid /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_ap_list_update_invalid /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_appie /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_available_txupQ_num /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_best_effort_tx /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_channel_enable_jp /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_check_multi_redundant_ack /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_check_nonassociated_children /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_check_vnd_ie /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_clear_parent /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +esp_mesh_clear_parent_candidate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_combine_multi_redundant_ack /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_comm_p2p_start esp-idf/main/libmain.a(mesh_main.c.obj) +esp_mesh_compute_my_votes /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_compute_votes /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_conn_deinit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_conn_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_connect /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_copy_mgmt_announce /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_create_context /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_create_mbox /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_decrypt_vnd_ie /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_deinit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_delete_group_addr /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_delete_group_id /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_delete_sub_children /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_delivery_toDS /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_delivery_toSelf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_disable_ps /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_discard_context /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_disconnect /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_enable_ps /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + esp-idf/main/libmain.a(mesh_main.c.obj) +esp_mesh_encrypt_vnd_ie /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_find_conflict_root /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_fix_root /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_flush_scan_result /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) +esp_mesh_flush_tcpip_queue /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_flush_upstream_packets /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_force_txupQ_pending /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_forward_check_active /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_forward_packet /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_free_context /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_free_mbox /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_active_duty_cycle /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_get_announce_interval /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_ap_assoc_expire /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_get_ap_authmode /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_ap_connections /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_get_attempts /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_beacon_interval /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_capacity_num /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_child_idx /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_get_child_idx_lock /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_get_child_num /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_get_config /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_conflict_root_state /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_get_group_list /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_group_num /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_id /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + esp-idf/main/libmain.a(mesh_main.c.obj) +esp_mesh_get_ie_crypto_key /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_layer /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + esp-idf/main/libmain.a(mesh_light.c.obj) + esp-idf/main/libmain.a(mesh_main.c.obj) +esp_mesh_get_max_layer /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_network_duty_cycle /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_get_non_mesh_connections /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_optlen /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_get_parent_bssid /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + esp-idf/main/libmain.a(mesh_main.c.obj) +esp_mesh_get_parent_candidate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_mesh_get_parent_monitor_config /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_mesh_get_passive_scan_time /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_root_addr /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_root_healing_delay /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_router /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_router_bssid /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_routing_table /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + esp-idf/main/libmain.a(mesh_main.c.obj) +esp_mesh_get_routing_table_size /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + esp-idf/main/libmain.a(mesh_main.c.obj) +esp_mesh_get_rssi_threshold /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_get_rssi_threshold_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_get_running_active_duty_cycle /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_get_rx_pending /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_self_organized /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_get_storage /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_sub_capacity /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_get_subnet_nodes_list /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_subnet_nodes_num /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_switch_parent_paras /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_topology /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + esp-idf/main/libmain.a(mesh_main.c.obj) +esp_mesh_get_total_children_num /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_get_total_node_num /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_tsf_time /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +esp_mesh_get_tx_pending /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_get_type /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_vnd_ext_assoc_len /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_get_vnd_roots_len /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_get_vnd_ssid_len /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_get_vote_percentage /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_xon_qsize /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_ie_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_ie_monitor /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_ie_update_capacity /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_ie_update_rssi /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + esp-idf/main/libmain.a(mesh_main.c.obj) +esp_mesh_insert_child /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_insert_group_addr /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_io_sem_signal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_io_sem_wait /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +esp_mesh_is_device_active /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_is_my_group /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_is_my_ie_encrypted /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_is_nwk_inited /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_is_nwk_running /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_is_ps_enabled /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + esp-idf/main/libmain.a(mesh_main.c.obj) +esp_mesh_is_root /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + esp-idf/main/libmain.a(mesh_main.c.obj) +esp_mesh_is_root_conflicts_allowed /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) +esp_mesh_is_root_fixed /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + esp-idf/main/libmain.a(mesh_main.c.obj) +esp_mesh_is_roots_found /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_is_rt_change_debug /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_is_same_router /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) +esp_mesh_is_scan_allowed /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_is_start_pm_now /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_is_switch_parent /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_look_for_network /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_lookup_route /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_lookup_sub_route /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_map_change_beacon_interval /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_map_deauth /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_map_probe_response /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_map_reject_connection /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_map_stop_beacon /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_match_self /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_mcast_cover_node /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_monitor_nonassociated_children /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_monitor_parent_candidate_ie /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_monitor_parent_ie /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_monitor_vote_candidate_rssi /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_nvs_deinit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_nvs_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_nvs_operate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) +esp_mesh_nvs_set_assoc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +esp_mesh_nvs_set_layer /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +esp_mesh_nwk_redundant_route /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_nwk_task_deinit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_nwk_task_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_operation_rxseqno /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) +esp_mesh_p2p_rx_main esp-idf/main/libmain.a(mesh_main.c.obj) +esp_mesh_p2p_tx_main esp-idf/main/libmain.a(mesh_main.c.obj) +esp_mesh_pack_multi_routing_table /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_pack_rmv_announcement /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_parent_reselect /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_parent_select /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_parse_beacon /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_parse_conflict_assoc_ie /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_parse_conflict_roots_ie /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_parse_ext_assoc_ie /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_parse_ps_ie /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_pm_go_to_sleep /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_pm_go_to_wake /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_pm_rx_beacon_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_pm_tbtt_timeout_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_pm_tx_data_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_pm_tx_null_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_post_toDS_state /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_print_route_table /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_print_rxQ_waiting /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_print_scan_result /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_print_txQ_waiting /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) +esp_mesh_process_bcast /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_process_mcast /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_process_options /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_process_ps_awake /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_process_ps_type /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_process_redundant_subchildren /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_process_txupQ_pending /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_process_ucast /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_ps_control_check_awake /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_ps_duty /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_ps_duty_cycle_get_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_ps_duty_cycle_set_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_ps_duty_ext_get_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_ps_duty_signaling /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_mesh_ps_get_duties /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_ps_get_ext_duty /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_mesh_push_to_ack_state_queue /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_push_to_myself_queue /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_push_to_nwk_queue /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_push_to_ps_tx_queue /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_push_to_rx_queue /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) +esp_mesh_push_to_tcpip_queue /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_push_to_tx_queue /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_push_to_wnd_queue /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_push_to_xmit_state_queue /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_quick_funcs /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_quick_funcs_deinit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_quick_funcs_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_recv /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + esp-idf/main/libmain.a(mesh_main.c.obj) +esp_mesh_recv_release /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +esp_mesh_recv_toDS /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_recv_xon /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) +esp_mesh_refresh_routing_table /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_remove_child /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_remove_children /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_remove_conflict_root /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_remove_nonassociated_children /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_revote_root /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_root_process_duty_duration_expire /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_route_deinit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_route_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_rt_change_debug /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_rx_task_deinit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_rx_task_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_scan_done /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_scan_done_get_channel /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_scan_done_vote /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_scan_get_ap_ie_len /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_mesh_scan_get_ap_record /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_mesh_send /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + esp-idf/main/libmain.a(mesh_main.c.obj) +esp_mesh_send_add_announcement /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_send_block_deinit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_send_block_event /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_send_block_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_send_block_start /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_send_block_time /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_send_event_internal esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_send_mgmt /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_send_rmv_announcement /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_send_root_switch /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_send_rtable_ack /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_send_rtable_request /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_send_sem_signal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_send_sem_wait /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_send_stop_vote /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_send_xon /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_set_6m_rate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +esp_mesh_set_active_duty_cycle /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + esp-idf/main/libmain.a(mesh_main.c.obj) +esp_mesh_set_announce_interval /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + esp-idf/main/libmain.a(mesh_main.c.obj) +esp_mesh_set_ap_assoc_expire /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/main/libmain.a(mesh_main.c.obj) +esp_mesh_set_ap_authmode /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + esp-idf/main/libmain.a(mesh_main.c.obj) +esp_mesh_set_ap_connections /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_ap_password /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_attempts /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_beacon_interval /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_capacity_num /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_config /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + esp-idf/main/libmain.a(mesh_main.c.obj) +esp_mesh_set_group_id /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_id /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_ie /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_set_ie_crypto_funcs /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_ie_crypto_funcs_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_ie_crypto_key /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_ie_crypto_key_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_max_layer /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + esp-idf/main/libmain.a(mesh_main.c.obj) +esp_mesh_set_network_duty_cycle /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + esp-idf/main/libmain.a(mesh_main.c.obj) +esp_mesh_set_network_duty_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_mesh_set_non_mesh_connections /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_parent /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_parent_candidate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_set_parent_candidate_config /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_set_parent_monitor_config /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_set_passive_scan_time /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_root_healing_delay /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_router /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_router_bssid /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_rssi_threshold /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_set_rssi_threshold_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_set_self_organized /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_switch_parent_paras /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_topology /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + esp-idf/main/libmain.a(mesh_main.c.obj) +esp_mesh_set_type /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_vote_percentage /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + esp-idf/main/libmain.a(mesh_main.c.obj) +esp_mesh_set_xon_qsize /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + esp-idf/main/libmain.a(mesh_main.c.obj) +esp_mesh_sta_connect /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_sta_disassoc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_sta_disconnect /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_sta_monitor_rssi /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_start /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + esp-idf/main/libmain.a(mesh_main.c.obj) +esp_mesh_stop /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_stop_parent_reconnection /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +esp_mesh_switch_channel /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_switch_channel_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +esp_mesh_sync_interface_tsf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) +esp_mesh_tx_task_deinit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_tx_task_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_tx_tid_flush /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_txupQ_pending /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_txupQ_pending_clear_xonseq /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_txupQ_pending_delete_child /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_txupQ_pending_get_cidx /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_txupQ_pending_get_xonseq /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_txupQ_pending_insert_child /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_update_conflict_root /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_waive_root /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_wifi_recv_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) +esp_mmu_map esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +esp_mmu_map_dump_mapped_blocks esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +esp_mmu_map_dump_mapped_blocks_private esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +esp_mmu_map_get_max_consecutive_free_block_size esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +esp_mmu_map_init esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_mmu_map_reserve_block_with_caps esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +esp_mmu_paddr_find_caps esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +esp_mmu_paddr_to_vaddr esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +esp_mmu_unmap esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +esp_mmu_vaddr_to_paddr esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +esp_mont_hw_op esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +esp_mpi_disable_hardware_hw_op esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +esp_mpi_enable_hardware_hw_op esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +esp_mpi_hardware_words esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +esp_mpi_interrupt_clear esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +esp_mpi_interrupt_enable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +esp_mpi_mul_mpi_hw_op esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +esp_mpi_mul_mpi_mod esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +esp_mpi_mul_mpi_mod_hw_op esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +esp_mpi_mult_mpi_failover_mod_mult_hw_op esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +esp_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_nan_internal_datapath_end /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_nan_internal_datapath_req /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_nan_internal_datapath_resp /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_nan_internal_publish_service /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_nan_internal_send_followup /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_nan_internal_subscribe_service /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_netif_action_add_ip6_address esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_action_connected esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_action_disconnected esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_action_got_ip esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_action_join_ip6_multicast_group esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_action_leave_ip6_multicast_group esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_action_remove_ip6_address esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_action_start esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_action_stop esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_add_ip6_address esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_add_to_list_unsafe esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_attach esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_attach_wifi_ap esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_attach_wifi_station esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_create_default_wifi_ap esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_create_default_wifi_mesh_netifs esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/main/libmain.a(mesh_main.c.obj) +esp_netif_create_default_wifi_sta esp-idf/esp_wifi/libesp_wifi.a(wifi_default.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-idf/main/libmain.a(mesh_main.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-idf/main/libmain.a(mesh_main.c.obj) +esp_netif_dhcps_get_clients_by_mac esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_dhcps_get_status esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_dhcps_option esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_dhcps_option_api esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_dhcps_start esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_dhcps_stop esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_down esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_find_if esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_free_rx_buffer esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) +esp_netif_get_all_ip6 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_all_preferred_ip6 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_default_netif esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_desc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_get_dns_info esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_event_id esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_get_flags esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_get_handle_from_ifkey esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_handle_from_ifkey_unsafe esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_handle_from_netif_impl esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) +esp_netif_get_hostname esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) +esp_netif_get_ifkey esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) +esp_netif_get_io_driver esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_get_ip6_global esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_ip6_linklocal esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_ip_info esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_get_mac esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_netif_impl esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_netif_impl_index esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_netif_impl_name esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_netif_impl_name_api esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_nr_of_ifs esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_old_ip_info esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_get_route_prio esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_init esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/main/libmain.a(mesh_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_napt_disable esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_napt_enable esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_netstack_buf_free esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_netstack_buf_ref esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_new esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_next esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) +esp_netif_next_unsafe esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_ppp_set_auth esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_ppp_set_auth_internal esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_receive esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_remove_from_list_unsafe esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_remove_ip6_address esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_set_default_netif esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_set_dns_info esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_set_driver_config esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_set_hostname esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_set_ip4_addr esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_set_ip_info esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_set_link_speed esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_set_mac esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_set_mac_api esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_set_old_ip_info esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_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_netif_update_default_netif esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_newlib_init esp-idf/newlib/libnewlib.a(newlib_init.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_newlib_init_global_stdio 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_bootloader_description esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_last_invalid_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_next_update_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_partition_description esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_running_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) +esp_ota_get_state_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_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-idf/esp_partition/libesp_partition.a(partition_target.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-idf/esp_partition/libesp_partition.a(partition_target.c.obj) +esp_partition_get_sha256 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) +esp_partition_is_flash_region_writable esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +esp_partition_iterator_release esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_main_flash_region_safe esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +esp_partition_mmap esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_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-idf/esp_partition/libesp_partition.a(partition_target.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_encrypted_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +esp_partition_read_raw esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +esp_partition_register_external esp-idf/esp_partition/libesp_partition.a(partition.c.obj) +esp_partition_table_verify esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +esp_partition_unload_all esp-idf/esp_partition/libesp_partition.a(partition.c.obj) +esp_partition_verify esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_write esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +esp_partition_write_raw esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +esp_pbuf_allocate esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) +esp_perip_clk_init esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_phy_apply_phy_init_data /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_phy_common_clock_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_common_clock_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_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_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_rf_get_on_ts 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_register_inform_out_light_sleep_overhead_callback esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) +esp_pm_register_light_sleep_default_params_config_callback esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) +esp_pm_unregister_inform_out_light_sleep_overhead_callback esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) +esp_pm_unregister_light_sleep_default_params_config_callback esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) +esp_pthread_get_cfg esp-idf/pthread/libpthread.a(pthread.c.obj) +esp_pthread_get_default_config esp-idf/pthread/libpthread.a(pthread.c.obj) +esp_pthread_init esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-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(heap_idf.c.obj) +esp_ptr_dma_ext_capable esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) +esp_ptr_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/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(dns.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_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_reent_cleanup esp-idf/newlib/libnewlib.a(reent_init.c.obj) +esp_reent_init esp-idf/newlib/libnewlib.a(reent_init.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +esp_register_freertos_idle_hook esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) +esp_register_freertos_idle_hook_for_cpu esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +esp_register_freertos_tick_hook esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) +esp_register_freertos_tick_hook_for_cpu esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) +esp_register_shutdown_handler esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) +esp_reset_reason_get_hint esp-idf/esp_system/libesp_system.a(panic.c.obj) +esp_reset_reason_set_hint esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_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(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system.c.obj) +esp_restart_noos_dig esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +esp_rom_crc32_le esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.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-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +esp_rom_delay_us esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.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/driver/libdriver.a(uart.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_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/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +esp_rom_efuse_mac_address_crc8 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) +esp_rom_get_reset_reason esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_rom_gpio_connect_in_signal esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/driver/libdriver.a(uart.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/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(ledc.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-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +esp_rom_install_channel_putc esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) +esp_rom_install_uart_printf esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_rom_md5_final esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) +esp_rom_md5_init esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) +esp_rom_md5_update esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) +esp_rom_printf esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.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_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(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(ledc.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.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_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(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(intr_alloc.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_rom_set_cpu_ticks_per_us esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +esp_rom_software_reset_cpu esp-idf/esp_system/libesp_system.a(system_internal.c.obj) +esp_rom_software_reset_system esp-idf/esp_system/libesp_system.a(brownout.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) +esp_rom_spiflash_clear_bp esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_config_clk esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +esp_rom_spiflash_config_param esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +esp_rom_spiflash_config_readmode esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_erase_area esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_erase_block esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_erase_chip esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_erase_sector esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_lock esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_prepare_encrypted_data esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_read esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_read_status esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_read_statushigh esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_read_user_cmd esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_set_bp esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_unlock esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_wait_idle esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_rom_spiflash_write esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_write_disable esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_write_encrypted esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_write_encrypted_disable esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_write_encrypted_enable esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_write_status esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_uart_flush_tx esp-idf/newlib/libnewlib.a(syscalls.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_rom/libesp_rom.a(esp_rom_uart.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_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_rtc_init esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_send_assoc_resp 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) +esp_send_sae_auth_reply esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) +esp_set_assoc_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_set_deep_sleep_wake_stub esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_set_scan_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_set_time_from_rtc esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_setup_newlib_syscalls esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +esp_sha_block esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) +esp_sha_lock_engine esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +esp_sha_lock_memory_block 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_try_lock_engine 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_unlock_engine 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_unlock_memory_block esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +esp_sleep_config_gpio_isolate esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +esp_sleep_disable_bt_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_disable_ext1_wakeup_io esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_disable_wakeup_source esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_disable_wifi_beacon_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_disable_wifi_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_adc_tsens_monitor esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_bt_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_ext0_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_ext1_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_ext1_wakeup_io esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_gpio_switch esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +esp_sleep_enable_gpio_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_timer_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_touchpad_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_uart_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_ulp_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_wifi_beacon_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_wifi_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_execute_event_callbacks esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_get_ext1_wakeup_status esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_get_touchpad_wakeup_status esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_get_wakeup_cause esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_is_valid_wakeup_gpio esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_isolate_digital_gpio esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_pd_config esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_periph_use_8m esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/driver/libdriver.a(ledc.c.obj) +esp_startup_start_app esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_startup_start_app_other_cores esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_supplicant_common_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_supplicant_common_init esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_supplicant_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_supplicant_disable_pmk_caching esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_supplicant_init esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_supplicant_str_to_mac esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) +esp_supplicant_unset_all_appie esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_sync_timekeeping_timers esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.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_chip.c.obj) + esp-idf/newlib/libnewlib.a(assert.c.obj) + esp-idf/newlib/libnewlib.a(abort.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +esp_system_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_print_triggered_tasks esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_reconfigure esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_reset esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_reset_user esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_restart esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_status esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_stop esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_time_impl_get_boot_time esp-idf/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_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +esp_timer_deinit esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_delete esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +esp_timer_dump esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_early_init esp-idf/esp_timer/libesp_timer.a(esp_timer.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_lac.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.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_lac.c.obj) +esp_timer_impl_deinit esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.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_lac.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_lac.c.obj) +esp_timer_impl_get_counter_reg esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_timer_impl_get_min_period_us esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + esp-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_lac.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_lac.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_lac.c.obj) +esp_timer_impl_set_alarm esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) +esp_timer_impl_set_alarm_id esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + esp-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_lac.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_lac.c.obj) +esp_timer_private_lock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_timer_private_set esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_timer_private_unlock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_timer_private_update_apb_freq esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_timer_restart esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_start_once esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +esp_timer_start_periodic esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +esp_timer_stop esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +esp_tx_state_out /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.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_uart_port_set_rx_line_endings esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +esp_vfs_dev_uart_port_set_tx_line_endings esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +esp_vfs_dev_uart_register esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +esp_vfs_dev_uart_set_rx_line_endings esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +esp_vfs_dev_uart_set_tx_line_endings esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +esp_vfs_dev_uart_use_driver esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +esp_vfs_dev_uart_use_nonblocking esp-idf/vfs/libvfs.a(vfs_uart.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_uart.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-idf/vfs/libvfs.a(vfs_uart.c.obj) +esp_vfs_select_triggered_isr esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +esp_vfs_set_readonly_flag 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_uart_get_vfs esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_console.c.obj) +esp_vfs_unlink esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_unregister esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_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_utime esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_write esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_wake_deep_sleep esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_wifi_80211_tx /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +esp_wifi_action_tx_req /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_ap_deauth_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_ap_get_max_sta_conn /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +esp_wifi_ap_get_prof_ap_ssid_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +esp_wifi_ap_get_prof_authmode_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +esp_wifi_ap_get_prof_pairwise_cipher_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +esp_wifi_ap_get_prof_password_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +esp_wifi_ap_get_prof_pmk_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) +esp_wifi_ap_get_sta_aid /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +esp_wifi_ap_get_sta_aid_local /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_ap_get_sta_list /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_wifi_ap_is_sta_sae_reauth_node /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_ap_notify_node_sae_auth_done /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +esp_wifi_auth_done_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_beacon_monitor_configure /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_bt_power_domain_off esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +esp_wifi_bt_power_domain_on esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +esp_wifi_build_rsnxe esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +esp_wifi_clear_ap_list /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_coex_pwr_configure /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_config_11b_rate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_config_80211_tx_rate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_config_espnow_rate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_connect /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_wifi_connectionless_module_set_wake_interval /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_wifi_deauthenticate_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_deinit esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_wifi_deinit_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_wifi_del_key_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_disarm_sta_connection_timer_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +esp_wifi_disconnect /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_wifi_eb_tx_status_success_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_enable_sae_pk_only_mode_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) +esp_wifi_enable_sta_privacy_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +esp_wifi_force_wakeup_acquire /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_force_wakeup_release /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_ftm_end_session /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_ftm_end_session_local /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_ftm_get_report /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_ftm_get_report_local /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_ftm_initiate_session /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_ftm_resp_set_offset /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_ftm_resp_set_offset_local /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_ant /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_ant_gpio /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_appie_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +esp_wifi_get_assoc_bssid_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +esp_wifi_get_auto_connect /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_bandwidth /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_beacon_interval /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_wifi_get_channel /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_config /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_wifi_get_config_channel_local /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_config_sae_pwe_h2e_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +esp_wifi_get_country /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_country_code /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_event_mask /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +esp_wifi_get_hostap_private_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_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 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_inactive_time_local /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_key_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_get_mac /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) +esp_wifi_get_macaddr_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_get_max_tx_power /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_mode /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_wifi_get_negotiated_bw_local /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_negotiated_channel_local /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_pmf_config_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +esp_wifi_get_promiscuous /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_promiscuous_ctrl_filter /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_promiscuous_filter /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_protocol /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_ps /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_wifi_get_spp_attrubute_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_get_tsf_time /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_user_init_flag_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_wifi_get_wps_status_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +esp_wifi_get_wps_type_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +esp_wifi_improve_contention_ability /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_init esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + esp-idf/main/libmain.a(mesh_main.c.obj) +esp_wifi_init_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_wifi_internal_configure_wake_window /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_crypto_funcs_md5_check /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_esp_wifi_he_md5_check /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_esp_wifi_md5_check /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_free_rx_buffer /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) +esp_wifi_internal_get_config_channel /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_get_fix_rate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_get_log /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_get_mib /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +esp_wifi_internal_get_negotiated_bandwidth /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_get_negotiated_channel /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_get_rts /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +esp_wifi_internal_ioctl /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_issue_disconnect /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +esp_wifi_internal_on_coex_schm_phase /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +esp_wifi_internal_on_coex_start /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +esp_wifi_internal_osi_funcs_md5_check /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_reg_netstack_buf_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_wifi_internal_reg_netstack_buf_cb_local /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_reg_rxcb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +esp_wifi_internal_set_fix_rate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_set_log_level /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_wifi_internal_set_log_mod /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_set_msdu_lifetime /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) +esp_wifi_internal_set_retry_counter /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) +esp_wifi_internal_set_rts /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +esp_wifi_internal_set_spp_amsdu /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_set_sta_ip /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_wifi_internal_supplicant_header_md5_check /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_internal_tx /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +esp_wifi_internal_tx_is_stop /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +esp_wifi_internal_update_light_sleep_default_params /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_update_mac_time /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_wifi_internal_wifi_he_type_md5_check /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_wifi_type_md5_check /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_ipc_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +esp_wifi_is_btm_enabled_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_is_ft_enabled_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_is_rm_enabled_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_mesh_reg_rxcb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) +esp_wifi_mesh_tx /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +esp_wifi_register_eapol_txdonecb_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_register_wpa2_cb_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_wifi_register_wpa3_ap_cb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_register_wpa3_cb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_register_wpa_cb_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_remain_on_channel /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_restart /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_restore /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_scan_get_ap_num /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_wifi_scan_get_ap_record /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_scan_get_ap_records /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_scan_get_cur_ap_info /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) +esp_wifi_scan_get_cur_ap_record /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) +esp_wifi_scan_sort_ap_records /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_wifi_scan_sort_get_cur_ap_info /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_wifi_scan_sort_get_cur_ap_record /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_wifi_scan_start /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_wifi_scan_stop /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_wifi_send_deauth_local /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_send_mgmt_frm_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +esp_wifi_set_11b_tx_plcp /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +esp_wifi_set_ant /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_ant_gpio /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_ap_key_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +esp_wifi_set_appie_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_set_auto_connect /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_bandwidth /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_beacon_interval /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_wifi_set_channel /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_config /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_wifi_set_country /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) +esp_wifi_set_country_code /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_csi /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_csi_config /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_csi_rx_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_default_wifi_ap_handlers esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_wifi_set_default_wifi_nan_handlers esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_wifi_set_default_wifi_sta_handlers esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_wifi_set_dynamic_cs /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_event_mask /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_home_channel /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_igtk_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_inactive_time_local /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_keep_alive_time /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_wifi_set_key_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_set_mac /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_max_tx_power /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_mode /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_wifi_set_non_mesh_connections /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_wifi_set_promiscuous /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_promiscuous_ctrl_filter /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_promiscuous_filter /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_promiscuous_rx_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_protocol /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_ps /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_wifi_set_rssi_threshold /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_set_sleep_min_active_time /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_wifi_set_sleep_wait_broadcast_data_time /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_wifi_set_sta_key_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_set_sta_rx_probe_req /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_storage /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/main/libmain.a(mesh_main.c.obj) +esp_wifi_set_tx_done_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_vendor_ie /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_vendor_ie_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_wpa2_ent_state_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_wifi_set_wps_cb_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +esp_wifi_set_wps_start_flag_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +esp_wifi_set_wps_status_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +esp_wifi_set_wps_type_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +esp_wifi_skip_supp_pmkcaching /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +esp_wifi_sta_connect_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_sta_disable_owe_trans_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) +esp_wifi_sta_disable_sae_pk_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_sta_disable_wpa2_authmode_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) +esp_wifi_sta_enterprise_disable esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_wifi_sta_enterprise_enable esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_wifi_sta_get_aid /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_sta_get_aid_local /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_sta_get_ap_info /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_sta_get_ap_info_prof_pmk_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +esp_wifi_sta_get_config_sae_pk_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +esp_wifi_sta_get_group_cipher_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_sta_get_mgmt_group_cipher /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +esp_wifi_sta_get_negotiated_phymode /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_sta_get_negotiated_phymode_local /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_sta_get_pairwise_cipher_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_sta_get_prof_authmode_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_sta_get_prof_ssid_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +esp_wifi_sta_get_rsnxe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +esp_wifi_sta_get_rssi /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_sta_get_sae_identifier_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +esp_wifi_sta_is_running_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_sta_pmf_enabled /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +esp_wifi_sta_prof_is_rsn_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_sta_prof_is_wapi_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_sta_prof_is_wpa2_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +esp_wifi_sta_prof_is_wpa_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_sta_set_reset_param_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +esp_wifi_sta_update_ap_info_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +esp_wifi_sta_wpa2_ent_disable_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_wifi_sta_wpa2_ent_enable_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_wifi_start /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/main/libmain.a(mesh_main.c.obj) +esp_wifi_statis_dump /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_stop /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_wifi_unregister_wpa2_cb_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +esp_wifi_unregister_wpa3_cb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +esp_wifi_unregister_wpa_cb_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_unset_appie_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) +esp_wifi_update_listen_interval /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_vnd_lora_disable /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) +esp_wifi_vnd_lora_enable /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) +esp_wifi_vnd_mesh_deinit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_wifi_vnd_mesh_get /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_wifi_vnd_mesh_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_wifi_vnd_mesh_set /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_wifi_vnd_roots_get /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_vnd_roots_set /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_wifi_wpa_ptk_init_done_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +esp_wifi_wps_disable esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +esp_wifi_wps_enable esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +esp_wifi_wps_start esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +esp_wnm_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_add_static_entry esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) +etharp_cleanup_netif esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +etharp_find_addr esp-idf/lwip/liblwip.a(etharp.c.obj) +etharp_get_entry esp-idf/lwip/liblwip.a(etharp.c.obj) +etharp_input esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(ethernet.c.obj) +etharp_output esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) +etharp_query esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) +etharp_remove_static_entry esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) +etharp_request esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +etharp_tmr esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) +ethbroadcast esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) +ethernet_input esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +ethernet_output esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(ethip6.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) +ethernetif_init esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) +ethernetif_input esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) +ethip6_output esp-idf/lwip/liblwip.a(ethip6.c.obj) + esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) +ethzero esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) +ets_delay_us /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ets_get_detected_xtal_freq esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +ets_install_putc1 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) +ets_install_putc2 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) +ets_isr_mask esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +ets_isr_unmask esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +ets_set_appcpu_boot_addr esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +ets_timer_arm esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +ets_timer_arm_us esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) +ets_timer_deinit esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +ets_timer_disarm esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) +ets_timer_done esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) +ets_timer_init esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +ets_timer_setfn esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) +ets_update_cpu_frequency_rom esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +fastpbkdf2_hmac_sha1 esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +fclose /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fclose.o) + 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(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +fcntl esp-idf/newlib/libnewlib.a(syscalls.c.obj) +fe_reg_init /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ferror /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ferror.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +fflush /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fflush.o) +fgets /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fgets.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +fopen /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fopen.o) + 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(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +force_bt_mode /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) +force_bttx_gain /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +force_hw_set_freq_flag /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +force_tx_gain_en /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +force_txrx_off /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +force_txrxoff /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +force_wifi_mode /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) +force_wifi_mode_on /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.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(esp_hostap.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) +fprintf /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fprintf.o) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +fputc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputc.o) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +fputs /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputs.o) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +fread /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fread.o) + 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(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +free esp-idf/newlib/libnewlib.a(heap.c.obj) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset_r.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/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/esp_coex/libesp_coex.a(esp_coex_adapter.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_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(mem.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_common.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + 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/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_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(uart.c.obj) + esp-idf/driver/libdriver.a(ledc.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.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/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_rwlock.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +free_bss_info /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +freq_i2c_addr /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +freq_offset_get_pwr_1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +freq_write_wifi_chan /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +frexp /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libm_a-s_frexp.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) +fseek /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseek.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) +fseeko /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseeko.o) +fsync esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) +ftell /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftell.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +ftello /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftello.o) +ftruncate esp-idf/vfs/libvfs.a(vfs.c.obj) +fwrite /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fwrite.o) + 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(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +gChmCxt /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) +gNanSm /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +gScanStruct /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +gWpaSm esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +gWpsSm esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +g_allowed_groups esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +g_authmode_incompatible /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +g_authmode_threshold_failure /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) +g_beacon_eb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) +g_beacon_idx /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) +g_chm /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +g_cnxMgr /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +g_cnx_probe_rc_list_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +g_coex_adapter_funcs esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) +g_def_2g_channels /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +g_dynamic_cs /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +g_eb_list_desc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +g_esp_wifi_he_md5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_esp_wifi_md5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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_hmac_cnt /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +g_ic /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_in_blacklist_flag /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +g_intr_lock_mux /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_is_mesh_started /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +g_is_root_fixed /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) +g_is_standalone_sta /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +g_is_wifi_connected /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +g_is_wifi_connecting /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +g_is_wifi_disconnecting /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +g_lmac_cnt /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +g_log_level /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +g_log_mod /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_mac_deinit_count /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +g_mac_deinit_rxing /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +g_mac_deinit_txing /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +g_mac_sleep_en /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +g_mesh_ann_interval /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_cfg_attemps /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_cfg_switch_parent /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_cfg_vote_percent /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_chain /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_conn /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +g_mesh_current_parent /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +g_mesh_dfs_compensation_ms /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) +g_mesh_ext_cfg /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +g_mesh_ext_vote_state /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +g_mesh_ie /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +g_mesh_init_ps_type /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_coex.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +g_mesh_is_root /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_coex.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +g_mesh_is_started /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_coex.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_manual_nwk /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +g_mesh_max_layer /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) +g_mesh_monitor_parent_beacon_count /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +g_mesh_nvs_settings /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_packet_lifetime /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +g_mesh_passive_scan_time /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_rmv_opt /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +g_mesh_root_conflicts_allowed /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_mesh_root_healing_delay /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_rt_capacity /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) +g_mesh_self_map_addr /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_self_organized /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +g_mesh_self_sta_addr /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +g_mesh_stop_event_group /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_stop_reconnection /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +g_mesh_topology /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +g_mesh_xon_cfg_qsize /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +g_misc_nvs /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +g_mmu_mem_regions esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +g_osi_funcs_p /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_coex.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +g_panic_abort esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +g_panic_abort_details esp-idf/esp_system/libesp_system.a(panic.c.obj) +g_phyFuns /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +g_phy_cap_rx_stbc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +g_pm /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_coex.o) +g_pm_cfg /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_coex.o) +g_pm_cnt /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +g_pp_timer_info /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) +g_pp_tx_pkt_num /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +g_rom_flashchip esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.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_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +g_rom_spiflash_chip esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +g_rom_spiflash_dummy_len_plus esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +g_rssi_threshold_failure /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +g_scan /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.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 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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_ticks_per_us_app esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) +g_ticks_per_us_pro esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) +g_timer_info /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +g_twdt_isr esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +g_wdev_csi_rx /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +g_wdev_csi_rx_ctx /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +g_wdev_last_desc_reset /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +g_wdev_nan_is_in_dw_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +g_wifi_crypto_funcs_md5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_wifi_default_mesh_crypto_funcs esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + esp-idf/main/libmain.a(mesh_main.c.obj) +g_wifi_default_wpa_crypto_funcs esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + esp-idf/main/libmain.a(mesh_main.c.obj) +g_wifi_event_mask /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +g_wifi_global_lock /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +g_wifi_he_type_md5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_wifi_improve_contention_ability /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_wifi_mac_time_delta /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_coex.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +g_wifi_menuconfig /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +g_wifi_nvs /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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(mesh_main.c.obj) +g_wifi_osi_funcs_md5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_wifi_supplicant_funcs_md5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +g_wifi_type_md5 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_wpa3_hostap_auth_api_lock esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +g_wpa_anonymous_identity esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_anonymous_identity_len esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_ca_cert esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_ca_cert_len esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_client_cert esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_client_cert_len esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_default_cert_bundle esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_new_password esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_new_password_len esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_pac_file esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_pac_file_len esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_password esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_password_len esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_phase1_options esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_pmk_caching_disabled esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +g_wpa_private_key esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_private_key_len esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_private_key_passwd esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_private_key_passwd_len esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_suiteb_certification esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) +g_wpa_supp esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) +g_wpa_ttls_phase2_type esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_username esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +g_wpa_username_len esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +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_bbgain_db /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +get_chan_pwr_index /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +get_i2c_read_mask /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +get_i2c_write_data /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +get_iav_key /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +get_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) +get_iq_est_snr_1 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +get_iq_value /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +get_lna_vga_dcap_val /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.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_operating_class esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) +get_param esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +get_phy_target_power /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +get_phy_version_str /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +get_rate_fcc_index /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +get_rate_pwctrl_offset /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +get_rate_target_power /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +get_rf_freq_cap /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +get_rf_freq_init /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +get_rfrx_dcap_bt /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +get_spur4m_pwr /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +get_target_power_offset /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +get_temp_buffer_not_supported esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) +get_temp_cal /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +get_total_scan_time /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +get_vdd33 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +get_vendor_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) +get_vfs_for_index esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/vfs/libvfs.a(vfs_console.c.obj) +get_vfs_for_path esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/vfs/libvfs.a(vfs_console.c.obj) +get_wifi_internal_state /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +gettimeofday /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_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 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gmtime.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +gmtime_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gmtime_r.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-lcltime_r.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gmtime.o) +gpio_config esp-idf/driver/libdriver.a(gpio.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_dump_io_configuration 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) + esp-idf/driver/libdriver.a(uart.c.obj) +gpio_iomux_out esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(uart.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) +gpio_set_direction esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(ledc.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) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(ledc.c.obj) +gpio_set_pull_mode esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/driver/libdriver.a(uart.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 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_agreement_clr_rx_ba /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_agreement_del_rx_ba /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_attenna_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +hal_ba_session_restore /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_ba_session_restore_by_hw_index /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +hal_ba_session_store /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_crypto_clr_key_entry /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_crypto_disable /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_crypto_enable /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +hal_crypto_get_key_entry /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_crypto_get_using_key_idx /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) +hal_crypto_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +hal_crypto_is_key_valid /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_crypto_mgmt_rx_enabled /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_crypto_set_key_entry /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_deinit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_disable_mac /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_disable_nan_tsf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +hal_disable_softap_tsf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +hal_disable_sta_tsf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +hal_enable_mac /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_enable_nan_tsf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +hal_enable_sta_tsf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_tsf.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +hal_get_tsf_time /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +hal_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_mac_clr_bssid /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +hal_mac_clr_txq_state /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +hal_mac_deinit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_mac_disable_low_rate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_mac_enable_low_rate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_mac_get_txq_pmd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +hal_mac_get_txq_state /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +hal_mac_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_mac_interrupt_clr_event /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_mac_interrupt_clr_watchdog /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_mac_interrupt_get_event /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_mac_is_low_rate_enabled /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +hal_mac_is_txq_enabled /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +hal_mac_is_txq_valid /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +hal_mac_rate_autoack_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +hal_mac_rx_disable /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +hal_mac_rx_enable /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +hal_mac_rx_get_end_info /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_mac_rx_get_end_state /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_mac_rx_get_last_dscr /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_mac_rx_is_dscr_reload /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_mac_rx_read_rxdscrlast /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +hal_mac_rx_read_rxdscrnext /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_mac_rx_set_base /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_mac_rx_set_dscr_reload /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_rx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_mac_rx_set_policy /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_mac_set_addr /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_mac_set_bssid /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_mac_set_csi /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_mac_set_rxq_policy /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_mac_set_txq_invalid /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +hal_mac_tsf_get_time /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +hal_mac_tsf_reset /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +hal_mac_tsf_set_time /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +hal_mac_tx_config_edca /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +hal_mac_tx_config_timeout /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +hal_mac_tx_get_blockack /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +hal_mac_tx_is_cbw40 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +hal_mac_tx_set_cca /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +hal_mac_tx_set_ppdu /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +hal_mac_txq_disable /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +hal_mac_txq_enable /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +hal_now /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +hal_random /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_rx_disable_bssid_check /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_rx_enable_bssid_check /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +hal_sniffer_disable /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_sniffer_enable /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_sniffer_rx_clr_statistics /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hal_sniffer_rx_set_promis /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_sniffer.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +hall_sens_amp_read /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +hall_sens_amp_read_full /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +hall_sens_read /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +hall_sens_read_full /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +handle_auth_sae esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +has_ctrl_char esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) +hash_nt_password_hash esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +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/driver/libdriver.a(spi_common.c.obj) + esp-idf/newlib/libnewlib.a(heap.c.obj) +heap_caps_aligned_alloc_base esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_aligned_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_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.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/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(ledc.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +heap_caps_calloc_base esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_calloc_prefer esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_check_add_region_allowed esp-idf/heap/libheap.a(heap_caps_init.c.obj) +heap_caps_check_integrity esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_check_integrity_addr esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_check_integrity_all esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_dump esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_dump_all esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_enable_nonos_stack_heaps esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +heap_caps_free esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/newlib/libnewlib.a(heap.c.obj) + esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_get_allocated_size esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_get_free_size esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) +heap_caps_get_info esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_get_largest_free_block esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +heap_caps_get_minimum_free_size esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) +heap_caps_get_total_size esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_init esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 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_coex/libesp_coex.a(esp_coex_adapter.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(idf_additions.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +heap_caps_malloc_base esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_malloc_default esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/newlib/libnewlib.a(heap.c.obj) +heap_caps_malloc_extmem_enable esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_malloc_prefer esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +heap_caps_match esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +heap_caps_print_heap_info esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_realloc esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +heap_caps_realloc_base esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_realloc_default esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/newlib/libnewlib.a(heap.c.obj) +heap_caps_realloc_prefer esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_register_failed_alloc_callback esp-idf/heap/libheap.a(heap_caps.c.obj) +hex2byte esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +hexstr2bin esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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(wps_attr_process.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) +hmac_sha256_kdf esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +hmac_sha256_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(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 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +hostap_deliver_data /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +hostap_eapol_resend_process esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +hostap_handle_timer /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +hostap_handle_timer_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +hostap_recv_ctl /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +hostap_recv_mgmt /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +hostapd_cleanup esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +hostapd_config_clear_wpa_psk esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) +hostapd_config_defaults esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) +hostapd_config_defaults_bss esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) +hostapd_config_free_bss esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +hostapd_free_stas esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) +hostapd_get_hapd_data esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +hostapd_get_psk esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +hostapd_mac_comp esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) +hostapd_mac_comp_empty esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) +hostapd_maclist_found esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) +hostapd_rate_found esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) +hostapd_send_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +hostapd_setup_sae_pt esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) +hostapd_setup_wpa_psk esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +hostapd_wep_key_cmp esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) +ht_action_output /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +hwaddr_aton2 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) +i2c_bbpll_init /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +i2c_bbtop_init /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +i2c_bias_init /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +i2c_bt_filter_set /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +i2c_master_reset /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +i2c_rfpll_init /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +i2c_rftx_init /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +i2c_write_master /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +i2c_xtal_init /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +i2cmst_reg_init /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +ic_add_rx_ba /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ic_ampdu_op /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ic_bb_check_noise_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ic_beacon_monitor_configure /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_clear_interrupt_handler /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_connectionless_module_set_wake_interval /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_create_wifi_task /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_csi_set_config /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_deinit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_del_key /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ic_del_key_all /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ic_del_rx_ba /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ic_delete_wifi_task /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_disable_crypto /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ic_disable_rx /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_disable_sniffer /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ic_ebuf_alloc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ic_ebuf_recycle_rx /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ic_ebuf_recycle_tx /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ic_enable_rx /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_enable_sniffer /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ic_get_80211_tx_rate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ic_get_G6M_sched /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +ic_get_addr /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ic_get_default_sched /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ic_get_espnow_rate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) +ic_get_fix_rate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_get_key /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ic_get_next_tbtt /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ic_get_pp_hdl /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_get_promis_ctrl_filter /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_get_promis_filter /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_get_ptk_alg /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ic_get_random /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +ic_get_rssi /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ic_get_trc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ic_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_interface_enabled /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ic_is_mgmt_hwdecr_enabled /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ic_is_pure_sta /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ic_mac_deinit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_mac_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_obtain_key /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ic_pp_post /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ic_register_config_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_register_csi_rx_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_register_ftm_callbacks /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ic_register_michael_mic_failure_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ic_register_nan_callbacks /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +ic_register_net80211_tx_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ic_register_pm_tx_null_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_register_pp_tx_done_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_register_promis_rx_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_register_rx_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ic_register_timer_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_register_timer_post_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_register_tx_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ic_reset_rx_ba /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ic_reset_tbtt /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ic_rx_disable_bssid_check /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ic_rx_enable_bssid_check /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ic_set_80211_tx_rate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_set_ac_param /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) +ic_set_bar_rate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_set_beacon_int /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ic_set_bssid /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ic_set_csi /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_set_current_channel /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) +ic_set_espnow_rate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_set_fix_rate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_set_interface /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ic_set_interrupt_handler /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_set_keep_alive_time /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_set_key /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ic_set_mac /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ic_set_promis_ctrl_filter /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_set_promis_filter /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_set_rx_policy /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ic_set_rx_policy_ubssid_check /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ic_set_sleep_min_active_time /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_set_sleep_wait_broadcast_data_time /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_set_sta /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) +ic_set_sta_auth_flag /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ic_set_trc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +ic_set_vif /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ic_stop_hw_txq /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_stop_sw_txq /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_trc_set_per_pkt_rate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ic_trc_update_def_rate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_trc_update_ifx_phy_mode /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) +ic_tx_is_idle /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ic_tx_pkt /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ic_txq_empty /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_update_light_sleep_default_params /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_update_listen_interval /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +icmp6_dest_unreach esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) +icmp6_input esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) +icmp6_packet_too_big esp-idf/lwip/liblwip.a(icmp6.c.obj) +icmp6_param_problem esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) +icmp6_time_exceeded esp-idf/lwip/liblwip.a(icmp6.c.obj) +icmp6_time_exceeded_with_addrs esp-idf/lwip/liblwip.a(icmp6.c.obj) +icmp_dest_unreach esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) +icmp_input esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) +ieee80211_action_vendor_spec_attach /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_add_action_vendor_spec_esp /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) +ieee80211_add_assoc_req_ies /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_assoc_resp_ies /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_beacon_app_ies /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_countryie /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_csa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_dsparams /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_extcap /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_htcap /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +ieee80211_add_htcap_vendor /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_htinfo /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_htinfo_body /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ieee80211_add_htinfo_vendor /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_ie_esp_mesh_head /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_add_ie_vendor_esp_freq_annon /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) +ieee80211_add_ie_vendor_esp_head /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_add_ie_vendor_esp_manufacturer /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_ie_vendor_esp_mesh_group /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) +ieee80211_add_ie_vendor_esp_now /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) +ieee80211_add_ie_vendor_esp_simple_pair /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) +ieee80211_add_ie_vendor_esp_ssid /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) +ieee80211_add_mesh_assoc_ie /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_add_mesh_duty_signaling /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_add_mesh_ext_assoc_ie /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_add_mesh_ps_ie /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_add_mesh_roots_ie /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_add_mesh_ssid_ie /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_add_probe_req_ies /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_probe_resp_app_ies /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_rates /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +ieee80211_add_wme_param /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_xrates /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_adjust_2nd_chan /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_align_eb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_alloc_action_vendor_spec /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) +ieee80211_alloc_challenge /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ieee80211_alloc_deauth /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_alloc_proberesp /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_alloc_tx_buf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) +ieee80211_ampdu_age_all /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +ieee80211_ampdu_enable /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_ampdu_reorder /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_ampdu_request /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_ampdu_start_age_timer /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ieee80211_ampdu_stop /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ieee80211_amsdu_adjust_head /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_amsdu_adjust_last_length /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_amsdu_encap_check /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_amsdu_length_check /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_amsdu_negotiate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +ieee80211_amsdu_send_check /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_ap_sa_query_timeout /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +ieee80211_ap_try_sa_query /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +ieee80211_assoc_req_construct /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_assoc_resp_construct /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_auth_construct /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_beacon_alloc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_beacon_construct /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_better_rsn_pairwise_cipher /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) +ieee80211_cal_tx_pps /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ieee80211_ccmp_decrypt /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_ccmp_encrypt /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_classify /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_cnx_attach /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_copy_eb_header /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_crypto_aes_128_cmac_decrypt /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ieee80211_crypto_aes_128_cmac_encrypt /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_crypto_attach /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_crypto_available /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) +ieee80211_crypto_decap /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_crypto_encap /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_crypto_gmac_decrypt /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ieee80211_crypto_setkey /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) +ieee80211_deauth_construct /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_decap /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_decap1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ieee80211_decap_amsdu /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_decrypt_espnow_pkt /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_deliver_data /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) +ieee80211_disassoc_construct /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_empty_txq /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_encap_amsdu /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_encap_esfbuf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_encap_null_data /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_espnow_get_init_flag /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_espnow_set_init_flag /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_ethbroadcast /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_find_elem /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_find_elem_match /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_find_ext_elem /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_find_ext_ie /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_find_ie /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ieee80211_find_ie_match /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_free_beacon_eb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_freedom_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_freedom_inside_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_ftm_attach esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +ieee80211_get_chan_info /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_get_cipher_mic_len /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_get_key /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ieee80211_get_mac_addr_from_frame /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_get_ptk /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_get_robustmgtframe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_get_spp /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_get_sta_gtk_index /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_getbcnframe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_getcapinfo /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_getmgtframe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_gettid /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_gpsq_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_has_ht40_bss /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ieee80211_hostap_attach /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_hostap_send_beacon_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) +ieee80211_hostapd_beacon_txcb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_hostapd_data_txcb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) +ieee80211_hostapd_ps_txcb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_ht_attach /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_ht_deattach /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_ht_node_cleanup /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_ht_node_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_ht_updatehtcap /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_ht_updateparams /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ieee80211_ifattach /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_ifdetach /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_init_mesh_assoc_ie /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) +ieee80211_ioctl /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_ioctl_deinit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_ioctl_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_ioctl_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_is_11b_rate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) +ieee80211_is_40mhz_valid_bw /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_is_bufferable_mmpdu /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_is_ht_cipher /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_is_lr_only /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_is_mesh_roots_announce /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_is_mesh_roots_announce_used /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_is_mesh_roots_fixed /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_is_mesh_roots_gone /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_is_mesh_roots_valid /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_is_mesh_roots_yield /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_is_mesh_roots_yield_used /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_is_robust_mgmt_frm /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_is_support_rate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) +ieee80211_is_tx_allowed /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_iserp_rateset /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) +ieee80211_mesh_quick_deinit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_mesh_quick_get /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_mesh_quick_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_mesh_quick_set /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_mgmt_output /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_mlme_connect_bss /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +ieee80211_mt_key_clear_mask /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_mt_key_is_mask /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_mt_key_is_mask_zero /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_mt_key_set_mask /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_node_pwrsave /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_nvs_set_default_ssid /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +ieee80211_opcap /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_output /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_output_do /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_output_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_output_pending_eb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_output_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_output_raw_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_parse_action /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ieee80211_parse_beacon /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_parse_htcap /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ieee80211_parse_obss_scan_param /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +ieee80211_parse_rsn /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +ieee80211_parse_wapi /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +ieee80211_parse_wmeparams /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +ieee80211_parse_wpa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +ieee80211_phy_2nd_chan_is_valid /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_phy_deinit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_phy_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_phy_mode_show /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +ieee80211_phy_type_get /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +ieee80211_pm_tx_null_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_post_hmac_tx /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) +ieee80211_proto_attach /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_psq_cleanup /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) +ieee80211_psq_drop_one_pkt /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) +ieee80211_psq_find_max_bss /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) +ieee80211_psq_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_psq_is_buff_pkt /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) +ieee80211_psq_send_one_pkt /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) +ieee80211_psq_take_head /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) +ieee80211_psq_take_tail /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) +ieee80211_public_action_recv_mesh_awake /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) +ieee80211_public_action_send_mesh_awake /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_pwrsave /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_pwrsave_node_cleanup /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_pwrsave_txcb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_rate_ref_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_raw_frame_sanity_check /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_recv_action /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_recv_action_register /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_recv_action_unregister /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) +ieee80211_recv_action_vendor_spec /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) +ieee80211_recv_bar /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_recv_mesh_duty_signaling /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_recycle_cache_eb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_reg_encap_amsdu_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_reg_netstack_buf_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_regdomain_ap_max_chan /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_regdomain_ap_min_chan /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_regdomain_chan_in_range /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +ieee80211_regdomain_chan_num /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) +ieee80211_regdomain_get_country /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_regdomain_is_active_scan /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +ieee80211_regdomain_max_chan /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_regdomain_max_tx_power /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) +ieee80211_regdomain_min_chan /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_regdomain_policy /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_regdomain_update /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) +ieee80211_regdomain_update_in_connect /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +ieee80211_regdomain_update_in_scan /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +ieee80211_register_hostap_timer /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_register_wapi_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_rfid_locp_recv /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_rfid_locp_recv_close /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) +ieee80211_rfid_locp_recv_open /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) +ieee80211_rfid_locp_recv_reset /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_rsn_cipher_priority /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) +ieee80211_scan_attach /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_scan_deattach /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_search_node /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_send_action /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_send_action_register /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_send_action_unregister /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) +ieee80211_send_action_vendor_spec /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) +ieee80211_send_deauth /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_send_mgmt /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_send_nulldata /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_send_probereq /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +ieee80211_send_proberesp /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_send_setup /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) +ieee80211_set_appie /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_set_gtk /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_set_hmac_stop /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_set_key /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_set_max_rate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +ieee80211_set_phy_2nd_chan /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_set_phy_bw /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_set_phy_mode /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_set_shortslottime /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ieee80211_set_sta_gtk_index /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_set_tim /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_set_tx_desc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_set_user_sup_rate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) +ieee80211_setup_basic_htrates /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ieee80211_setup_htrates /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +ieee80211_setup_lr_rates /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_setup_phy_mode /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_setup_pmf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_setup_rates /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_setup_rateset /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +ieee80211_setup_ratetable /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) +ieee80211_setup_robust_mgmtframe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_sta_connect /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_sta_disconnect /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_sta_is_connected /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_sta_new_state /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_sta_scan /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_timer_do_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_timer_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_tx_mgt_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) +ieee80211_unregister_wapi_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_update_channel /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_update_phy_country /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_user_ie_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_vnd_ie_set /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_vnd_ie_size /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_vnd_lora_ie_set /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_vnd_lora_ie_size /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_vnd_mesh_fully_associated /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_vnd_mesh_quick_get /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_vnd_mesh_quick_set /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_vnd_mesh_roots_get /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_vnd_mesh_roots_set /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_vnd_mesh_update_beacon /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_wapi_alloc_tx_buf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_wme_initparams /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) +ieee80211_wme_standard_ac_to_esp_ac /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ieee80211_wme_updateparams /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ieee80211w_get_active_igtk_key_id /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) +ieee80211w_get_igtk_from_keyidx /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) +ieee802_11_ext_capab esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) +ieee802_11_ie_count esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) +ieee802_11_parse_candidate_list esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) +ieee802_11_parse_elems esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) +ieee802_11_vendor_ie_concat esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) +if_ctrl /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.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_rssi_adjust /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +inc_byte_array esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +include_esp_phy_override esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +inet_chksum esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) +inet_chksum_pbuf esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) +inet_chksum_pseudo esp-idf/lwip/liblwip.a(inet_chksum.c.obj) +inet_chksum_pseudo_partial esp-idf/lwip/liblwip.a(inet_chksum.c.obj) +init_wifi_disable /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +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) +io_cfg2str /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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(ip4.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +ip4_addr_netmask_valid esp-idf/lwip/liblwip.a(ip4_addr.c.obj) +ip4_frag esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) +ip4_input esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(ip.c.obj) +ip4_netif_exist esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) +ip4_output esp-idf/lwip/liblwip.a(ip4.c.obj) +ip4_output_if esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +ip4_output_if_opt esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) +ip4_output_if_opt_src esp-idf/lwip/liblwip.a(ip4.c.obj) +ip4_output_if_src esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) +ip4_route esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) +ip4_route_src esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +ip4_route_src_hook esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) +ip4_set_default_multicast_netif esp-idf/lwip/liblwip.a(ip4.c.obj) +ip4addr_aton esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + esp-idf/lwip/liblwip.a(ip.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +ip4addr_ntoa esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + esp-idf/lwip/liblwip.a(ip.c.obj) +ip4addr_ntoa_r esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + esp-idf/lwip/liblwip.a(ip.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +ip6_addr_any esp-idf/lwip/liblwip.a(ip6_addr.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) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +ip6_chksum_pseudo esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +ip6_chksum_pseudo_partial esp-idf/lwip/liblwip.a(inet_chksum.c.obj) +ip6_frag esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) +ip6_input esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(ip.c.obj) +ip6_options_add_hbh_ra esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) +ip6_output esp-idf/lwip/liblwip.a(ip6.c.obj) +ip6_output_if esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +ip6_output_if_src esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) +ip6_route esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +ip6_select_source_address esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +ip6addr_aton esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + esp-idf/lwip/liblwip.a(ip.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +ip6addr_ntoa esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + esp-idf/lwip/liblwip.a(ip.c.obj) +ip6addr_ntoa_r esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + esp-idf/lwip/liblwip.a(ip.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +ip_addr_any esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.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(dhcp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) +ip_chksum_pseudo esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +ip_chksum_pseudo_partial esp-idf/lwip/liblwip.a(inet_chksum.c.obj) +ip_data esp-idf/lwip/liblwip.a(ip.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +ip_event_handler esp-idf/main/libmain.a(mesh_main.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) +is_esp_mesh_assoc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +is_esp_mesh_duty_signaling /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +is_esp_mesh_ext_assoc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +is_esp_mesh_ps /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +is_lmac_idle /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +is_mesh_child /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +is_mesh_last_parent /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +is_my_ie_encrypted /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +is_off_channel /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +is_self_mac_greater /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +is_wapi_alloc_tx_buf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +is_wps_enabled esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +iswspace /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-iswspace.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) +iswspace_l /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-iswspace_l.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-iswspace.o) +itoa /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-itoa.o) + esp-idf/newlib/libnewlib.a(assert.c.obj) + esp-idf/newlib/libnewlib.a(abort.c.obj) +ld_include_highint_hdl esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) +ledc_bind_channel_timer esp-idf/driver/libdriver.a(ledc.c.obj) +ledc_cb_register esp-idf/driver/libdriver.a(ledc.c.obj) +ledc_channel_config esp-idf/driver/libdriver.a(ledc.c.obj) + esp-idf/main/libmain.a(mesh_light.c.obj) +ledc_fade_func_install esp-idf/driver/libdriver.a(ledc.c.obj) + esp-idf/main/libmain.a(mesh_light.c.obj) +ledc_fade_func_uninstall esp-idf/driver/libdriver.a(ledc.c.obj) +ledc_fade_start esp-idf/driver/libdriver.a(ledc.c.obj) +ledc_find_suitable_duty_resolution esp-idf/driver/libdriver.a(ledc.c.obj) +ledc_get_duty esp-idf/driver/libdriver.a(ledc.c.obj) +ledc_get_freq esp-idf/driver/libdriver.a(ledc.c.obj) +ledc_get_hpoint esp-idf/driver/libdriver.a(ledc.c.obj) +ledc_hal_clear_fade_end_intr_status esp-idf/hal/libhal.a(ledc_hal_iram.c.obj) + esp-idf/driver/libdriver.a(ledc.c.obj) +ledc_hal_get_clk_cfg esp-idf/hal/libhal.a(ledc_hal.c.obj) + esp-idf/driver/libdriver.a(ledc.c.obj) +ledc_hal_get_duty esp-idf/hal/libhal.a(ledc_hal_iram.c.obj) + esp-idf/driver/libdriver.a(ledc.c.obj) +ledc_hal_get_fade_end_intr_status esp-idf/hal/libhal.a(ledc_hal_iram.c.obj) + esp-idf/driver/libdriver.a(ledc.c.obj) +ledc_hal_init esp-idf/hal/libhal.a(ledc_hal.c.obj) + esp-idf/driver/libdriver.a(ledc.c.obj) +ledc_hal_ls_channel_update esp-idf/hal/libhal.a(ledc_hal_iram.c.obj) + esp-idf/driver/libdriver.a(ledc.c.obj) +ledc_hal_set_duty_int_part esp-idf/hal/libhal.a(ledc_hal_iram.c.obj) + esp-idf/driver/libdriver.a(ledc.c.obj) +ledc_hal_set_duty_start esp-idf/hal/libhal.a(ledc_hal_iram.c.obj) + esp-idf/driver/libdriver.a(ledc.c.obj) +ledc_hal_set_fade_param esp-idf/hal/libhal.a(ledc_hal_iram.c.obj) + esp-idf/driver/libdriver.a(ledc.c.obj) +ledc_hal_set_hpoint esp-idf/hal/libhal.a(ledc_hal_iram.c.obj) + esp-idf/driver/libdriver.a(ledc.c.obj) +ledc_isr_register esp-idf/driver/libdriver.a(ledc.c.obj) +ledc_periph_signal esp-idf/soc/libsoc.a(ledc_periph.c.obj) + esp-idf/driver/libdriver.a(ledc.c.obj) +ledc_set_duty esp-idf/driver/libdriver.a(ledc.c.obj) + esp-idf/main/libmain.a(mesh_light.c.obj) +ledc_set_duty_and_update esp-idf/driver/libdriver.a(ledc.c.obj) +ledc_set_duty_with_hpoint esp-idf/driver/libdriver.a(ledc.c.obj) +ledc_set_fade esp-idf/driver/libdriver.a(ledc.c.obj) +ledc_set_fade_step_and_start esp-idf/driver/libdriver.a(ledc.c.obj) +ledc_set_fade_time_and_start esp-idf/driver/libdriver.a(ledc.c.obj) +ledc_set_fade_with_step esp-idf/driver/libdriver.a(ledc.c.obj) +ledc_set_fade_with_time esp-idf/driver/libdriver.a(ledc.c.obj) +ledc_set_freq esp-idf/driver/libdriver.a(ledc.c.obj) +ledc_set_pin esp-idf/driver/libdriver.a(ledc.c.obj) +ledc_stop esp-idf/driver/libdriver.a(ledc.c.obj) +ledc_timer_config esp-idf/driver/libdriver.a(ledc.c.obj) + esp-idf/main/libmain.a(mesh_light.c.obj) +ledc_timer_pause esp-idf/driver/libdriver.a(ledc.c.obj) +ledc_timer_resume esp-idf/driver/libdriver.a(ledc.c.obj) +ledc_timer_rst esp-idf/driver/libdriver.a(ledc.c.obj) +ledc_timer_set esp-idf/driver/libdriver.a(ledc.c.obj) +ledc_update_duty esp-idf/driver/libdriver.a(ledc.c.obj) + esp-idf/main/libmain.a(mesh_light.c.obj) +libcore_reversion_git /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) +libmesh_reversion_git /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +libnet80211_reversion_git /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +libnet80211_reversion_remote /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +libpp_reversion_git /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +light_off esp-idf/main/libmain.a(mesh_main.c.obj) +light_on esp-idf/main/libmain.a(mesh_main.c.obj) +lmacAdjustTimestamp /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +lmacConfMib /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +lmacDisableTransmit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacDiscardAgedMSDU /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +lmacDiscardFrameExchangeSequence /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacDiscardMSDU /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacEndFrameExchangeSequence /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacEndRetryAMPDUFail /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacGetTxFrame /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +lmacInit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +lmacInitAc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacIsIdle /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +lmacIsLongFrame /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacMSDUAged /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +lmacPostTxComplete /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +lmacProcessAckTimeout /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacProcessAllTxTimeout /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +lmacProcessCollision /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacProcessCollisions /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +lmacProcessCollisions_task /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +lmacProcessCtsTimeout /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacProcessLongFrameSuccess /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacProcessLongRetryFail /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacProcessRxSucData /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +lmacProcessShortFrameSuccess /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacProcessShortRetryFail /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacProcessTBSuccess /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacProcessTxComplete /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +lmacProcessTxError /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacProcessTxRtsError /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacProcessTxSuccess /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacProcessTxTimeout /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +lmacProcessTxopSuccess /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacProcessTxseckiderr /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacReachLongLimit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacReachShortLimit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacRecycleMPDU /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +lmacRetryTxFrame /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacRxDone /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +lmacSetAcParam /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +lmacSetTxFrame /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacStopTransmit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacTxDone /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacTxFrame /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +lmac_record_txtime /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmac_stop_hw_txq /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +lmac_update_tx_statistic /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +localeconv /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-localeconv.o) +localtime_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-lcltime_r.o) + esp-idf/log/liblog.a(log_freertos.c.obj) +lr_enable /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +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(nd6.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) +lwip_htons esp-idf/lwip/liblwip.a(def.c.obj) + esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +lwip_inet_ntop esp-idf/lwip/liblwip.a(sockets.c.obj) +lwip_inet_pton esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +lwip_init esp-idf/lwip/liblwip.a(init.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +lwip_init_tcp_isn esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +lwip_ioctl esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) +lwip_itoa esp-idf/lwip/liblwip.a(def.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +lwip_listen esp-idf/lwip/liblwip.a(sockets.c.obj) +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_enable_bb /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +mac_last_rxbuf_deinit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) +mac_last_rxbuf_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) +mac_rxbuf_disable /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +mac_rxbuf_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +mac_tx_set_duration /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +mac_tx_set_htsig /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +mac_tx_set_plcp0 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +mac_tx_set_plcp1 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +mac_tx_set_plcp2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +mac_txrx_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +main /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/crt0.o +mallinfo esp-idf/newlib/libnewlib.a(heap.c.obj) +malloc esp-idf/newlib/libnewlib.a(heap.c.obj) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-gmtime.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtok.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setvbuf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-rand.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(new_op.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/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_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/lwip/liblwip.a(mem.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/nvs_flash/libnvs_flash.a(nvs_partition_lookup.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/driver/libdriver.a(uart.c.obj) + esp-idf/newlib/libnewlib.a(newlib_init.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 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_free_named_data_list esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) +mbedtls_asn1_free_named_data_list_shallow esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_asn1_get_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_asn1_get_alg_null esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) +mbedtls_asn1_get_bitstring esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_asn1_get_bitstring_null esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_asn1_get_bool esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_asn1_get_enum esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) +mbedtls_asn1_get_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.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) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_asn1_get_sequence_of esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_asn1_get_tag esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) +mbedtls_asn1_sequence_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_asn1_store_named_data esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_traverse_sequence_of esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) +mbedtls_asn1_write_algorithm_identifier esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_asn1_write_algorithm_identifier_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) +mbedtls_asn1_write_bitstring esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_write_bool esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_write_enum esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_write_ia5_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_write_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_asn1_write_len esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) +mbedtls_asn1_write_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_asn1_write_named_bitstring esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_write_null esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_write_octet_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) +mbedtls_asn1_write_oid esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_asn1_write_printable_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_write_raw_buffer esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_write_tag esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) +mbedtls_asn1_write_tagged_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_write_utf8_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_base64_decode esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) +mbedtls_base64_encode esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + esp-idf/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(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/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(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.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.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(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_base_lookup_table esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_cipher_check_tag esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_cipher_cmac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) +mbedtls_cipher_cmac_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_cipher_cmac_reset esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) +mbedtls_cipher_cmac_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_cipher_cmac_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_cipher_crypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_cipher_definitions esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_cipher_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) +mbedtls_cipher_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.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_mac.c.obj) +mbedtls_cipher_info_from_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_cipher_info_from_type esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.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(pkcs5.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(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_cipher_list esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_cipher_reset esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_cipher_set_iv esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) +mbedtls_cipher_set_padding_mode esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) +mbedtls_cipher_setkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.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(pkcs5.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(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.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(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_values_from_psa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) +mbedtls_cipher_write_tag esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_cmac_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) +mbedtls_ct_memcmp esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/library/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(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_ct_memcpy_if esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_ct_memcpy_offset esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_ct_memmove_left esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_ct_zeroize_if esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(constant_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_ctr_drbg_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_ctr_drbg_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_ctr_drbg_random esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_ctr_drbg_random_with_add esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_reseed esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_seed esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_ctr_drbg_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_set_entropy_len esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_set_nonce_len esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_set_prediction_resistance esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_set_reseed_interval esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_update_seed_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_write_seed_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ecc_group_from_psa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.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) +mbedtls_ecc_group_to_psa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.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/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) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.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/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_ecdh_gen_public esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_ecdh_get_grp_id esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecdh_get_params esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/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) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_ecdh_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.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) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_ecdh_make_params esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ecdh_make_public esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_ecdh_read_params esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_ecdh_read_public esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ecdh_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_ecdsa_can_do esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecdsa_der_to_raw esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) +mbedtls_ecdsa_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_ecdsa_from_keypair esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_ecdsa_genkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecdsa_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_ecdsa_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_ecdsa_raw_to_der esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) +mbedtls_ecdsa_read_signature esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_ecdsa_read_signature_restartable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecdsa_sign esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_ecdsa_sign_det_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_ecdsa_sign_det_restartable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecdsa_sign_restartable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecdsa_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_ecdsa_verify_restartable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecdsa_write_signature esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_ecdsa_write_signature_restartable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_eckey_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_eckeydh_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_ecp_check_privkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_ecp_check_pub_priv esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_ecp_check_pubkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_ecp_copy esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_curve_info_from_grp_id esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 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/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.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/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecp_group_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_group_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_ecp_group_load esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.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(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_ecp_grp_id_list esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_ecp_is_zero esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_ecp_keypair_calc_public esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_ecp_keypair_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_ecp_keypair_get_group_id esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_ecp_keypair_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_ecp_mul esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_ecp_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/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_point_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_point_read_binary esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_ecp_point_read_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_ecp_point_write_binary esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_ecp_read_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.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_public_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_ecp_set_zero esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_ecp_tls_read_group esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_ecp_tls_read_group_id esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_tls_read_point esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_tls_write_group esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_tls_write_point esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_write_key_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_ecp_write_public_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_entropy_add_source esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +mbedtls_entropy_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_entropy_func esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_entropy_gather esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +mbedtls_entropy_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +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(pkwrite.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.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(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +mbedtls_hardware_poll esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +mbedtls_hmac_drbg_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_hmac_drbg_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_hmac_drbg_random esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_hmac_drbg_random_with_add esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_reseed esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_seed esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_seed_buf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_hmac_drbg_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_set_entropy_len esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_set_prediction_resistance esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_set_reseed_interval esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_update_seed_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_write_seed_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_internal_sha1_process esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.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(entropy.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_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) +mbedtls_md_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) +mbedtls_md_error_from_psa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_md_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_md_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_md_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.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(rsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_md_get_name esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_md_get_size esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_md_get_type esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_md_hmac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_md_hmac_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_md_hmac_reset esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_md_hmac_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_md_hmac_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_md_info_from_ctx esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_md_info_from_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_md_info_from_type esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_md_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_md_list esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_md_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.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(rsa.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/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.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/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_msg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_mpi_add_abs esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) +mbedtls_mpi_add_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.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) +mbedtls_mpi_add_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +mbedtls_mpi_bitlen esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.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(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.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(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/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(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(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(pkparse.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(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +mbedtls_mpi_copy esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(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(rsa.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(bignum.c.obj) +mbedtls_mpi_core_add_if esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_core_bigendian_to_host esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_core_bitlen esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_check_zero_ct esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_core_clz esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_core_cond_assign esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_cond_swap esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_exp_mod esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_core_exp_mod_working_limbs esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_core_fill_random esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_from_mont_rep esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_core_get_mont_r2_unsafe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_mpi_core_lt_ct esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_mla esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) +mbedtls_mpi_core_montmul esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_mpi_core_montmul_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_mpi_core_mul esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_core_random esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_read_be esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_read_le esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_shift_l esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_shift_r esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_sub esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_sub_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_to_mont_rep esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_mpi_core_uint_le_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) +mbedtls_mpi_core_write_be esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_core_write_le esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_div_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_mpi_div_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_mpi_exp_mod esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.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(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(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_mpi_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.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(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(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(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(pkparse.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(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.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(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +mbedtls_mpi_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(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(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(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/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.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(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.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(pkparse.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(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.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(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(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_mpi_mod_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_mod_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(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/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(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(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_random esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_read_binary esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.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(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(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(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(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_mpi_safe_cond_assign esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_safe_cond_swap esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_set_bit esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.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_curves.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/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.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(pkparse.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(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_mpi_sub_abs esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_sub_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/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(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) +mbedtls_mpi_sub_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +mbedtls_mpi_swap esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_mpi_write_binary esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(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(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(asn1write.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_mpi_write_binary_le esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_mpi_write_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_write_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) +mbedtls_ms_time esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_oid_from_numeric_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) +mbedtls_oid_get_attr_short_name esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_oid_get_certificate_policies esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_oid_get_cipher_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) +mbedtls_oid_get_ec_grp esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_oid_get_ec_grp_algid esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_oid_get_extended_key_usage esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_oid_get_md_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_oid_get_md_hmac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) +mbedtls_oid_get_numeric_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_oid_get_oid_by_ec_grp esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_oid_get_oid_by_ec_grp_algid esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) +mbedtls_oid_get_oid_by_md esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(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_copy_from_psa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_pk_copy_public_from_psa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_pk_debug esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_pk_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) +mbedtls_pk_ecc_set_group esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_pk_ecc_set_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_pk_ecc_set_pubkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_pk_ecc_set_pubkey_from_prv esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_ecc.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_pk_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +mbedtls_pk_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.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_psa_attributes esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_pk_get_type esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.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_ecc.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_pk_import_into_psa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_pk_info_from_type esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/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(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/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/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_pk_parse_public_keyfile esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_pk_parse_subpubkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.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/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_pk_write_key_pem esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) +mbedtls_pk_write_pubkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_pk_write_pubkey_der esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_pk_write_pubkey_formatted esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) +mbedtls_pk_write_pubkey_pem esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) +mbedtls_pkcs12_derivation esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) +mbedtls_pkcs12_pbe_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_pkcs5_pbes2_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_pkcs5_pbkdf2_hmac_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) +mbedtls_pkcs5_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) +mbedtls_platform_set_calloc_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) +mbedtls_platform_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) +mbedtls_platform_teardown esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) +mbedtls_platform_zeroize esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.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/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(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(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(sha3.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.c.obj) +mbedtls_psa_aead_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_aead_decrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_aead_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_aead_encrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_aead_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_aead_set_lengths esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_aead_set_nonce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_aead_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_aead_update_ad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_asymmetric_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_asymmetric_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_cipher_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_cipher_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_cipher_decrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_cipher_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_cipher_encrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_cipher_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_cipher_set_iv esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_cipher_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_crypto_configure_entropy_sources esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_crypto_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_ecdsa_sign_hash esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_ecdsa_verify_hash esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_ecp_export_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_psa_ecp_export_public_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_ecp_generate_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_ecp_import_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_ecp_load_public_part esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_psa_ecp_load_representation esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) +mbedtls_psa_get_random esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.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_get_stats esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) +mbedtls_psa_hash_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_hash_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_hash_compute esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_hash_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_hash_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_hash_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_interruptible_set_max_ops esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_key_agreement_ecdh esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_mac_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_mac_compute esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_mac_sign_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_mac_sign_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_mac_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_mac_verify_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_mac_verify_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_rsa_export_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_psa_rsa_export_public_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_rsa_generate_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_rsa_import_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_rsa_load_representation esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_psa_rsa_sign_hash esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_rsa_verify_hash esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_sign_hash_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_sign_hash_complete esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_sign_hash_get_num_ops esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_sign_hash_start esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_verify_hash_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_verify_hash_complete esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_verify_hash_get_num_ops esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_psa_verify_hash_start esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +mbedtls_rsa_alt_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_rsa_check_privkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_rsa_check_pub_priv esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_rsa_check_pubkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_complete esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_copy esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_deduce_crt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_deduce_primes esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_deduce_private_exponent esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_alt_helpers.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_export esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_export_crt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_export_raw esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_gen_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_get_bitlen esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_rsa_get_len esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_get_md_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_rsa_get_padding_mode esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_rsa_import esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_import_raw esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_rsa_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_parse_key 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(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_parse_pubkey 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(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_pkcs1_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_pkcs1_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_pkcs1_sign esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_pkcs1_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_private esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_public esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_rsaes_oaep_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_rsaes_oaep_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_rsaes_pkcs1_v15_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_rsaes_pkcs1_v15_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_rsassa_pkcs1_v15_sign esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_rsassa_pkcs1_v15_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_rsassa_pss_sign esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_rsassa_pss_sign_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_rsassa_pss_sign_no_mode_check esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_rsa_rsassa_pss_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_rsassa_pss_verify_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.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(pk.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_rsa_write_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) +mbedtls_rsa_write_pubkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_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) + esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.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_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) + esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.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) + esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.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) + esp-idf/wpa_supplicant/libwpa_supplicant.a(fastpbkdf2.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_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_sha3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + 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_sha3_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.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_sha3_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.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_sha3_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.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_sha3_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.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_sha3_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) +mbedtls_sha3_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.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_sha3_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.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 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha512_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha512_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.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(sha512.c.obj) + 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(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(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(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_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_hash.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_aead.c.obj) +mbedtls_x509_crt_check_extended_key_usage esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_x509_crt_check_key_usage esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_x509_crt_free esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/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_get_ca_istrue esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_crt_info esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_crt_init esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/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_cn_inet_pton esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_crt_parse_der esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_x509_crt_parse_der_nocopy esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_crt_parse_der_with_ext_cb esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_crt_parse_file esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_crt_parse_path esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_crt_profile_default esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_x509_crt_profile_next esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_crt_profile_none esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_crt_profile_suiteb esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_x509_crt_verify esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_crt_verify_info esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_crt_verify_restartable esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_x509_crt_verify_with_profile esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_dn_gets esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_free_subject_alt_name esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_x509_get_alg esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_get_alg_null esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_x509_get_ext esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_get_key_usage esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_get_name esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_get_ns_cert_type esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_get_rsassa_pss_params esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_x509_get_serial esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_get_sig esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_get_sig_alg esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_get_subject_alt_name esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_get_subject_alt_name_ext esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_get_time esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_info_cert_type esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_info_key_usage esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_info_subject_alt_name esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_key_size_helper esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_parse_subject_alt_name esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_x509_serial_gets esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_sig_alg_gets esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_time_cmp esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_x509_time_is_future esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_x509_time_is_past esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_zeroize_and_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.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/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(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbo_add_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) +mbrtowc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mbrtowc.o) +md4_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) +md5_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(chap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +mem_calloc esp-idf/lwip/liblwip.a(mem.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) +mem_free esp-idf/lwip/liblwip.a(mem.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(memp.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +mem_free_callback esp-idf/lwip/liblwip.a(tcpip.c.obj) +mem_init esp-idf/lwip/liblwip.a(mem.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) +mem_malloc esp-idf/lwip/liblwip.a(mem.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(memp.c.obj) +mem_trim esp-idf/lwip/liblwip.a(mem.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) +memalign esp-idf/newlib/libnewlib.a(heap.c.obj) +memchr /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memchr.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfiprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fvwrite.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fgets.o) +memcmp /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memcmp.o) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/mbedtls/libmbedtls.a(esp_crt_bundle.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(base64.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.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(wps_attr_process.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(aes-siv.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.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(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(sha3.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/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/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) +memcpy /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memcpy.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mprec.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-dtoa.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ungetc.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strdup_r.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fvwrite.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fread.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fgets.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-utoa.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + esp-idf/lwip/liblwip.a(ethip6.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.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_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/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(des-internal.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(md4-internal.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(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(ieee802_11_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(sockets.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/hal/libhal.a(aes_hal.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) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(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(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_cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aria.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cmac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/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(fastpbkdf2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(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/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.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/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + esp-idf/hal/libhal.a(spi_flash_hal_iram.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/driver/libdriver.a(uart.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/main/libmain.a(mesh_main.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(assert.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/log/liblog.a(log.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(brownout.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) +memmove /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memmove.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fvwrite.o) + 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) + esp-idf/lwip/liblwip.a(def.c.obj) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) +memp_ARP_QUEUE esp-idf/lwip/liblwip.a(memp.c.obj) +memp_FRAG_PBUF esp-idf/lwip/liblwip.a(memp.c.obj) +memp_IGMP_GROUP esp-idf/lwip/liblwip.a(memp.c.obj) +memp_MLD6_GROUP esp-idf/lwip/liblwip.a(memp.c.obj) +memp_ND6_QUEUE esp-idf/lwip/liblwip.a(memp.c.obj) +memp_NETBUF esp-idf/lwip/liblwip.a(memp.c.obj) +memp_NETCONN esp-idf/lwip/liblwip.a(memp.c.obj) +memp_NETDB esp-idf/lwip/liblwip.a(memp.c.obj) +memp_PBUF esp-idf/lwip/liblwip.a(memp.c.obj) +memp_PBUF_POOL esp-idf/lwip/liblwip.a(memp.c.obj) +memp_RAW_PCB esp-idf/lwip/liblwip.a(memp.c.obj) +memp_SYS_TIMEOUT esp-idf/lwip/liblwip.a(memp.c.obj) +memp_TCPIP_MSG_API esp-idf/lwip/liblwip.a(memp.c.obj) +memp_TCPIP_MSG_INPKT esp-idf/lwip/liblwip.a(memp.c.obj) +memp_TCP_PCB esp-idf/lwip/liblwip.a(memp.c.obj) +memp_TCP_PCB_LISTEN esp-idf/lwip/liblwip.a(memp.c.obj) +memp_TCP_SEG esp-idf/lwip/liblwip.a(memp.c.obj) +memp_UDP_PCB esp-idf/lwip/liblwip.a(memp.c.obj) +memp_free esp-idf/lwip/liblwip.a(memp.c.obj) + esp-idf/lwip/liblwip.a(netbuf.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +memp_free_pool esp-idf/lwip/liblwip.a(memp.c.obj) +memp_init esp-idf/lwip/liblwip.a(memp.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) +memp_init_pool esp-idf/lwip/liblwip.a(memp.c.obj) +memp_malloc esp-idf/lwip/liblwip.a(memp.c.obj) + esp-idf/lwip/liblwip.a(netbuf.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +memp_malloc_pool esp-idf/lwip/liblwip.a(memp.c.obj) +memp_pools esp-idf/lwip/liblwip.a(memp.c.obj) +memset /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-memset.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfiprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-bzero.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseeko.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-findfp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.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(wps_attr_process.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + esp-idf/lwip/liblwip.a(netbuf.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + esp-idf/lwip/liblwip.a(tcp_isn_default.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + 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/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(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.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha3.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(psa_util.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(cmac.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_core.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/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(fastpbkdf2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-gcm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/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/driver/libdriver.a(ledc.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.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(abort.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/hal/libhal.a(wdt_hal_iram.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 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_add_option /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_adjust_passive_scan_time /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_bcn_change_timeout /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_bcn_change_timeout_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_bcn_change_timer_start /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_candidate_monitor_timeout /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_candidate_monitor_timeout_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_chain_header_add_ttl /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_check_conflict_beacon /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_check_last_rcandidate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_check_rc_expire /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_check_tid_mbox_full /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_child_clr_ps_duty /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_child_set_ps_duty /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_clear_parent_candidate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +mesh_coding_ie_key /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_conn_leave /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_conn_mutex /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +mesh_connect_to_candidate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_connect_to_router /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +mesh_connected_indicator esp-idf/main/libmain.a(mesh_light.c.obj) + esp-idf/main/libmain.a(mesh_main.c.obj) +mesh_construct_rmv_announcement /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +mesh_create_task /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) +mesh_csa_set_bssid /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_deinit_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_disable_parent_switch_monitor /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_disconnected_indicator esp-idf/main/libmain.a(mesh_light.c.obj) + esp-idf/main/libmain.a(mesh_main.c.obj) +mesh_encrypt_ie_plain_key /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_event_handler esp-idf/main/libmain.a(mesh_main.c.obj) +mesh_fill_rmv_sub_child /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +mesh_find_root_competitor /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_flush_txQ /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_flush_upstream_packets /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_free /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_get_parent_candidate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +mesh_get_parent_monitor_config /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +mesh_get_rssi_threshold /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +mesh_get_sub_ie /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_get_subnet_nodes_list /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_get_subnet_nodes_num /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_get_tx_pending /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_get_vnd_roots_len /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_ie_monitor_timeout /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_ie_monitor_timeout_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_ie_type2str /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_init_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_init_rcandidate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_ioctl_sem /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +mesh_is_better_parent /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_is_ie_ignored /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_is_last_rc_existing /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_is_new_found_conflict_root /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_is_new_root_found /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_is_new_root_invalid /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_is_yield_root /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_light_init esp-idf/main/libmain.a(mesh_light.c.obj) + esp-idf/main/libmain.a(mesh_main.c.obj) +mesh_light_process esp-idf/main/libmain.a(mesh_light.c.obj) + esp-idf/main/libmain.a(mesh_main.c.obj) +mesh_light_set esp-idf/main/libmain.a(mesh_light.c.obj) +mesh_look_for_network /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_malloc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_malloc_rmv_announcement /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +mesh_multi_recv_ack /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +mesh_multi_send_ack /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +mesh_mutex_lock /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_mutex_unlock /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_myself_mbox /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +mesh_node_process_cycle /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_node_process_disconnect /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_node_process_healing /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_add_conflict_roots /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_change_layer /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_check_conflict_roots /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_check_layer /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_check_no_parent_found /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) +mesh_nwk_delete_timers /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_duty_check_allowed /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_nwk_duty_check_duration_expire /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_nwk_duty_clr_master_identity /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_nwk_duty_clr_remaining /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_nwk_duty_master_is_root /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_nwk_duty_post_event /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_nwk_duty_process_remaining /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_nwk_duty_set_master_identity /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_nwk_duty_set_remaining /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_nwk_find_conflict_roots /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_io_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_manual_networking /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_nwk_process_allow_switch /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_child_event /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_conflict_discnx /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_disconnected /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_ie_change /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_leaf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_look_for_network /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_no_parent /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_nvs_settings /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_reselect /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_rootless /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_scan_done /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_scan_request /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_vote_done /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_yield_roots_announce /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_yield_roots_monitor /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_remove_conflict_roots /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_task_deinit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_task_main /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_pack_rmv_announcement /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +mesh_parent_check_root_conflict /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_parent_insert_candidate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_parent_select_done /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_parse_conflict_roots_ie /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_parse_option /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_parse_ps_entire_rule /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_parse_ps_uplink_rule /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_pm_set_null /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) +mesh_pm_tbtt_start /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) +mesh_post_parent_assoc_ie /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_post_parent_switch_candidate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_post_parent_weak_rssi /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_print_txQ_waiting /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_printf esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_process_child_macconnected /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_process_mcast_cover_node /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +mesh_process_mgmt_announce /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +mesh_process_mgmt_root_switch /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +mesh_process_mgmt_root_waive /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +mesh_process_mgmt_routing_table /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +mesh_process_parent_organized /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) +mesh_process_root_candidate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_process_roots_ie /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_process_roots_ie_ttl /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_process_same_root_candidate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_ps_control_get_min_duty /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_ps_control_set_awake /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_ps_control_set_sleep /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_ps_control_timeout /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_ps_control_timeout_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_ps_get_duties /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_ps_keep_cnx /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) +mesh_ps_set_new_duty /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_ps_tx /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_recv /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_recv_add_option /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_recv_process_flag /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_register_timer_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_remove_myself_from_forwarding /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +mesh_root_connect_timeout /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_root_connect_timeout_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_root_connect_timer_start /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_root_process_connect /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_root_process_disconnect /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_root_process_roots_ie /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_route_announce_timeout /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_rt_change_timeout /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +mesh_rt_change_timeout_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_rt_change_timer_start /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +mesh_rx_task_deinit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) +mesh_rx_task_main /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) +mesh_rxcb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +mesh_scan_done_process_weak /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_select_is_better_parent /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_select_parent /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_select_parent_compute_rank /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_select_parent_limit_layer2_cap /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_select_parent_try_layer /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_select_parent_try_rssi /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_select_router /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_select_set_ignore /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_self_xonseq /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_send_block_deinit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_send_block_main /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_send_process_flag /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_send_process_topo /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_send_roots_fixed /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_send_roots_gone /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_send_roots_stop /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_send_stop_vote /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_set_default_rssi_threshold /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_set_id /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +mesh_set_ie_crypto_config /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +mesh_set_ie_crypto_funcs /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +mesh_set_ie_crypto_key /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +mesh_set_io_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_set_parent /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +mesh_set_parent_candidate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +mesh_set_parent_monitor_config /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +mesh_set_root_candidate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_set_root_candidate_ie /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_set_router /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_set_rssi_threshold /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +mesh_set_self_organized /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_set_type /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_sta_auth_expire_time /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_stop_recv /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_switch_channel /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_tcpip_mbox /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_timer_bcn_change /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_timer_candidate_monitor /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_timer_do_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_timer_info /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_timer_mie_monitor /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_timer_ps_control /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_timer_root_connect /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_timer_route_announce /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_timer_rt_change /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_topo_get_ttl /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +mesh_tx_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_tx_task_deinit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_tx_task_main /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_tx_tid_stop /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_update_current_parent /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_update_ie_rssi /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_update_rcandidate_rssi /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_update_route_table /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +mesh_vote_root_candidate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_waive_root /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_wifi_event_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_wifi_event_deinit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_wifi_event_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_xmit_state_mbox /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_xon /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_xon_deliver_packet /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_xon_flush_packets /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_xon_process_disconnected /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_xon_process_expired /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_xon_process_no_wnd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_xon_task_main /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mgd_probe_send_timeout_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +misc_nvs_deinit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +misc_nvs_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +misc_nvs_load /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) +misc_nvs_restore /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +mkdir esp-idf/vfs/libvfs.a(vfs.c.obj) +mktime /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-mktime.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +mld6_input esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) +mld6_joingroup esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +mld6_joingroup_netif esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.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/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.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/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +mld6_stop esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +mld6_tmr esp-idf/lwip/liblwip.a(mld6.c.obj) +mmu_hal_bytes_to_pages esp-idf/hal/libhal.a(mmu_hal.c.obj) +mmu_hal_check_valid_ext_vaddr_region esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +mmu_hal_init esp-idf/hal/libhal.a(mmu_hal.c.obj) +mmu_hal_map_region esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +mmu_hal_paddr_to_vaddr esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +mmu_hal_pages_to_bytes esp-idf/hal/libhal.a(mmu_hal.c.obj) +mmu_hal_unmap_all esp-idf/hal/libhal.a(mmu_hal.c.obj) +mmu_hal_unmap_region esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +mmu_hal_vaddr_to_paddr esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +mmu_init esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +modem_domain_pd_allowed esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +mpi_hal_calc_hardware_words esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +mpi_hal_clear_interrupt esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +mpi_hal_disable_hardware_hw_op esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +mpi_hal_enable_hardware_hw_op esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +mpi_hal_interrupt_enable esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +mpi_hal_read_result_hw_op esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +mpi_hal_set_mode esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +mpi_hal_start_op esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +mpi_hal_wait_op_complete esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +mpi_hal_write_at_offset esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +mpi_hal_write_m_prime esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +mpi_hal_write_rinv esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +mpi_hal_write_to_mem_block esp-idf/hal/libhal.a(mpi_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) +mpu_hal_set_region_access esp-idf/hal/libhal.a(mpu_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) +mschapv2_derive_response esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +mschapv2_remove_domain esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +mschapv2_verify_auth_response esp-idf/wpa_supplicant/libwpa_supplicant.a(mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +mspi_timing_change_speed_mode_cache_safe esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) +mspi_timing_enter_high_speed_mode esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) +mspi_timing_enter_low_speed_mode esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) +mspi_timing_flash_tuning esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) +mspi_timing_psram_tuning esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) +mspi_timing_set_pin_drive_strength esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) +multi_heap_aligned_alloc esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_aligned_alloc_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_aligned_alloc_impl_offs esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_aligned_alloc_offs esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_base.c.obj) +multi_heap_aligned_free esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_check esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_dump esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_free esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_base.c.obj) +multi_heap_free_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_free_size esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_free_size_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_allocated_size esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_get_allocated_size_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_block_address esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_block_address_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_first_block esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_info esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_get_info_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_next_block esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_internal_lock esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_internal_unlock esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_is_free esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_malloc esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +multi_heap_malloc_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_minimum_free_size esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_minimum_free_size_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_realloc esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_base.c.obj) +multi_heap_realloc_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_register esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +multi_heap_register_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_set_lock esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +nan_action_frames_queued /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_all_wildcard_filter /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_alloc_action /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_alloc_beacon /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_alloc_sdf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_am_event_hdlr /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_cancel_service /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +nan_compute_service_hash /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_construct_followup_sdf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_construct_ndp_confirm /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_construct_ndp_req /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_construct_ndp_resp /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_construct_ndp_terminate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_construct_publish_sdf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_construct_sdea /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_construct_subscribe_sdf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_datapath_end /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +nan_datapath_send_req /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +nan_datapath_send_resp /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +nan_disc_disable_rx /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_disc_enable_rx /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_dp_alloc_ndl /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_alloc_ndp /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_alloc_node /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_chan_from_bitmap /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_confirm_peer /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_construct_device_caps /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_dp_deinit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_dp_delete_peer /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_get_attr /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_get_peer_ndl /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_get_peer_ndp /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_indicate_faw_start /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_dp_indicate_ndc_start /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_dp_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_dp_node_available /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_node_exists /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_parse_availability /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_parse_dev_caps /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_parse_elem_container /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_parse_ndca /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_parse_ndla /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_parse_ndpa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_parse_time_bitmap /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_post_tx /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +nan_dp_remove_node /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_schedule_ndc_start /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_dp_schedule_next_faw /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_dp_search_node /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +nan_dp_send_confirm_event /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_send_indication_event /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_send_terminated_event /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dp_setup_peer /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_dw_end_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +nan_dw_start_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +nan_faw_end_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +nan_faw_start_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +nan_flush_action_q /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_get_clust_id /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_get_peer_svc_record /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_get_random_byte /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_get_random_word /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_get_service_by_id /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_get_service_by_index /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_get_service_idx /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_get_tsf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_in_transit_event_hdlr /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_input esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +nan_insert_peer_svc_record /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_is_in_dw /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_master_event_hdlr /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_match_filters /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_mgmt_txcb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_naf_txcb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_ndc_start_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +nan_ndp_resp_timeout_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +nan_nmns_event_hdlr /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_nms_event_hdlr /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_parse_ndp_confirm /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_parse_ndp_req /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_parse_ndp_resp /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_parse_ndp_terminate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_post_event /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_rx_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +nan_rx_naf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_rx_sdf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_scan_event_hdlr /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_scan_timeout_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +nan_sched_add_entry /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_sched_alloc_conditional /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_sched_alloc_time_slots /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_sched_allocate_crbs /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_sched_avail_entries_len /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_sched_construct_availability /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_sched_get_chan_bitmap /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_sched_in_ndc_slot /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_sched_init_availability /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_sched_is_peer_available /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_sched_parse_avail_entries /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_sched_reset_avail_flags_sdf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_schedule_disc_bcn /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_sd_parse_availability /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_sd_parse_dev_caps /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_sd_parse_sdea /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_sd_receive_ctrl /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_sdf_txcb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_send_action_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +nan_send_disc_bcn_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +nan_send_discovery_result /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_send_followup_msg /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +nan_send_ndp_confirm /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_send_ndp_req /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_send_ndp_resp /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_send_ndp_terminate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_send_receive_event /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_send_replied_event /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_send_solicited_publish /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_send_started_event /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_send_static_sdfs /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_send_sync_bcn_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +nan_service_type_diff /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_services_deinit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_services_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_set_config_local /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +nan_set_trc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_set_update_sdf_pending /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_sm_deinit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_sm_handle_event esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_sm_handle_event_internal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_sm_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_sm_start /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_sm_stop /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +nan_start esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +nan_start_publish_service /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +nan_start_subscribe_service /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +nan_state_str /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_static_sdfs_present /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_stop esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +nan_tolower /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_transmit_action /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +nan_transmit_bcn /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_tx_action_frame /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +nan_tx_queued_action_frames /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_update_static_sdfs /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_update_tsf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) +nan_warmup_timeout_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +nd6_adjust_mld_membership esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +nd6_cleanup_netif esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +nd6_clear_destination_cache esp-idf/lwip/liblwip.a(nd6.c.obj) +nd6_find_route esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) +nd6_get_destination_mtu esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +nd6_get_next_hop_addr_or_queue esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(ethip6.c.obj) +nd6_input esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) +nd6_reachability_hint esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +nd6_restart_netif esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +nd6_tmr esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) +ndp_rxcb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +neighbor_cache esp-idf/lwip/liblwip.a(nd6.c.obj) +net80211_funcs /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +net80211_funcs_deinit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +net80211_funcs_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +net80211_printf esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +net80211_softap_funcs_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netif_get_ip6_addr_match esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.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/lwip/liblwip.a(nd6.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +netif_list esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) +netif_loop_output esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) +netif_name_to_index esp-idf/lwip/liblwip.a(netif.c.obj) +netif_poll esp-idf/lwip/liblwip.a(netif.c.obj) +netif_remove esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +netif_remove_ext_callback esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +netif_set_addr esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.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_array /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +noise_check_loop /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +noise_init /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +noise_timeout_flag /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.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_close esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +nvs_commit esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +nvs_dump esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_entry_find esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_entry_find_in_handle esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_entry_info esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_entry_next esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_erase_all esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +nvs_erase_key esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +nvs_find_key esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_deinit esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_deinit_partition esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_erase esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_erase_partition esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_erase_partition_ptr esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_generate_keys esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_generate_keys_v2 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_get_default_security_scheme esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_init esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/main/libmain.a(mesh_main.c.obj) +nvs_flash_init_partition esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_init_partition_ptr esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_read_security_cfg esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_read_security_cfg_v2 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_register_security_scheme esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_secure_init esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_secure_init_partition esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_get_blob esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/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 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) +nvs_open esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +nvs_open_from_partition esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_release_iterator esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_sec_provider_deregister esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) +nvs_sec_provider_include_impl esp-idf/nvs_sec_provider/libnvs_sec_provider.a(nvs_sec_provider.c.obj) +nvs_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 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) +offchan_in_progress /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +offchan_recv_action /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +offchan_send_action_tx_status /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +offchan_txop_end /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +offchan_txop_start /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +offset_cpsa esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +offset_pxEndOfStack esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +offset_xCoreID esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +old_nt_password_hash_encrypted_with_new_nt_password_hash esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) +omac1_aes_128 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +omac1_aes_128_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +omac1_aes_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) +opendir esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +opt_11b_resart /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +opt_type2str /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +optype2str /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +os_get_random esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ms_funcs.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +os_get_time esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +os_gmtime esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +os_memdup esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-siv.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +os_mktime esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +os_random esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +os_reltime_expired esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) +os_reltime_initialized esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) +os_sleep esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +os_timer_arm esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +os_timer_arm_us esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +os_timer_disarm esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +os_timer_done esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +os_timer_setfn esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +owe_build_assoc_req esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) +owe_build_dhie esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) +owe_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +owe_process_assoc_resp esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) +pTxRx /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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_chip.c.obj) +panic_arch_fill_info esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +panic_get_address esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +panic_get_cause esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +panic_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(ethernet.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +pbuf_add_header_force esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) +pbuf_alloc esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + esp-idf/lwip/liblwip.a(netbuf.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) +pbuf_alloc_reference esp-idf/lwip/liblwip.a(pbuf.c.obj) +pbuf_alloced_custom esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_pbuf_ref.c.obj) +pbuf_cat esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(netbuf.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +pbuf_chain esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +pbuf_clen esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +pbuf_clone esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) +pbuf_coalesce esp-idf/lwip/liblwip.a(pbuf.c.obj) +pbuf_copy esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/esp_netif/libesp_netif.a(ethernetif.c.obj) + esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +pbuf_copy_partial esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(lwip_default_hooks.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(sockets.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(netbuf.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +pbuf_free_callback esp-idf/lwip/liblwip.a(tcpip.c.obj) +pbuf_free_header esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +pbuf_free_ooseq_pending esp-idf/lwip/liblwip.a(pbuf.c.obj) +pbuf_get_at esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) +pbuf_get_contiguous esp-idf/lwip/liblwip.a(pbuf.c.obj) +pbuf_header esp-idf/lwip/liblwip.a(pbuf.c.obj) +pbuf_header_force esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) +pbuf_memcmp esp-idf/lwip/liblwip.a(pbuf.c.obj) +pbuf_memfind esp-idf/lwip/liblwip.a(pbuf.c.obj) +pbuf_put_at esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) +pbuf_realloc esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +pbuf_ref esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +pbuf_remove_header esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +pbuf_skip esp-idf/lwip/liblwip.a(pbuf.c.obj) +pbuf_strstr esp-idf/lwip/liblwip.a(pbuf.c.obj) +pbuf_take esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) +pbuf_take_at esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(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(nd6.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) +pbus_print /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +pbus_rx_dco_cal_1step /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +pcTaskGetName esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +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 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +periph_inform_out_light_sleep_overhead esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +periph_module_disable esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) +periph_module_enable esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.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_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/driver/libdriver.a(spi_common.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +periph_rcc_acquire_enter esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) +periph_rcc_acquire_exit esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) +periph_rcc_enter esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(ledc.c.obj) +periph_rcc_exit esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum_alt.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(ledc.c.obj) +periph_rcc_release_enter esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +periph_rcc_release_exit esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +periph_rtc_apll_acquire esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) +periph_rtc_apll_freq_set esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) +periph_rtc_apll_release esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) +periph_rtc_dig_clk8m_disable esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) +periph_rtc_dig_clk8m_enable esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + esp-idf/driver/libdriver.a(ledc.c.obj) +periph_rtc_dig_clk8m_get_freq esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + esp-idf/driver/libdriver.a(ledc.c.obj) +phy_ant_init /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_bt_ifs_set /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_bt_pll_track /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +phy_bt_pll_track_en /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +phy_bt_power_track /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +phy_bt_power_track_en /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_bttx_low_power /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_byte_to_word /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +phy_cal_print /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_chan_dump_cfg /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +phy_chan_filt_set /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +phy_chan_gain_table /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_chan_pwr_index /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +phy_chan_target_power /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +phy_change_channel /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) +phy_change_channel_nomac /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) +phy_close_pa /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_close_rf /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_clr_modem_flag esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_dac_org /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_dcur_org /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_dig_reg_backup /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_dis_hw_set_freq /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_dis_pwdet_one /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +phy_disable_low_rate /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +phy_en_hw_set_freq /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_enable_low_rate /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +phy_enabled_modem_contains esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) +phy_enter_critical esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_exit_critical esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_force_chan /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +phy_force_wifi_chan /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) +phy_force_wifi_chan_en /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +phy_freq_correct_opt /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_freq_offset /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +phy_freq_wifi_only /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_get_adc_rand /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_get_bb_freqoffset /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +phy_get_fetx_delay /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) +phy_get_lock esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) +phy_get_modem_flag esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_get_most_tpw /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +phy_get_rf_cal_version /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_get_romfunc_addr /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_get_romfuncs /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_get_rx_freq /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_get_tsens_value esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +phy_get_tx_pwr /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_get_tx_rate /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_get_txpwr_param /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_hw_set_freq_enable /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +phy_i2c_check /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_i2c_enter_critical esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +phy_i2c_exit_critical esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +phy_i2c_init /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_in_most_power /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_in_most_power_bk /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_in_vdd33_offset /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_init_flag /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +phy_init_param_set /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_init_pwr_print /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_meas_noise_floor /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_param_set /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_param_track_tot esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) +phy_printf esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_pwdet_always_en /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +phy_pwdet_onetime_en /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +phy_pwdet_onetime_flag /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +phy_reg_check /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_reg_init /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_rfcal_data_check /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_rfcal_data_check_value /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_rx11blr_cfg /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_rx_sense_set /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_rxbb_dc /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_rxrf_dc /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_set_bbfreq_init /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_set_bt_dig_gain /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +phy_set_modem_flag esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_set_most_tpw /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +phy_set_most_tpw_disbg /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +phy_set_most_tpw_flag /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_set_most_tpw_index /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +phy_set_pwdet_power esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +phy_set_rfrx_dcap /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_set_tsens_power esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +phy_set_wifi_mode_only /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +phy_sw_set_chan_en /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +phy_track_pll esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) +phy_track_pll_deinit esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) +phy_track_pll_init esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) +phy_tx_power_out /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +phy_tx_pwr_error /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_tx_pwr_track_en /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_unforce_chan /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +phy_unforce_wifi_chan /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) +phy_version_print /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_version_str /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +phy_wakeup_init /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +phy_wifi_enable_set /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +phy_wifi_pll_track /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +phy_wifi_pll_track_en /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +phy_wifitx_low_power /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +pll_correct_dcap /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +pm_active_timeout_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) +pm_allow_tx /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pm_attach /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pm_beacon_misc_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_beacon_monitor_configure /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pm_beacon_monitor_tbtt_allowed /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_beacon_monitor_tbtt_start /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_beacon_monitor_tbtt_stop /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_beacon_monitor_tbtt_timeout_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) +pm_beacon_monitor_timeout_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) +pm_beacon_timestamp_statistic /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_check_state /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) +pm_coex_pwr_configure /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_coex.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pm_coex_pwr_update /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_coex.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_coex_reconnect_policy /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_coex.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pm_coex_schm_overall_period_get /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_coex.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_coex_schm_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pm_coex_schm_process_restart /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_coex_separate_connectionless_window /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_coex_set_reconnect_policy /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_coex.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +pm_coex_slice_timeout_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) +pm_coex_tbtt_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_connectionless_module_set_wake_interval /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pm_connectionless_wake_interval_timeout_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) +pm_connectionless_wake_window_timeout_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) +pm_deattach /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pm_disable_beacon_monitor_timer /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_disable_disconnected_sleep_delay_timer /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_disable_dream_timer /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_disable_sleep_delay_timer /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_disconnected_sleep /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_disconnected_sleep_delay_timeout_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) +pm_disconnected_start /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pm_disconnected_stop /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pm_disconnected_wake /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_dream /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_dream_timeout_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) +pm_enable_active_timer /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_enable_beacon_monitor_timer /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_enable_disconnected_sleep_delay_timer /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_enable_dream_timer /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_enable_sleep_delay_timer /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_enable_sta_disconnected_power_management /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pm_force_scan_unlock /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pm_get_connectionless_status /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_get_idle_wait_time /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_get_null_max_tx_time /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_coex.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pm_get_sleep_type /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +pm_get_tbtt_count /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_go_to_sleep /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) +pm_go_to_wake /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) +pm_handle_tbtt_interval /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_hmac_rx_data_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +pm_is_dream /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) +pm_is_in_wifi_slice_threshold /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_is_open /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +pm_is_sleeping /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) +pm_is_waked /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +pm_keep_alive /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_mac_sleep /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pm_mac_sleep_deinit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_mac_sleep_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_mac_wakeup /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pm_mesh_set_next_tbtt /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_noise_check /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_noise_check_disable /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pm_noise_check_enable /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pm_noise_check_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) +pm_off_channel /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pm_on_beacon_rx /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pm_on_channel /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +pm_on_coex_schm_process_restart /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +pm_on_coex_schm_status_config /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +pm_on_coex_start /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pm_on_data_rx /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pm_on_data_tx /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pm_on_data_tx_done /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pm_on_probe_resp_rx /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +pm_parse_beacon /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_pend_noise_check /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_process_tim /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_register_connectionless_wake_window /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pm_register_pm_tx_null_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pm_rx_beacon_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_rx_data_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_save_tbtt_info /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_scale_listen_interval /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pm_scan_lock /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_scan_unlock /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_send_nullfunc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) +pm_send_probe_start /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +pm_send_probe_stop /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +pm_send_sleep_null_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_send_wake_null_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_set_keep_alive_time /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pm_set_next_tbtt /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_set_sleep_min_active_time /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pm_set_sleep_type /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pm_set_sleep_wait_broadcast_data_time /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pm_sleep /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_sleep_delay_timeout_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) +pm_sleep_for /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pm_start /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +pm_stop /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +pm_tbtt_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) +pm_try_scan_unlock /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_tx_data_done_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_tx_data_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_tx_null_data_done_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) +pm_unregister_connectionless_wake_window /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pm_update_by_connectionless_status /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_update_light_sleep_default_params /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pm_update_next_tbtt /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_update_params /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_wake_done /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pm_wake_up /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.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_auth_add esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +pmksa_cache_auth_add_entry esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) +pmksa_cache_auth_create_entry esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) +pmksa_cache_auth_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +pmksa_cache_auth_flush esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) +pmksa_cache_auth_get esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +pmksa_cache_auth_init esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +pmksa_cache_auth_list esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) +pmksa_cache_clear_current esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +pmksa_cache_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +pmksa_cache_flush esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +pmksa_cache_free_entry esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +pmksa_cache_get esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +pmksa_cache_get_current esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +pmksa_cache_get_opportunistic esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) +pmksa_cache_init esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +pmksa_cache_list esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) +pmksa_cache_set_current esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +port_IntStack esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +port_interruptNesting esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +port_start_app_hook esp-idf/freertos/libfreertos.a(app_startup.c.obj) +port_switch_flag esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +port_uxCriticalNesting esp-idf/freertos/libfreertos.a(port.c.obj) +port_uxOldInterruptState esp-idf/freertos/libfreertos.a(port.c.obj) +port_xSchedulerRunning esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +posix_memalign esp-idf/newlib/libnewlib.a(heap.c.obj) +ppAMPDU2Normal /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppAdd2AMPDUTail /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppAddTimCount /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppAssembleAMPDU /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppAssembleMicHdr /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppCalFrameTimes /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppCalSubFrameLength /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppCalTkipMic /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppCalTxAMPDULength /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppCheckIsConnTraffic /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppCheckTxAMPDUlength /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppCheckTxConnTrafficIdle /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +ppCheckTxIdle /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +ppCheckTxQIdle /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) +ppClearRxFragment /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ppClearTxq /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppDequeueRxq_Locked /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppDequeueTxDone_Locked /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppDequeueTxQ /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppDirectRecycleAmpdu /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppDisableQueue /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppDiscardMPDU /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppEmptyDelimiterLength /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppEnableQueue /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppEnqueueRxq /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppEnqueueTxDone /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppFetchTxQFirstAvail /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppFillAMPDUBar /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppGetTaskHdl /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ppGetTxQFirstAvail_Locked /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppGetTxframe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppInitTxq /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppInstallKey /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +ppMapTxQueue /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppMapWaitTxq /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppMessageInQ /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppPauseTxAMPDU /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppPrepareBarFrame /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppProcTxCallback /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppProcTxDone /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppProcTxSecFrame /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppProcessLifeTime /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppProcessRxPktHdr /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppProcessTxQ /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppProcessWaitQ /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppProcessWaitingQueue /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +ppReSendBar /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppRecordBarRRC /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppRecycleAmpdu /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppRecycleRxPkt /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ppRecycleTxBuf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppRegisterPromisRxCallback /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ppRegisterRxCallback /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ppRegisterTxCallback /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ppRegisterTxDoneUserActionCallback /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ppRegressAmpdu /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppResortTxAMPDU /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppResumeTxAMPDU /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppRollBackTxQ /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppRxFragmentProc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppRxPkt /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppRxProtoProc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppSearchTxQueue /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppSearchTxframe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppSelectNextQueue /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppSetBarRate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ppSetInterface /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ppSubFromAMPDU /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppTask /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppTxPkt /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +ppTxProtoProc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppTxqEmpty /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ppTxqUpdateBitmap /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppUnregisterTxCallback /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_allow_cut_sevt /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_attach /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pp_can_cut_evt /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_can_cut_sevt /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_coex_tx_release /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_coex_tx_request /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_create_task /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pp_deattach /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pp_default_event_handler /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_delete_task /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pp_gettid /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_hdrsize /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_need_cut_rx /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_post /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pp_printf esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) +pp_process_hmac_waiting_txq /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_register_config_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pp_register_michael_mic_failure_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pp_register_net80211_tx_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pp_register_timer_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pp_register_tx_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) +pp_set_cut_evt /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_set_cut_rx /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_sig_cnt /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_stop_sw_txq /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pp_timer_do_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_timer_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pp_timer_register_post_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pp_unregister_tx_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) +pread esp-idf/vfs/libvfs.a(vfs.c.obj) +prefix_list esp-idf/lwip/liblwip.a(nd6.c.obj) +print_rc_info /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +print_roots_ie /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +print_sta_pmk /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +print_txupQ_pending /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +printf /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-printf.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.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(rsa.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(sha3.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/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +printf_decode esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +printf_encode esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +prvReleaseKernelLock esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) +prvTakeKernelLock esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) +prvTaskPriorityRaise esp-idf/freertos/libfreertos.a(tasks.c.obj) +prvTaskPriorityRestore esp-idf/freertos/libfreertos.a(tasks.c.obj) +psa_aead_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_aead_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_aead_decrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_aead_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_aead_encrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_aead_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_aead_generate_nonce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_aead_set_lengths esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_aead_set_nonce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_aead_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_aead_update_ad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_aead_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_allocate_buffer_to_slot esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_asymmetric_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_asymmetric_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_can_do_cipher esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_can_do_hash esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_cipher_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_cipher_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_cipher_decrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_cipher_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_cipher_encrypt_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_cipher_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_cipher_generate_iv esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_cipher_set_iv esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_cipher_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_close_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) +psa_copy_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_copy_key_material_into_slot esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) +psa_crypto_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_crypto_local_input_alloc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_crypto_local_input_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_crypto_local_output_alloc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_crypto_local_output_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_destroy_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_destroy_persistent_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_export_public_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_driver_wrapper_get_builtin_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) +psa_driver_wrapper_get_key_buffer_size esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_export_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +psa_export_key_internal esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_export_public_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +psa_export_public_key_internal esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_driver_wrappers_no_static.c.obj) +psa_format_key_data_for_storage esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) +psa_free_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_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_generate_key_internal esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_generate_random esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) +psa_generic_status_to_mbedtls esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +psa_get_and_lock_key_slot esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_get_key_attributes esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +psa_hash_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) +psa_hash_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_hash_compare esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_hash_compute esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) +psa_hash_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) +psa_hash_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) +psa_hash_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_mac.c.obj) +psa_hash_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_import_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +psa_import_key_into_slot esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_initialize_key_slots esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_interruptible_get_max_ops esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_interruptible_set_max_ops esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_is_key_present_in_storage esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) +psa_is_valid_key_id esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_its_get esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) +psa_its_get_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) +psa_its_remove esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) +psa_its_set esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) +psa_key_agreement_raw_builtin esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_key_derivation_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_key_derivation_get_capacity esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_key_derivation_input_bytes esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_key_derivation_input_integer esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_key_derivation_input_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_key_derivation_key_agreement esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_key_derivation_output_bytes esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_key_derivation_output_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_key_derivation_output_key_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_key_derivation_set_capacity esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_key_derivation_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_key_production_parameters_are_default esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_load_persistent_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) +psa_mac_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_mac_compute esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_mac_sign_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_mac_sign_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_mac_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_mac_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_mac_verify_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_mac_verify_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_open_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) +psa_parse_key_data_from_storage esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_storage.c.obj) +psa_pk_status_to_mbedtls esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +psa_purge_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) +psa_raw_key_agreement esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_remove_key_data_from_memory esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_reserve_free_key_slot esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_reset_key_attributes esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.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_sign_hash esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_sign_hash_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_sign_hash_builtin esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_sign_hash_complete esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_sign_hash_get_num_ops esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_sign_hash_start esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_sign_message esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_sign_message_builtin esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_status_to_mbedtls esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +psa_to_lms_errors esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) +psa_to_md_errors esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +psa_to_pk_rsa_errors esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_util.c.obj) +psa_unregister_read esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_unregister_read_under_mutex esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_validate_key_location esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_validate_key_persistence esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_validate_unstructured_key_bit_size esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_verify_hash esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_verify_hash_abort esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_verify_hash_builtin esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_verify_hash_complete esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_verify_hash_get_num_ops esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_verify_hash_start esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_verify_message esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_verify_message_builtin esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_wipe_all_key_slots esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) +psa_wipe_key_slot esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_crypto_slot_management.c.obj) +pthread_attr_destroy esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_attr_getdetachstate esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_attr_getstacksize esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_attr_init esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_attr_setdetachstate esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_attr_setstacksize esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_cancel esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_cond_broadcast esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_cond_destroy esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_cond_init esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_cond_signal esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_cond_timedwait esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_cond_wait esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_condattr_destroy esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_condattr_getclock esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_condattr_getpshared esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_condattr_init esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_condattr_setclock esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_condattr_setpshared esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_create esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_detach esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_equal esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_exit esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_getspecific esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_include_pthread_cond_var_impl esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_include_pthread_impl esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_include_pthread_local_storage_impl esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) +pthread_include_pthread_rwlock_impl esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_include_pthread_semaphore_impl esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) +pthread_internal_local_storage_destructor_callback esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_join esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_key_create esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_key_delete esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/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_rwlock.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_mutex_destroy esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_mutex_init esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_mutex_lock esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_mutex_timedlock esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutex_trylock esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_mutex_unlock esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_mutexattr_destroy esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutexattr_gettype esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutexattr_init esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutexattr_settype esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_once esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_rwlock_destroy esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_rwlock_init esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_rwlock_rdlock esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_rwlock_tryrdlock esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_rwlock_trywrlock esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_rwlock_unlock esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_rwlock_wrlock esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_self esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_setcancelstate esp-idf/newlib/libnewlib.a(pthread.c.obj) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ungetc.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfiprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ftello.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fseeko.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setvbuf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-puts.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putc.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fwrite.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fread.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputs.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputc.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fopen.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-findfp.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fgets.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fflush.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ferror.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fclose.o) +pthread_setspecific esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(eh_globals.o) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_sigmask esp-idf/newlib/libnewlib.a(pthread.c.obj) +putc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putc.o) +putchar /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-putchar.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(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(rsa.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(sha3.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 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +puts /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-puts.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.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) + esp-idf/lwip/liblwip.a(sockets_ext.c.obj) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 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(rsa.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(sha3.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/heap/libheap.a(heap_caps.c.obj) +pvPortMalloc esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/freertos/libfreertos.a(port_common.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +pvTaskGetCurrentTCBForCore esp-idf/freertos/libfreertos.a(tasks.c.obj) +pvTaskGetThreadLocalStoragePointer esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) +pvTaskIncrementMutexHeldCount esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +pvalloc esp-idf/newlib/libnewlib.a(heap.c.obj) +pwdet_sar2_init /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +pwrdet_offset /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +pwrite esp-idf/vfs/libvfs.a(vfs.c.obj) +pwrsave_flushq /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +pxCurrentTCBs esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +pxPortInitialiseStack esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +pxTaskGetStackStart esp-idf/freertos/libfreertos.a(tasks.c.obj) +qsort /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-qsort.o) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) +raise esp-idf/newlib/libnewlib.a(syscalls.c.obj) +ram_bb_bss_bw_40_en /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_bb_bss_cbw40_dig /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_bb_tx_ht20_cen /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_cbw2040_cfg /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_check_noise_floor /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_chip_i2c_readReg /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_chip_i2c_writeReg /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_dc_iq_est /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_disable_agc /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_en_pwdet /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_enable_agc /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_gen_rx_gain_table /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_get_fm_sar_dout /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_get_rf_gain_qdb /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_index_to_txbbgain /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_iq_est_disable /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_iq_est_enable /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_meas_tone_pwr_db /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_pbus_debugmode /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_pbus_force_mode /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_pbus_force_test /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_pbus_rx_dco_cal /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_pbus_xpd_tx_on /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_phy_get_noisefloor /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_phy_get_vdd33 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_read_sar_dout /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_restart_cal /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_rfcal_pwrctrl /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_rfcal_txcap /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_rfpll_reset /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_rfpll_set_freq /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_set_chan_cal_interp /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_set_noise_floor /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_set_pbus_mem /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_set_rxclk_en /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_set_txcap_reg /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_set_txclk_en /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_spur_coef_cfg /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_start_tx_tone /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_tx_pwctrl_bg_init /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_tx_pwr_backoff /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +ram_txbbgain_to_index /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_txcal_work_mode /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_txdc_cal_v70 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_txiq_cover /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +ram_txiq_get_mis_pwr /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_wait_rfpll_cal_end /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +ram_write_gain_mem /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +rand /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-rand.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +range_read_addr_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +range_write_addr_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +raw_bind esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +raw_bind_netif esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +raw_connect esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +raw_disconnect esp-idf/lwip/liblwip.a(raw.c.obj) +raw_input esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) +raw_netif_ip_addr_changed esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +raw_new esp-idf/lwip/liblwip.a(raw.c.obj) +raw_new_ip_type esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +raw_recv esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +raw_remove esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +raw_send esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +raw_sendto esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +raw_sendto_if_src esp-idf/lwip/liblwip.a(raw.c.obj) +rc11BSchedTbl /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rc11GSchedTbl /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rc11NSchedTbl /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.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 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcAttach /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +rcClearCurAMPDUSched /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcClearCurSched /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcClearCurStat /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcGet11BHighestRateIdx /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcGet11GHighestRateIdx /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcGet11NHighestRateIdx /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcGetAmpduSched /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +rcGetDefaultHigestRateIdx /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcGetHighestRateIdx /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcGetRate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +rcGetSched /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +rcLoRaRate2SchedIdx /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcLoRaSchedTbl /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcLowerSched /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcP2P11GSchedTbl /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcP2P11NSchedTbl /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcReachRetryLimit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +rcSetBarRate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +rcSetTxAmpduLimit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcTxUpdatePer /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcUpSched /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcUpdateAMPDUParam /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +rcUpdateAckSnr /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcUpdatePhyMode /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +rcUpdateRate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcUpdateRxDone /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +rcUpdateTxDone /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +rcUpdateTxDoneAmpdu2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +rc_cal /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +rc_disable_trc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +rc_disable_trc_by_interface /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +rc_enable_trc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +rc_get_G6M_sched /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +rc_get_default_sched /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +rc_get_fix_rate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +rc_get_mask /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rc_get_sta_trc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rc_get_trc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +rc_get_trc_by_index /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +rc_get_trc_default /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rc_only_sta_trc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rc_set_fix_rate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +rc_set_per_conn_fix_rate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +re_entry /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +reachable_time esp-idf/lwip/liblwip.a(nd6.c.obj) +read_hw_noisefloor /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.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) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiscanf.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +reconnect_flag /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +reconnect_type2str /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +reg_init_begin /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +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/hal/libhal.a(clk_tree_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +regi2c_ctrl_write_reg esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +regi2c_ctrl_write_reg_mask esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +regi2c_enter_critical esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +regi2c_exit_critical esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +regi2c_saradc_disable esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) +regi2c_saradc_enable esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) +register_chipv7_phy /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +register_chipv7_phy_init_param /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +register_ieee80211_action_vendor_get_key_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) +register_ieee80211_action_vendor_spec_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) +register_ieee80211_rfid_locp_recv_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) +registered_heaps esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +remove /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-remove.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) +rename /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-rename.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) +resend_eapol_handle esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +reset_cs_thres /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +reset_rf_dig /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +retrans_timer esp-idf/lwip/liblwip.a(nd6.c.obj) +rewinddir esp-idf/vfs/libvfs.a(vfs.c.obj) +rf_cal_data_backup /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +rf_cal_data_recovery /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +rf_init /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +rfcal_bb_atten_init /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +rfcal_txiq /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +rfpll_1p2_opt /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +rfpll_offset_delta /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +rfrx_dcap_enable /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +rfrx_vga_lna_dcap /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +rmdir esp-idf/vfs/libvfs.a(vfs.c.obj) +roc_op_end /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +roc_op_start /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +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_spiflash_api_funcs esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +roots_type2str /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +rotl /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +rotr /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +roundup2 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +route_announce_timeout_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +route_announce_timer_start /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +route_announce_timer_stop /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +routetype2str /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +rssi_index /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +rssi_margin /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rssi_saved /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +rssi_to_rcpi esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +rtc_apbbridge_sel /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) +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) +rtc_clk_32k_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_8m_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_8m_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_8md256_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_apb_freq_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_apb_freq_update esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_apll_coeff_calc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) +rtc_clk_apll_coeff_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) +rtc_clk_apll_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) +rtc_clk_cal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_cal_ratio esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) +rtc_clk_cpu_freq_get_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_cpu_freq_mhz_to_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_cpu_freq_set_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_cpu_freq_set_config_fast esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_cpu_freq_set_xtal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_clk_cpu_freq_to_xtal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_cpu_set_to_default_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) +rtc_clk_fast_src_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_fast_src_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_freq_cal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) +rtc_clk_select_rtc_slow_clk esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_slow_freq_get_hz esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(panic.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(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) +rtc_clk_slow_src_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_wait_for_slow_cycle esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_xtal_freq_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(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_cmd_ext_wakeup /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) +rtc_cmd_wakeup_conf /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) +rtc_deep_sleep_start esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) +rtc_dig_8m_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_dig_clk8m_disable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) +rtc_dig_clk8m_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) +rtc_get_st /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) +rtc_get_xtal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +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) +rtc_gpio_force_hold_en_all esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_gpio_get_drive_capability esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.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) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +rtc_gpio_iomux_func_sel 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/esp_hw_support/libesp_hw_support.a(sleep_modes.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) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_pulldown_en esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_pullup_dis esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_pullup_en esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_set_direction esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.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) + esp-idf/driver/libdriver.a(gpio.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_init_clk /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) +rtc_init_full /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) +rtc_io_desc esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.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) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_is_st_idle /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) +rtc_isr_deregister esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.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_pad_ext_wakeup /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) +rtc_pad_gpio_wakeup /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) +rtc_pads_funie /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +rtc_pads_funsel /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) +rtc_pads_hold /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) +rtc_pads_muxsel /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +rtc_pads_pd /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +rtc_pads_pu /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +rtc_pads_slpie /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +rtc_pads_slpoe /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +rtc_pads_slpsel /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) +rtc_powerdown_rf /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) +rtc_powerup_rf /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) +rtc_printf esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) +rtc_sdreg_off /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) +rtc_sleep_enable_ultra_low esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_sleep_get_default_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_sleep_init esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_sleep_low_init esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_sleep_start esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_slp_prep /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) +rtc_slp_prep_lite_12M /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) +rtc_soc_clk_ck12m /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) +rtc_spinlock esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_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(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) +rtc_time_slowclk_to_us esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_time_us_to_slowclk esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_vddsdio_get_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_vddsdio_set_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_wifi_force_pd /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc.o) +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) +rw_coex_on /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) +rx11NRate2AMPDULimit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rx_11b_opt /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +rx_blocking_set /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +rx_chan_dc_sort /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +rx_gain_level /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +rx_spur_cal /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +rxdc_est_min /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +rxmax_ext_level /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +s_avail_seq /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +s_dp /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +s_eapol_txdone_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +s_fix_rate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +s_fix_rate_mask /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +s_fragment /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +s_head esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) +s_ioctl_table /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +s_is_6m /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +s_keys esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) +s_map /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) +s_mesh_beacon_interval /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +s_mesh_running_channel /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +s_mesh_send_mutex /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +s_mesh_stop_mutex /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +s_microseconds_offset esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) +s_ndp_id /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) +s_netstack_free /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +s_netstack_ref /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +s_ni /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) +s_record_list /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +s_register_config_driver esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) +s_sd /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +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_lac.c.obj) +s_tx_cacheq /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +s_wifi_api_lock /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +s_wifi_mac_time_update_cb esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +s_wifi_nvs /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +s_wifi_queue /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +s_wifi_stop_in_progress /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +s_wifi_task_hdl /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +s_wps_api_lock esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +s_wps_api_sem esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +s_wps_enabled esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +s_wps_sm_cb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +sae_accept_sta esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) +sae_check_confirm esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sae_check_confirm_pk esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +sae_clear_data esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sae_clear_temp_data esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) +sae_deinit_pt esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sae_derive_pt esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sae_derive_pwe_from_pt_ecc esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +sae_derive_pwe_from_pt_ffc esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +sae_ecc_prime_len_2_hash_len esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +sae_ffc_prime_len_2_hash_len esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +sae_group_allowed esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) +sae_hash esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) +sae_parse_commit esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sae_pk_base32_decode esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) +sae_pk_base32_encode esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) +sae_pk_buf_shift_left_19 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) +sae_pk_get_be19 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) +sae_pk_set_password esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sae_pk_valid_password esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sae_prepare_commit esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sae_prepare_commit_pt esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sae_process_commit esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sae_set_group esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sae_state_txt esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +sae_write_commit esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sae_write_confirm esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sar_periph_ctrl_adc_continuous_power_acquire esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) +sar_periph_ctrl_adc_continuous_power_release esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) +sar_periph_ctrl_adc_oneshot_power_acquire esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) +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) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +sar_periph_ctrl_power_enable esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +sar_periph_ctrl_pwdet_power_acquire esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +sar_periph_ctrl_pwdet_power_release esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +sc_printf esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) +scan_add_bssid /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_add_probe_ssid /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_build_chan_list /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_cancel /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +scan_check_hidden /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +scan_connect_state /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +scan_enter_oper_channel_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +scan_fill_wps_scan_ie /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +scan_flush_all_tx_buf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +scan_get_apnum /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +scan_get_owe_channel_info /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_get_scan_id /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +scan_get_type /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_hidden_ssid /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_inter_channel_timeout_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +scan_parse_beacon /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +scan_parse_ht2040_coex /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +scan_pm_channel_op_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +scan_prefer_chan /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_profile_check /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +scan_remove_bssid /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_remove_probe_ssid /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_reset_cipher_and_akm /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +scan_result_print /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +scan_set_act_duration /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_set_desChan /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_set_home_chan_dwell_time /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_set_pas_duration /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_set_scan_id /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +scan_start /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_status2str /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +scan_update_scan_history /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +scan_validate_owe_scenarios /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +scannum /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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) +sem_destroy esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) +sem_getvalue esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) +sem_init esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) +sem_post esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) +sem_timedwait esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) +sem_trywait esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) +sem_wait esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) +send_ap_probe /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +send_deauth /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +set_assoc_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +set_bt_chan_cal_interp /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +set_cca /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +set_chan_dig_gain /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +set_chan_freq_hw_init /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +set_chan_freq_sw_start /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +set_chan_reg /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +set_chan_rxcomp /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +set_chanfreq /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) +set_chanfreq_nomac /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy.o) +set_channel_rfpll_freq /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +set_most_pwr_reg /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +set_most_tpw /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +set_rtc_memory_crc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +set_rx_gain_cal_dc /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +set_rx_gain_cal_iq /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +set_rx_gain_table /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +set_rx_gain_testchip_70 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +set_rx_sense /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +set_tx_dig_gain /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +set_tx_gain_table /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +set_tx_gain_table_bt /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +set_xpd_sar esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +setbuf /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setbuf.o) + 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(psa_its_file.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +setlocale /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-locale.o) +settimeofday esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) +setvbuf /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-setvbuf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_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(wps_common.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(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +sha384_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +sha512_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +sha_hal_hash_block esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +sha_hal_read_digest 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) +sigfillset esp-idf/newlib/libnewlib.a(pthread.c.obj) +siscanf /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-siscanf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset_r.o) +sleep esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) +sleep_modem_configure esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) +sleep_modem_reject_triggers esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +sleep_modem_wifi_modem_state_skip_light_sleep esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) +sms4 /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +snprintf /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-snprintf.o) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.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_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(psa_its_file.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.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_gd_detect_size esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_gd_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_gd_get_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_gd_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_gd_set_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_gd_suspend_cmd_conf esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_generic_config_host_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_detect_size esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_erase_block esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_erase_chip esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_erase_sector esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_chip_generic_get_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) +spi_flash_chip_generic_get_write_protect esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_page_program esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_chip_generic_read esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_read_reg esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_read_unique_id esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_read_unique_id_none esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) +spi_flash_chip_generic_reset esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_set_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) +spi_flash_chip_generic_set_write_protect esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_suspend_cmd_conf esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_timeout esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_wait_idle esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_write esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_write_encrypted esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_yield esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_issi_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_issi_get_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) +spi_flash_chip_issi_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_issi_set_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) +spi_flash_chip_mxic_detect_size esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) +spi_flash_chip_mxic_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) +spi_flash_chip_mxic_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) +spi_flash_chip_winbond_erase_block esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_winbond_erase_sector esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_winbond_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) +spi_flash_chip_winbond_page_program esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_winbond_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) +spi_flash_chip_winbond_read esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_common_read_status_16b_rdsr_rdsr2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_common_read_status_8b_rdsr esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_common_read_status_8b_rdsr2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_common_set_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_common_write_status_16b_wrsr esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_common_write_status_8b_wrsr esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_common_write_status_8b_wrsr2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_disable_cache esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +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/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +spi_flash_disable_interrupts_caches_and_other_cpu_no_os esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_flash_enable_cache esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +spi_flash_enable_interrupts_caches_and_other_cpu esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/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/esp_mm/libesp_mm.a(esp_mmu_map.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_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_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_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_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_restore_cache esp-idf/spi_flash/libspi_flash.a(cache_utils.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_get_flash_timing_param esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) +spi_timing_is_tuned esp-idf/esp_hw_support/libesp_hw_support.a(mspi_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_dmaworkaround_idle esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_dmaworkaround_req_reset esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_dmaworkaround_reset_in_progress esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_dmaworkaround_transfer_active 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 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sprintf.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +spur_cal /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +srand /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-rand.o) +sta_auth_ft /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +sta_auth_open /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +sta_auth_sae /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +sta_auth_shared /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +sta_bip_check /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +sta_con_timer /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +sta_csa_timer /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +sta_eapol_txdone_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +sta_get_beacon_timeout /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +sta_get_owe_data /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +sta_input /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +sta_is_11r_enabled /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) +sta_is_wifi_ent_enabled /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) +sta_is_wpa3_enabled /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) +sta_michael_mic_failure /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +sta_recv_assoc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +sta_recv_ctl /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +sta_recv_mgmt /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +sta_reset_beacon_timeout /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +sta_retry_assoc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +sta_rx_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +sta_rx_csa /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +sta_rx_eapol /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +sta_rxcb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +sta_sa_query_process_timeout /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +sta_try_sa_query_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +sta_update_power_off_reset_flag /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +start_cpu0 esp-idf/esp_system/libesp_system.a(startup.c.obj) +start_cpu_other_cores esp-idf/esp_system/libesp_system.a(startup.c.obj) +start_write_addr esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +startup_resume_other_cores esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +stat /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-sysstat.o) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +str_clear_free esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +strcat /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcat.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/newlib/libnewlib.a(abort.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +strchr /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strchr.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strrchr.o) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.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(ieee802_11_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +strcmp /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcmp.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-locale.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset_r.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(class_type_info.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(tinfo.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a(si_class_type_info.o) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.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/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/log/liblog.a(log.c.obj) +strcpy /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcpy.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset_r.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror_r.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + esp-idf/vfs/libvfs.a(vfs.c.obj) +strcspn /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strcspn.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +strdup /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strdup.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +strerror /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror.o) +strerror_l /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror.o) +strerror_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror_r.o) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) +strlcat /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlcat.o) + esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +strlcpy /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_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/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) +strlen /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlen.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfiprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-siscanf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset_r.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strlcat.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strerror_r.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strdup_r.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-puts.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-fputs.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/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(ieee802_11_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-kdf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(def.c.obj) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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/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/log/liblog.a(log.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) +strncmp /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strncmp.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-getenv_r.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + esp-idf/lwip/liblwip.a(def.c.obj) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 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 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strncpy.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfiprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfiprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-svfprintf.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/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 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strnlen.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +strrchr /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strrchr.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +strstr /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_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(ieee802_11_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +strtok /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtok.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) +strtok_r /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtok_r.o) +strtol /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtol.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-atoi.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) +strtol_l /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtol.o) +strtoll /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoll.o) +strtoll_l /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoll.o) +strtoul /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoul.o) + /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset_r.o) +strtoul_l /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoul.o) +strtoull /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoull.o) +strtoull_l /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-strtoull.o) +supplicant_sta_conn_handler esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +supplicant_sta_disconn_handler esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +sw_scan_mode /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +sys_arch_mbox_fetch esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +sys_arch_mbox_tryfetch esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +sys_arch_protect esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(memp.c.obj) + esp-idf/lwip/liblwip.a(mem.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +sys_arch_sem_wait esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +sys_arch_unprotect esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(memp.c.obj) + esp-idf/lwip/liblwip.a(mem.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +sys_check_timeouts esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +sys_delay_ms esp-idf/lwip/liblwip.a(sys_arch.c.obj) +sys_init esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) +sys_jiffies esp-idf/lwip/liblwip.a(sys_arch.c.obj) +sys_mbox_free esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +sys_mbox_new esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +sys_mbox_post esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +sys_mbox_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/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_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(vfs_lwip.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +sys_thread_sem_init esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +sys_thread_tcpip esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +sys_timeout esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.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/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +syscall_table_ptr_app esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +syscall_table_ptr_pro esp-idf/newlib/libnewlib.a(newlib_init.c.obj) +system esp-idf/newlib/libnewlib.a(syscalls.c.obj) +target_power_backoff /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +target_power_backoff_qdb /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +task_wdt_timeout_abort esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) +tcdrain esp-idf/vfs/libvfs.a(vfs.c.obj) +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) +tcp_active_pcbs esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) +tcp_active_pcbs_changed esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_alloc esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_arg esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_backlog_accepted esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_backlog_delayed esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_bind esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_bind_netif esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +tcp_bound_pcbs esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_close esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_close_ext esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_connect esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_debug_state_str esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_eff_send_mss_netif esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_enqueue_flags esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_err esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_fasttmr esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_free esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_free_ooseq esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) +tcp_init esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) +tcp_input esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) +tcp_input_pcb esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_keepalive esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_listen_pcbs esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_listen_with_backlog esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_listen_with_backlog_and_err esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_netif_ip_addr_changed esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +tcp_new esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_new_ip_type esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_next_iss esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_output esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_pcb_lists esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_pcb_purge esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_pcb_remove esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_poll esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_process_refused_data esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_recv esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_recv_null esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_recved esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_rexmit esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_rexmit_fast esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_rexmit_rto esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_rexmit_rto_commit esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_rexmit_rto_prepare esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_rst esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_seg_copy esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_seg_free esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_segs_free esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_send_empty_ack esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_send_fin esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_sent esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_setprio esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_shutdown esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_slowtmr esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_split_unsent_seg esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_tcp_get_tcp_addrinfo esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_ticks esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_timer_needed esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_tmr esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) +tcp_trigger_input_pcb_close esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_tw_pcbs esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_txnow esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_update_rcv_ann_wnd esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_write esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_zero_window_probe esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcpip_api_call esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcpip_callback esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +tcpip_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/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +tcpip_send_msg_wait_sem esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +tcpip_try_callback esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +tcsendbreak esp-idf/vfs/libvfs.a(vfs.c.obj) +tcsetattr esp-idf/vfs/libvfs.a(vfs.c.obj) +telldir esp-idf/vfs/libvfs.a(vfs.c.obj) +temp_sensor_get_raw_value esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +temperature_sensor_power_acquire esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +temperature_sensor_power_release esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) +temprature_sens_read /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +time /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-time.o) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_client.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(esp_platform_time.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_server.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls12_client.c.obj) +timestamp_id esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +tkip /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +tkip_decap /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) +tkip_encap /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) +tls_connection_client_hello_ext esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +tls_connection_decrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +tls_connection_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +tls_connection_enable_workaround esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +tls_connection_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +tls_connection_established esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +tls_connection_export_key esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +tls_connection_get_eap_fast_key esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +tls_connection_get_failed esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +tls_connection_get_random esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +tls_connection_get_read_alerts esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +tls_connection_get_write_alerts esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +tls_connection_handshake esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +tls_connection_init esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +tls_connection_resumed esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) +tls_connection_server_handshake esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +tls_connection_set_cipher_list esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +tls_connection_set_params esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +tls_connection_set_session_ticket_cb esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +tls_connection_set_verify esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +tls_connection_shutdown esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +tls_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +tls_get_cipher esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +tls_get_errors esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +tls_get_version esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +tls_global_set_params esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +tls_global_set_verify esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +tls_init esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +tls_instance_count esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +tlsf_add_pool esp-idf/heap/libheap.a(tlsf.c.obj) +tlsf_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) +touch_hal_config esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) +touch_hal_deinit esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) +touch_hal_get_meas_mode esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_hal_get_voltage esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_hal_get_wakeup_status esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_hal_init esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) +touch_hal_set_meas_mode esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_hal_set_voltage esp-idf/hal/libhal.a(touch_sensor_hal.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_init /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +touch_pad_clear_status esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_pad_fsm_start esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_pad_fsm_stop esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_pad_get_cnt_mode esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_pad_get_fsm_mode esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_pad_get_status esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_pad_get_thresh esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_pad_get_voltage esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_pad_get_wakeup_status esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +touch_pad_io_init esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_pad_isr_deregister esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_pad_set_cnt_mode esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_pad_set_fsm_mode esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_pad_set_thresh esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_pad_set_voltage esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_pad_sw_start esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_read /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +touch_sensor_channel_io_map esp-idf/soc/libsoc.a(touch_sensor_periph.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +trcAmpduSetState /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +trc_NeedRTS /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +trc_SetTxAmpduState /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +trc_calc_duration /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +trc_ctl /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +trc_deinit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +trc_get_80211_tx_rate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +trc_get_espnow_rate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +trc_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +trc_isAmpduOn /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +trc_isTxAmpduOperational /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +trc_onAmpduOp /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +trc_onDisconnect /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +trc_onPPTxDone /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +trc_onScanDone /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +trc_onScanStart /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +trc_set_80211_tx_rate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +trc_set_espnow_rate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +trc_set_per_pkt_rate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +trc_tid_isTxAmpduOperational /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +trc_update_def_rate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +trc_update_ifx_phy_mode /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +truncate esp-idf/vfs/libvfs.a(vfs.c.obj) +tsens_code_read /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +tsens_read_init /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +tx_cap_init /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +tx_cont_cfg /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +tx_cont_dis /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +tx_cont_en /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +tx_delay_cfg /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +tx_gain_table_set /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +tx_msg_id2str /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +tx_paon_set /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +tx_pwctrl_background /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +tx_pwctrl_cal /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +tx_pwctrl_init /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +tx_pwctrl_init_cal /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +tx_pwctrl_track_num /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +tx_rf_ana_gain /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +tx_state_id2str /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +tx_task_main /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +tx_wifi_err2str /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) +txcal_debuge_mode /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +txiq_cal_init /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +txopstart_index /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +txpwr_offset /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +txq_opr2str /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +tzset /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-tzset.o) +uart_clear_intr_status esp-idf/driver/libdriver.a(uart.c.obj) +uart_disable_intr_mask esp-idf/driver/libdriver.a(uart.c.obj) +uart_disable_pattern_det_intr esp-idf/driver/libdriver.a(uart.c.obj) +uart_disable_rx_intr esp-idf/driver/libdriver.a(uart.c.obj) +uart_disable_tx_intr esp-idf/driver/libdriver.a(uart.c.obj) +uart_driver_delete esp-idf/driver/libdriver.a(uart.c.obj) +uart_driver_install esp-idf/driver/libdriver.a(uart.c.obj) +uart_enable_intr_mask esp-idf/driver/libdriver.a(uart.c.obj) +uart_enable_pattern_det_baud_intr esp-idf/driver/libdriver.a(uart.c.obj) +uart_enable_rx_intr esp-idf/driver/libdriver.a(uart.c.obj) +uart_enable_tx_intr esp-idf/driver/libdriver.a(uart.c.obj) +uart_flush esp-idf/driver/libdriver.a(uart.c.obj) +uart_flush_input esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_get_baudrate esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_get_buffered_data_len esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_get_collision_flag esp-idf/driver/libdriver.a(uart.c.obj) +uart_get_hw_flow_ctrl esp-idf/driver/libdriver.a(uart.c.obj) +uart_get_parity esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_get_sclk_freq esp-idf/driver/libdriver.a(uart.c.obj) +uart_get_selectlock esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_get_stop_bits esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_get_tx_buffer_free_size esp-idf/driver/libdriver.a(uart.c.obj) +uart_get_wakeup_threshold esp-idf/driver/libdriver.a(uart.c.obj) +uart_get_word_length esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_hal_get_baudrate esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_get_data_bit_num esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_get_hw_flow_ctrl esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_get_max_rx_timeout_thrd esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_get_parity esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_get_sclk esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_get_stop_bits esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_get_symb_len esp-idf/hal/libhal.a(uart_hal.c.obj) +uart_hal_get_wakeup_thrd esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_init esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_inverse_signal esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_is_hw_rts_en esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_read_rxfifo esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_rxfifo_rst esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_at_cmd_char esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_data_bit_num esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_dtr esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_hw_flow_ctrl esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_loop_back esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_mode esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_parity esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_rx_timeout esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_rxfifo_full_thr esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_stop_bits esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_sw_flow_ctrl esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_tx_idle_num esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_txfifo_empty_thr esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_wakeup_thrd esp-idf/hal/libhal.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_tx_break esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_txfifo_rst esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_write_txfifo esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) +uart_intr_config esp-idf/driver/libdriver.a(uart.c.obj) +uart_is_driver_installed esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_param_config esp-idf/driver/libdriver.a(uart.c.obj) +uart_pattern_get_pos esp-idf/driver/libdriver.a(uart.c.obj) +uart_pattern_pop_pos esp-idf/driver/libdriver.a(uart.c.obj) +uart_pattern_queue_reset esp-idf/driver/libdriver.a(uart.c.obj) +uart_periph_signal esp-idf/soc/libsoc.a(uart_periph.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_read_bytes esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_set_always_rx_timeout esp-idf/driver/libdriver.a(uart.c.obj) +uart_set_baudrate esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_set_dtr esp-idf/driver/libdriver.a(uart.c.obj) +uart_set_hw_flow_ctrl esp-idf/driver/libdriver.a(uart.c.obj) +uart_set_line_inverse esp-idf/driver/libdriver.a(uart.c.obj) +uart_set_loop_back esp-idf/driver/libdriver.a(uart.c.obj) +uart_set_mode esp-idf/driver/libdriver.a(uart.c.obj) +uart_set_parity esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_set_pin esp-idf/driver/libdriver.a(uart.c.obj) +uart_set_rts esp-idf/driver/libdriver.a(uart.c.obj) +uart_set_rx_full_threshold esp-idf/driver/libdriver.a(uart.c.obj) +uart_set_rx_timeout esp-idf/driver/libdriver.a(uart.c.obj) +uart_set_select_notif_callback esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_set_stop_bits esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_set_sw_flow_ctrl esp-idf/driver/libdriver.a(uart.c.obj) +uart_set_tx_empty_threshold esp-idf/driver/libdriver.a(uart.c.obj) +uart_set_tx_idle_num esp-idf/driver/libdriver.a(uart.c.obj) +uart_set_wakeup_threshold esp-idf/driver/libdriver.a(uart.c.obj) +uart_set_word_length esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_tx_chars esp-idf/driver/libdriver.a(uart.c.obj) +uart_wait_idle /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +uart_wait_tx_done esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_wait_tx_idle_polling esp-idf/driver/libdriver.a(uart.c.obj) +uart_write_bytes esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_write_bytes_with_break esp-idf/driver/libdriver.a(uart.c.obj) +udp_bind esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(dns.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(api_msg.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.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(api_msg.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) +udp_remove esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(dns.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(api_msg.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.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_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +ulTaskGenericNotifyValueClear esp-idf/freertos/libfreertos.a(tasks.c.obj) +unforce_wifi_mode /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(bt_bb.o) +ungetc /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-ungetc.o) +unregister_ieee80211_action_vendor_get_key_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) +unregister_ieee80211_action_vendor_spec_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) +unregister_ieee80211_rfid_locp_recv_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) +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 /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-utoa.o) +uuid_gen_mac_addr esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +uxListRemove esp-idf/freertos/libfreertos.a(list.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +uxQueueMessagesWaiting esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) +uxQueueMessagesWaitingFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) +uxQueueSpacesAvailable esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/driver/libdriver.a(uart.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/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) +uxTaskPriorityGetFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) +uxTaskResetEventItemValue esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) +uxTopUsedPriority esp-idf/freertos/libfreertos.a(tasks.c.obj) +vApplicationGetIdleTaskMemory esp-idf/freertos/libfreertos.a(port_common.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vApplicationGetTimerTaskMemory esp-idf/freertos/libfreertos.a(port_common.c.obj) +vApplicationStackOverflowHook esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vEventGroupClearBitsCallback esp-idf/freertos/libfreertos.a(event_groups.c.obj) +vEventGroupDelete esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +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/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +vListInitialiseItem esp-idf/freertos/libfreertos.a(list.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vListInsert esp-idf/freertos/libfreertos.a(list.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vListInsertEnd esp-idf/freertos/libfreertos.a(list.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vPortAssertIfInISR esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +vPortEndScheduler esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vPortExitCritical esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + esp-idf/driver/libdriver.a(spi_common.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(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(ledc.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + esp-idf/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(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +vPortExitCriticalCompliance esp-idf/freertos/libfreertos.a(port.c.obj) +vPortFree esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +vPortSetStackWatchpoint esp-idf/freertos/libfreertos.a(port.c.obj) +vPortSetupTimer esp-idf/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +vPortTCBPreDeleteHook esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vPortYield esp-idf/freertos/libfreertos.a(portasm.S.obj) +vPortYieldFromInt esp-idf/freertos/libfreertos.a(portasm.S.obj) +vPortYieldOtherCore esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vQueueDelete esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/driver/libdriver.a(ledc.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +vQueueDeleteWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +vQueueWaitForMessageRestricted esp-idf/freertos/libfreertos.a(queue.c.obj) +vRingbufferDelete esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +vRingbufferDeleteWithCaps esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.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(uart.c.obj) +vRingbufferReturnItemFromISR esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +vSemaphoreDeleteWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(ledc.c.obj) +vStreamBufferDelete esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +vStreamBufferGenericDeleteWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +vTaskDelay esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.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/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/main/libmain.a(mesh_main.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/pthread/libpthread.a(pthread.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/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/main/libmain.a(mesh_main.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) +vTaskDeleteWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +vTaskEndScheduler esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskGenericNotifyGiveFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 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/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +vTaskMissedYield esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskPlaceOnEventList esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +vTaskPlaceOnEventListRestricted esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +vTaskPlaceOnUnorderedEventList esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) +vTaskPriorityDisinheritAfterTimeout esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +vTaskPrioritySet esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) +vTaskRemoveFromUnorderedEventList esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) +vTaskResume esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskSetThreadLocalStoragePointer esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskSetThreadLocalStoragePointerAndDelCallback esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) +vTaskSetTimeOutState esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +vTaskStartScheduler esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +vTaskSuspend esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +vTaskSuspendAll esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system.c.obj) +vTaskSwitchContext esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +valid_key_length esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) +valloc esp-idf/newlib/libnewlib.a(heap.c.obj) +vdd33_init /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/librtc.a(rtc_analog.o) +vfiprintf /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfiprintf.o) +vfprintf /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vfprintf.o) +vfs_include_syscalls_impl esp-idf/vfs/libvfs.a(vfs.c.obj) +vote_done2str /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +vote_start2str /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +vprintf /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vprintf.o) + esp-idf/log/liblog.a(log.c.obj) +vsnprintf /home/abobkov/.espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtensa-esp-elf/13.2.0/../../../../xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_a-vsnprintf.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) +wDevCheckBlockError /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +wDevCtrl /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDevMacSleep /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wDev_AppendRxBlocks /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +wDev_Crypto_Disable /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_DiscardFrame /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wDev_FetchFirstDesc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wDev_GetNoiseFloor /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wDev_Get_Next_TBTT /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_IndicateAmpdu /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wDev_IndicateCtrlFrame /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wDev_IndicateFrame /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wDev_Insert_KeyEntry /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_Mesh_Disable_Tsf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) +wDev_Mesh_Enable_Tsf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) +wDev_Mesh_Set_TBTT /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +wDev_ProcessFiq /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_ProcessRxSucData /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wDev_Reset_TBTT /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_RxSecError /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wDev_Rxbuf_Deinit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_Rxbuf_Init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_SetAuthed /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_SetCurChannel /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_Set_Beacon_Int /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wDev_SnifferRxAmpdu /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wDev_SnifferRxData /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wDev_disable_low_rate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) +wDev_enable_low_rate /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) +wDev_is_low_rate_enable /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +wDev_nan_is_in_dw /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +wDev_record_ftm_data /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wDev_remove_KeyEntry /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_remove_KeyEntry_all_cnx /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_reset_bcnSendTick /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac.o) +wapi_printf esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) +wdevProcessRxSucDataAll /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +wdev_bank_load /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_bank_store /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_csi_hw_bug_check /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_csi_len_align /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_csi_rx_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_dump_rx_linked_list /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_get_promis_ctrl_filter /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wdev_get_promis_filter /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wdev_is_data_in_rxlist /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_is_mgmt_hwdecr_enabled /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wdev_mac_reg_load /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_mac_reg_store /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_mac_sleep /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +wdev_mac_sleep_deinit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +wdev_mac_sleep_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +wdev_mac_special_reg_load /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_mac_special_reg_store /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_mac_wakeup /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +wdev_nan_set_callbacks /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wdev_pop_promis_misc_buf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_process_misc_pkt /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +wdev_process_panic_watchdog /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_push_promis_misc_buf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_record_rx_linked_list /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_set_csi_rx_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wdev_set_promis /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wdev_set_promis_ctrl_filter /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wdev_set_promis_ctrl_pkt /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_set_promis_filter /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wdev_set_promis_misc_buf /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_set_promis_misc_pkt /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdt_hal_config_stage esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +wdt_hal_deinit esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) +wdt_hal_disable esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) +wdt_hal_enable esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(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/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +wdt_hal_handle_intr esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +wdt_hal_init esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.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_is_enabled esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) +wdt_hal_set_flashboot_en esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) +wdt_hal_write_protect_disable esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.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(panic.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +wdt_hal_write_protect_enable esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.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(panic.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +wep /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wep_decap /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) +wep_encap /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) +wifi_11g_rate_chg /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +wifi_action_tx_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_ant_config_check /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_ant_to_ant_type /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_ant_update /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_ap_pmf_enabled /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_ap_reg_rxcb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_ap_remove_sta_node_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_ap_sta_sae_auth_done_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_apb80m_release /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +wifi_apb80m_request /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +wifi_api_lock /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_api_unlock /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_bbgain_max /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +wifi_bt_common_module_disable esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +wifi_bt_common_module_enable esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) +wifi_calloc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +wifi_check_chan_param /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_clear_ap_list_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_coex_pwr_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_configure_wake_window_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_connect_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_copy_ap_record /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_create_nan /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +wifi_create_queue esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +wifi_create_softap /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_create_sta /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +wifi_crypto_deinit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_crypto_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_csi_set_config /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_deauth_sta_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_deinit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_deinit_in_caller_task /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_deinit_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_delete_queue esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +wifi_destroy_nan /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_destroy_softap /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_destroy_sta /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_disable_pmf_config_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_disconnect_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +wifi_event_id2str /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +wifi_event_post /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +wifi_force_wakeup_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_ftm_start_initiator_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_funcs esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sta_info.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eloop.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wifi_get_ap_info_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_get_ap_list_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_get_ap_record_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_get_bw_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_get_channel_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_get_country /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_get_init_state /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_get_macaddr /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +wifi_get_protocol_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_get_rand_macaddr /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +wifi_get_rand_macaddr_keep_oui /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +wifi_get_sta_list_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_get_tsf_time_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_get_user_ie /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_gpio_debug /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +wifi_hmac_deinit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_hmac_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_hw_start /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_hw_stop /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_init_completed /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_init_in_caller_task /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_init_key /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_init_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_internal_ioctl_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_ioctl_ht2040_get /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_ioctl_ht2040_set /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_ipc_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_is_started /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +wifi_is_stop_in_progress /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_lmac_deinit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_lmac_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_log /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_mac_tx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_crypto.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(hal_ampdu.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_coex.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_sms4.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_offchan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_reg_db.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_datapath.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sleep.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +wifi_malloc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +wifi_menuconfig_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_act_duty_signaling_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_assoc_expire_set_progress /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_event_post /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +wifi_mesh_ie_crypto_funcs_set_progress /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_ie_crypto_key_set_progress /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_ie_deinit_progress /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_ie_get_progress /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_ie_init_progress /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_ie_set_progress /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_is_roots_found_progress /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_map_deauth_progress /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_parent_candidate_clear_progress /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_parent_candidate_get_progress /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_parent_candidate_set_progress /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_parent_monitor_get_progress /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_parent_monitor_set_progress /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_ps_duty_cycle_get_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_ps_duty_cycle_set_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_ps_duty_ext_get_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_root_conflicts_set_progress /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_roots_ie_get_progress /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_roots_ie_set_progress /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_router_bssid_get_progress /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_router_bssid_set_progress /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_rssi_threshold_get_progress /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_rssi_threshold_set_progress /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_set_beacon_interval_progress /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_sta_disassoc /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_mesh_sta_disassoc_progress /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_switch_channel_progress /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mode_set /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_module_disable esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +wifi_module_enable esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +wifi_nan_followup_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_nan_publish_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_nan_reg_rxcb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_common.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_nan_set_config_local /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_nan_subscribe_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_ndp_end_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_ndp_req_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_ndp_resp_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_nvs_ap_restore /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_cfg_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_cfg_item_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_commit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +wifi_nvs_compare_cfg_diff /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_nvs_deinit /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_nvs_get /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_nvs_get_sta_listen_interval /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +wifi_nvs_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_nvs_reset_current_ap_info /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +wifi_nvs_restore /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_nvs_set /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +wifi_nvs_set_sta_listen_interval /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wifi_nvs_sta_restore /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_validate_ap_chan /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_validate_ap_num /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_validate_ap_password /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_validate_ap_ssid /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_validate_country /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_validate_sta_listen_interval /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_validate_sta_password /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_on_coex_schm_phase_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_on_coex_start_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_osi_funcs_register /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_osi_ready /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_realloc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +wifi_recycle_rx_pkt /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +wifi_register_mgmt_frame /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_register_user_ie_manufacturer_recv_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_reset_mac /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_restart_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_restore_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_rf_phy_disable /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +wifi_rf_phy_enable /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +wifi_rifs_mode_en /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +wifi_roc_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_scan_start_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_scan_stop_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_send_mgmt_frame /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_set_ant /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_ant_gpio /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_appie_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_set_auto_connect_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_bw_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_chan_range /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_set_channel_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_config_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_country /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_csi /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_default_ssid /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_dynamic_cs_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_event_mask /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_fix_rate_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_gpio_debug_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +wifi_set_home_channel_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_log_mod_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_mac_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_max_tpw /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_mode_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_phy_2nd_chan_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_set_promis_ctrl_filter_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_promis_filter_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_promis_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_protocol_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_ps_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_rssi_threshold /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_set_rx_policy /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_disc.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_set_rxcb_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_user_ie /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_vnd_ie_cb_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_vnd_ie_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_wps_cb_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_set_wps_start_flag /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_set_wps_status_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_set_wps_type_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_softap_cacl_mac /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_softap_cur_max_ap_bss_num /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +wifi_softap_deauth /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_softap_get_config /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_softap_get_station_num /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_softap_max_support_num /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_softap_set_config /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_softap_staconnected_event_policy /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +wifi_softap_start /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_softap_stop /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_softap_toomany_deny /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +wifi_sta_connect_internal_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_sta_disconnect /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_sta_get_enterprise_disable_time_check esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) +wifi_sta_get_prof_password /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +wifi_sta_reg_eapol_txdone_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_sta_reg_rxcb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_sta_rx_probe_req /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wifi_sta_set_ap_num_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_start_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_station_ap_check /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_station_get_config /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_station_get_config_default /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_station_get_current_ap_id /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_station_get_reconnect_policy /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +wifi_station_save_ap_channel /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +wifi_station_start /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_station_stop /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_station_wps_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wifi_station_wps_eapol_start_handle esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wifi_station_wps_eapol_start_handle_internal esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wifi_station_wps_msg_timeout esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wifi_station_wps_msg_timeout_internal esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wifi_station_wps_start esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wifi_station_wps_success esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wifi_station_wps_success_internal esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wifi_station_wps_timeout esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wifi_station_wps_timeout_internal esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wifi_stop_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_stop_sw_txq /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_track_pll_cap /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +wifi_txband /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +wifi_txband_ht40 /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +wifi_txq_empty /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_unregister_user_ie_manufacturer_recv_cb /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_update_listen_interval_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_wpa2_ent_disable_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_wpa2_ent_enable_process /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_wpa2_is_started /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +wifi_wps_disable_internal esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wifi_wps_enable_internal esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wifi_wps_is_started /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +wifi_wps_scan esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wifi_wps_scan_done esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wifi_wps_scan_internal esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wl_clear_ap_no_lr /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +wl_is_ap_no_lr /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +wlanif_init esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) +wlanif_init_ap esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) +wlanif_init_nan esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) +wlanif_init_sta esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) +wlanif_input esp-idf/esp_netif/libesp_netif.a(wlanif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) +wpa2_post esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +wpa2_printf esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) +wpa2_task esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) +wpa3_hostap_auth_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +wpa3_hostap_auth_init esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +wpa3_hostap_post_evt esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) +wpa_add_kde esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_akm_to_suite esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +wpa_alloc_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wpa_ap_get_peer_spp_msg esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_ap_get_wpa_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_ap_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_add_sae_pmkid esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_auth_for_each_sta esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_auth_gen_wpa_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_auth_pmksa_add_sae esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) +wpa_auth_pmksa_remove esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_auth_sm_event esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_auth_sta_associated esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +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_auth_uses_sae 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_txt esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) +wpa_cipher_valid_mgmt_group esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_cipher_valid_pairwise esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_compare_rsn_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_config_assoc_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_config_bss esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_config_done esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_config_parse_string esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_config_profile esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_crypto_funcs /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nan_sd.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +wpa_crypto_funcs_init /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wpa_deattach esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_deauthenticate esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) +wpa_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +wpa_eapol_key_mic esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_eapol_key_send esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_ether_send esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wpa_free_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wpa_gen_rsnxe esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_gen_wpa_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_get_key esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_get_ntp_timestamp esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_init esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +wpa_insert_pmkid esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) +wpa_install_key esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_is_hex esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +wpa_merge_byte_arrays esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +wpa_mic_len esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_michael_mic_failure esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_neg_complete esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_parse_kde_ies esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_parse_wpa_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_parse_wpa_ie_rsn esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wpa_parse_wpa_ie_rsnxe esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) +wpa_parse_wpa_ie_wpa esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) +wpa_parse_wpa_ie_wrapper esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_pmk_to_ptk esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_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_res_to_status_code esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_sendto_wrapper esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_set_bss esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_set_passphrase esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_set_pmk esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +wpa_set_profile esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_sm_alloc_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_deauthenticate esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_sm_disassociate esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_drop_sa esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_free_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_get_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_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_sm_set_ap_rsnxe esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_set_assoc_rsnxe esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_set_key esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_set_pmk esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_set_pmk_from_pmksa esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_set_state esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_snprintf_hex esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) +wpa_snprintf_hex_uppercase esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) +wpa_ssid_txt esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +wpa_sta_clear_curr_pmksa esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_sta_connect esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_sta_cur_pmksa_matches_akm esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +wpa_sta_in_4way_handshake esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_sta_is_cur_pmksa_set esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +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_use_aes_key_wrap esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_use_akm_defined esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_validate_wpa_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_write_rsn_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) +wpa_write_rsnxe esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) +wpabuf_alloc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wpabuf_alloc_copy esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls-ec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wpabuf_alloc_ext_data esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) +wpabuf_clear_free esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpabuf_concat esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) +wpabuf_dup esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) +wpabuf_free esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_group5.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_eap_client.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_owe.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wpabuf_printf esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) +wpabuf_put esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_ttls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_peap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_mschapv2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ieee802_11_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae_pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_wsc_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(comeback_token.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wpabuf_resize esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(eap_tls_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wpabuf_zeropad esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wps_add_discard_ap esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_ap_priority_compar esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_attr_text esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_build_ap_channel esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) +wps_build_application_ext esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) +wps_build_assoc_req_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_build_assoc_resp_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_build_assoc_state esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_build_auth_type_flags esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_build_authenticator esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_build_config_error esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_build_config_methods esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_build_conn_type_flags esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_build_dev_name esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_build_dev_password_id esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_build_device_attrs esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_build_encr_settings esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_build_encr_type_flags esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_build_enrollee_nonce esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) +wps_build_key_wrap_auth esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_build_mac_addr esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_build_manufacturer esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_build_model_name esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_build_model_number esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_build_msg_type esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) +wps_build_os_version esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_build_primary_dev_type esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_build_probe_req_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_build_public_key esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_build_registrar_nonce esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) +wps_build_req_dev_type esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_build_req_type esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_build_resp_type esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_build_rf_bands esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_build_rf_bands_attr esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) +wps_build_secondary_dev_type esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_build_serial_number esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) +wps_build_uuid_e esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_build_vendor_ext esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) +wps_build_vendor_ext_m1 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_build_version esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_build_wfa_ext esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_build_wsc_ack esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_build_wsc_nack esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_check_wifi_mode esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_config_methods_str2bin esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) +wps_decrypt_encr_settings esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_delete_timer esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_derive_keys esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_derive_psk esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_dev_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_dev_init esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_dev_type_bin2str esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_dev_type_str2bin esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) +wps_device_data_free esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_enrollee_get_msg esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_enrollee_process_msg esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_enrollee_process_msg_frag esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_fail_event esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_finish esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_generate_pin esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_get_msg esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_get_uuid_e esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_get_wps_sm_cb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wps_ie_encapsulate esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_build.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_init esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_init_cfg_pin esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_is_20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_is_addr_authorized esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_is_selected_pbc_registrar esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_is_selected_pin_registrar esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_kdf esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) +wps_model_number esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_parse_msg esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_parse.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_pbc_active_event esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) +wps_pbc_disable_event esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) +wps_pbc_overlap_event esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) +wps_pbc_timeout_event esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) +wps_pin_checksum esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) +wps_pin_str_valid esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_pin_valid esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) +wps_post esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_post_block esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_printf esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) +wps_process_ap_settings esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_process_authenticator esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_process_cred esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_process_device_attrs esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_process_key_wrap_auth esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_attr_process.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_process_msg esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_process_os_version esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) +wps_process_rf_bands esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) +wps_process_vendor_ext_m1 esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_dev_attr.c.obj) +wps_process_wps_mX_req esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_pwd_auth_fail_event esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_registrar_get_msg esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_registrar_process_msg esp-idf/wpa_supplicant/libwpa_supplicant.a(wps.c.obj) +wps_selected_registrar_timeout_event esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) +wps_send_eap_identity_rsp esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_send_frag_ack esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_send_wps_mX_rsp esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_set_default_factory esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_set_factory_info esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_sm_alloc_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_sm_free_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_sm_get esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_sm_rx_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_sm_rx_eapol_internal esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_start_msg_timer esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_start_pending esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_stop_process esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_success_event esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wps_enrollee.c.obj) +wps_task esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_task_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_task_init esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wps_tx_start esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wps.c.obj) +wr_bt_tx_atten /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) +wr_bt_tx_gain_mem /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +wr_rf_freq_mem /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +wr_rx_gain_mem /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +write_freq_mem_all /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +write_txrate_power_offset /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7.o) +write_wifi_chan_data /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_ana.o) +write_wifi_dig_gain /home/abobkov/esp/esp-idf/components/esp_phy/lib/esp32/libphy.a(phy_chip_v7_cal.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) +xEventGroupCreateStatic esp-idf/freertos/libfreertos.a(event_groups.c.obj) +xEventGroupGetBitsFromISR esp-idf/freertos/libfreertos.a(event_groups.c.obj) +xEventGroupGetStaticBuffer esp-idf/freertos/libfreertos.a(event_groups.c.obj) +xEventGroupSetBits esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +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) +xPortCheckValidListMem esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +xPortCheckValidTCBMem esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +xPortEnterCriticalTimeout esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + esp-idf/driver/libdriver.a(spi_common.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(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(ledc.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + esp-idf/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(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xPortEnterCriticalTimeoutCompliance esp-idf/freertos/libfreertos.a(port.c.obj) +xPortGetFreeHeapSize esp-idf/freertos/libfreertos.a(heap_idf.c.obj) +xPortGetMinimumEverFreeHeapSize esp-idf/freertos/libfreertos.a(heap_idf.c.obj) +xPortGetTickRateHz esp-idf/freertos/libfreertos.a(port.c.obj) +xPortInIsrContext esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_phy/libesp_phy.a(phy_init.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(ledc.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.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(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) +xPortInterruptedFromISRContext esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) +xPortStartScheduler esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +xPortSysTickHandler esp-idf/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +xPortcheckValidStackMem esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +xQueueAddToSet esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueCreateCountingSemaphore esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) +xQueueCreateCountingSemaphoreStatic esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +xQueueCreateMutex esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.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/driver/libdriver.a(ledc.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/freertos/libfreertos.a(idf_additions.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) +xQueueCreateWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +xQueueGenericCreate esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_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_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) +xQueueGenericGetStaticBuffers esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +xQueueGenericReset esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueGenericSend esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.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(sha.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_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(ledc.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_semaphore.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/lwip/liblwip.a(sys_arch.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_event/libesp_event.a(esp_event.c.obj) + esp-idf/driver/libdriver.a(uart.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/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(ledc.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/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) +xQueueReceiveFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) +xQueueRemoveFromSet esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueSelectFromSet esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueSelectFromSetFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueSemaphoreTake esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_coex/libesp_coex.a(esp_coex_adapter.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(ledc.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_semaphore.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) +xRingbufferCreate esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferCreateNoSplit esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferCreateStatic esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferCreateWithCaps esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +xRingbufferGetCurFreeSize esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferGetMaxItemSize esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +xRingbufferGetStaticBuffer esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferPrintInfo esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferReceive esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +xRingbufferReceiveFromISR esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +xRingbufferReceiveSplit esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferReceiveSplitFromISR esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferReceiveUpTo esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +xRingbufferReceiveUpToFromISR esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferRemoveFromQueueSetRead esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferSend esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +xRingbufferSendAcquire esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferSendComplete esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferSendFromISR esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +xSemaphoreCreateGenericWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(ledc.c.obj) +xStreamBufferBytesAvailable esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferGenericCreate esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferGenericCreateStatic esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +xStreamBufferGenericCreateWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +xStreamBufferGetStaticBuffers esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +xStreamBufferIsEmpty esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferIsFull esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferNextMessageLengthBytes esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferReceive esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferReceiveCompletedFromISR esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferReceiveFromISR esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferReset esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferSend esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferSendCompletedFromISR esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferSendFromISR esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferSetTriggerLevel esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferSpacesAvailable esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xTaskAbortDelay esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskCatchUpTicks esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskCheckForTimeOut esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +xTaskCreatePinnedToCore esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/main/libmain.a(mesh_main.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) +xTaskCreatePinnedToCoreWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +xTaskCreateStaticPinnedToCore esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +xTaskDelayUntil esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskGenericNotify esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xTaskGenericNotifyFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xTaskGenericNotifyStateClear esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xTaskGenericNotifyWait esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xTaskGetCoreID esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +xTaskGetCurrentTaskHandle esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/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) +xTaskGetCurrentTaskHandleForCore esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +xTaskGetHandle esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskGetIdleTaskHandle esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskGetIdleTaskHandleForCore esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +xTaskGetNext esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskGetSchedulerState esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/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) +xTaskGetStaticBuffers esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +xTaskGetTickCount esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/driver/libdriver.a(uart.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) +xTaskPriorityDisinherit esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +xTaskPriorityInherit esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +xTaskRemoveFromEventList esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +xTaskResumeAll esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +xTaskResumeFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTimerCreateTimerTask esp-idf/freertos/libfreertos.a(tasks.c.obj) +xon_task_main /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +xphyQueue /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +xswap /home/abobkov/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +xt_clock_freq esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) +xt_debugexception esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +xt_highint4 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) +xt_highint5 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +xt_int_has_handler esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +xt_ints_off esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + esp-idf/esp_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_chip.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/freertos/libfreertos.a(portasm.S.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +xt_nmi esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +xt_set_exception_handler esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) +xt_set_interrupt_handler esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +xt_unhandled_exception esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) +xt_unhandled_interrupt esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) +xthal_restore_extra_nw /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) +xthal_save_extra_nw /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) +xthal_set_intclear /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +xthal_spill_registers_into_stack_nw /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) +xthal_window_spill /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) +xthal_window_spill_nw /home/abobkov/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + esp-idf/freertos/libfreertos.a(portasm.S.obj)